fix: update network and firewall configuration for FTP server
Some checks failed
Terraform CI/CD / terraform (push) Failing after 16s

This commit is contained in:
2025-12-23 18:54:23 +01:00
parent e63b0c21fc
commit 1486400954

View File

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