Added a custom domain name and validation records.

This commit is contained in:
2025-08-15 20:45:55 +02:00
parent a75743e4e0
commit f21739c250
2 changed files with 48 additions and 1 deletions

View File

@@ -25,3 +25,15 @@ variable "project_name" {
description = "The name used to construct Azure resource names."
type = string
}
variable "dns_zone_name" {
description = "The name of the DNS zone for domain verification."
type = string
default = "lab.koszewscy.waw.pl"
}
variable "dns_zone_resource_group_name" {
description = "The name of the resource group containing the DNS zone."
type = string
default = "dom-lab-zones"
}