fix: update network and firewall configuration for FTP server
Some checks failed
Terraform CI/CD / terraform (push) Failing after 16s
Some checks failed
Terraform CI/CD / terraform (push) Failing after 16s
This commit is contained in:
@@ -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" {
|
||||
|
||||
Reference in New Issue
Block a user