Refactor firewall rules and add network resources for production environment

This commit is contained in:
2025-12-23 10:54:03 +01:00
parent 34dd484004
commit f850066aad
4 changed files with 230 additions and 11 deletions

View File

@@ -0,0 +1,9 @@
resource "hcloud_network" "prodnet" {
name = "prod-network"
ip_range = "10.0.0.0/16"
}
resource "netbox_ip_range" "prodnet" {
start_address = "10.0.0.1/16"
end_address = "10.0.255.254/16"
}