b8dmin
b8dmin
@yajo , to avoid this error, use the resource as in the example. It's works correctly: ```hcl resource "hcloud_server_network" "srvnetwork" { server_id = hcloud_server.node1.id network_id = hcloud_network.mynet.id }
@michaelniemand , If I understand you correctly, you probably need something like this: ```terraform resource "hcloud_firewall" "public_web_ssh" { name = "public 22/443 and icmp" dynamic "rule" { for_each = var.firewall_rules...
Also i wanted to add one more problem to this, in my opinion related to the **public_ip** case. Replay like this: 1. we have an already created server 2. define...