Files
terraform-talos/azure/images/variables.tf
Serge Logvinov ced3058862 Name of image
2022-06-14 23:34:29 +03:00

37 lines
690 B
HCL

variable "subscription_id" {
description = "The subscription id"
type = string
}
variable "resource_group" {
description = "The existed resource group"
type = string
}
variable "regions" {
description = "The region name list"
type = list(string)
default = ["uksouth", "ukwest"]
}
variable "name" {
description = "The image name"
type = string
default = "talos"
}
variable "arch" {
description = "The Talos architecture list"
type = list(string)
default = ["x64", "Arm64"]
}
variable "tags" {
description = "Tags to set on resources"
type = map(string)
default = {
environment = "Develop"
}
}