terraform destroy
does not remove LB and network
#263
-
Hi! Really cool Terraform module. Thank you all! I tried to remove everything from Hetzner again with module.kube-hetzner.hcloud_network_subnet.agent[1]: Still destroying... [id=1894766-10.1.0.0/16, 10s elapsed]
...
module.kube-hetzner.hcloud_network_subnet.agent[1]: Still destroying... [id=1894766-10.1.0.0/16, 9m30s elapsed]
... This goes on an on... Do I miss something? Or is it not possible to remove everything via Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
@loxy just delete the LB that is created on the request of Traefik, and re-run the destroy. Either via the UI, or with hcloud, but running This is explained in the readme in the destroy section. |
Beta Was this translation helpful? Give feedback.
@loxy just delete the LB that is created on the request of Traefik, and re-run the destroy. Either via the UI, or with hcloud, but running
hcloud load-balancer delete <cluster-name>-traefik
, you can also usehcloud load-balancer list
to find its name.This is explained in the readme in the destroy section.