fix: correct network attribute in FTP server configuration
Some checks failed
Terraform CI/CD / terraform (push) Failing after 15s

This commit is contained in:
2025-12-23 18:52:03 +01:00
parent bc69fdef78
commit e63b0c21fc

View File

@@ -6,7 +6,7 @@ resource "hcloud_server" "ftp-server" {
ipv4_enabled = true
ipv6_enabled = true
}
networks = [hcloud_network.prodnet.id]
network = [hcloud_network.prodnet.id]
firewall = [hcloud_firewall.production_fw.id]
}