added 2 dns entries
Some checks failed
Terraform Plan / plan (push) Failing after 0s

This commit is contained in:
2026-01-01 18:47:16 +01:00
parent c839cb3c41
commit c95aa2b824
3 changed files with 239 additions and 2 deletions

View File

@@ -53,3 +53,27 @@ resource "hcloud_zone_rrset" "txt" {
change_protection = false
}
resource "hcloud_zone_rrset" "gitea" {
zone = hcloud_zone.avlabs.name
name = "gitea"
type = "A"
records = [
{ value = "91.98.205.65", comment = "Gitea Server" },
]
change_protection = false
}
resource "hcloud_zone_rrset" "netbox" {
zone = hcloud_zone.avlabs.name
name = "netbox"
type = "A"
records = [
{ value = "91.98.205.65", comment = "Netbox Server" },
]
change_protection = false
}