36 lines
564 B
HCL
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"
|
|
}
|
|
}
|