1
0
homelab/terraform/firewall_ipsets.tf
2025-06-23 18:26:15 +03:00

36 lines
564 B
HCL

resource "proxmox_virtual_environment_firewall_ipset" "loggers" {
name = "loggers"
comment = "Nodes that send logs to Monitoring Node."
cidr {
name = "192.168.0.254"
comment = "bastion"
}
cidr {
name = "192.168.0.253"
comment = "load-balancer"
}
cidr {
name = "192.168.0.252"
comment = "monitoring"
}
cidr {
name = "192.168.0.3"
comment = "postgresql"
}
cidr {
name = "192.168.0.10"
comment = "main-page"
}
cidr {
name = "192.168.0.15"
comment = "searxng"
}
}