gitops/iac-template/terraform-hcl-standard/azure-cloud/config/variables.tf

16 lines
284 B
HCL

variable "subscription_id" {
description = "Azure subscription id"
type = string
}
variable "tenant_id" {
description = "Azure AD tenant id"
type = string
}
variable "location" {
description = "Azure region"
type = string
default = "eastus"
}