Add Hetzner Cloud firewall and network resources with netbox integration

This commit is contained in:
2025-12-23 11:50:13 +01:00
parent f850066aad
commit c406a23576
5 changed files with 189 additions and 4 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"
}