mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-10-30 01:52:18 +00:00
37 lines
690 B
HCL
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"
|
|
}
|
|
}
|