Azure Azure - Terraform templates

Common Variables

Last updated: November 28, 2024
variable "environment_prefix" {
  default = "D"
}

variable "solution_prefix" {
  default = "ACME"
}

variable "customer_prefix" {
  default = ""
}

variable "location" {
  default = "East US"
}

variable "tags" {
  default = {
    Owner = "XYZ",
    CreatedBy = "Person",
    Project = "YYX"
  }
}