Files
infrastructure/terraform/modules/dns/avii/main.tf
Noah 64bcdc226c
Some checks failed
Terraform Plan / plan (push) Failing after 0s
added avii dns zone
2025-12-26 11:35:02 +01:00

17 lines
279 B
HCL

terraform {
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = "1.57.0"
}
netbox = {
source = "e-breuninger/netbox"
version = "5.0.0"
}
}
}
resource "hcloud_zone" "avii" {
name = "avii.ovh"
mode = "primary"
}