1
0
homelab/terraform/common/firewall_ipsets.tf

36 lines
568 B
HCL

resource "proxmox_virtual_environment_firewall_ipset" "dev_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"
}
}