redid dns
Some checks failed
Terraform Plan / plan (push) Failing after 0s

This commit is contained in:
2025-12-25 16:08:22 +01:00
parent ec6355b084
commit b8816b1526
6 changed files with 27 additions and 3 deletions

View File

@@ -3,4 +3,10 @@ module "prod-firewall" {
}
module "private-network" {
source = "./modules/network"
}
module "dns-avlabs" {
source = "./modules/dns/avlabs"
}
module "dns-zenitho" {
source = "./modules/dns/zenitho"
}

View File

@@ -11,3 +11,7 @@ terraform {
}
}
resource "hcloud_zone" "avlabs" {
name = "avlabs.ovh"
mode = "primary"
}

View File

@@ -1,3 +0,0 @@
variable "tld_labs" {
description: "Avlabs TLD"
}

View File

@@ -0,0 +1,17 @@
terraform {
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = "1.57.0"
}
netbox = {
source = "e-breuninger/netbox"
version = "5.0.0"
}
}
}
resource "hcloud_zone" "zenitho" {
name = "zenitho.de"
mode = "primary"
}

View File