Add dynu_root_domain variable for domain import flow

This commit is contained in:
beatz174-bit
2026-05-13 05:18:02 +10:00
parent fc5c882193
commit 96a44d5da6
8 changed files with 69 additions and 31 deletions
+7 -1
View File
@@ -1,3 +1,9 @@
locals {
dynu_domain = "lan.ddnsgeek.com"
dynu_domain = var.dynu_root_domain
}
# Import-first resource skeleton for the production Dynu zone.
# `name` is required by provider schema and can be reconciled after import.
resource "dynu_domain" "lan_ddnsgeek_com" {
name = local.dynu_domain
}