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,14 @@
resource "netbox_cluster_group" "hetzner" {
description = "Hetzner Cloud Hosts"
name = "hetzner"
}
resource "netbox_cluster_type" "openstack" {
name = "Openstack"
}
resource "netbox_cluster" "hetzner_cluster" {
cluster_type_id = netbox_cluster_type.openstack.id
name = "Hetzner Cluster"
cluster_group_id = netbox_cluster_group.hetzner.id
}