hcloud-talos / terraform-hcloud-talos

This repository contains a Terraform module for creating a Kubernetes cluster with Talos in the Hetzner Cloud.
https://registry.terraform.io/modules/hcloud-talos/talos
MIT License
28 stars 7 forks source link

firewall.tf - https://ipv6.icanhazip.com isnt working #10

Closed defyjoy closed 1 month ago

defyjoy commented 1 month ago

The module doesn't work as https://ipv6.icanhazip.com isnt working . This needs to be parameterized else the module is totally unsable if https://ipv6.icanhazip.com is down

mpepping commented 1 month ago

'No route to host' message? You probably don't have IPv6 then. Work around it by only setting your IPv4 address via the static lists in TF variables:

  firewall_kube_api_source  = ["169.254.169.254/32"]
  firewall_talos_api_source = ["169.254.169.254/32"]
  firewall_use_current_ip   = false
mrclrchtr commented 1 month ago

As @mpepping says, it can already be parameterized. Thanks for the hint.

Is there anything else missing @defyjoy ?