Files
terraform-talos/azure/init/variables.tf
2022-05-26 16:36:08 +03:00

25 lines
443 B
HCL

variable "subscription_id" {
description = "The subscription id"
type = string
}
variable "project" {
description = "The project name"
type = string
}
variable "regions" {
description = "The region name list"
type = list(string)
default = ["uksouth", "ukwest"]
}
variable "tags" {
description = "Tags to set on resources"
type = map(string)
default = {
environment = "Develop"
}
}