mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-10-30 17:58:32 +00:00
25 lines
443 B
HCL
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"
|
|
}
|
|
}
|