Files
azure-image-chooser/terraform/variables.tf

40 lines
947 B
HCL

variable "subscription_id" {
description = "The Azure Subscription ID to use for the resources."
type = string
}
variable "azure_client_id" {
description = "The Azure Client ID for authentication."
type = string
}
variable "azure_tenant_id" {
description = "The Azure Tenant ID for authentication."
type = string
}
variable "azure_client_secret" {
description = "The Azure Client Secret for authentication."
type = string
sensitive = true
}
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"
}