fix: remove network configuration from FTP server resource
Some checks failed
Terraform CI/CD / terraform (push) Failing after 18s

This commit is contained in:
2025-12-23 19:02:14 +01:00
parent 2e272afc7e
commit e67f1ec3c8

View File

@@ -6,10 +6,6 @@ resource "hcloud_server" "ftp-server" {
ipv4_enabled = true
ipv6_enabled = true
}
network {
network_id = hcloud_network.prodnet.id
ip = "10.0.0.10"
}
firewall_ids = [hcloud_firewall.production_fw.id]
}