Files
infrastructure/terraform/netbox_cluster.tf
Noah 0387b314e4
All checks were successful
Terraform CI/CD / terraform (push) Successful in 18s
removed description
2025-12-23 14:59:29 +01:00

14 lines
373 B
HCL

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
}