Add a list of used datacenters in deployment

This commit is contained in:
Magnus Andersson 2024-10-18 12:45:46 +02:00
parent 282263bb05
commit 83c3d61b77
Signed by: mandersson
GPG key ID: 1F7C896B34B28164

View file

@ -3,6 +3,11 @@ variable "datacenter_name" {
default = "dco" default = "dco"
} }
variable "datacenters" {
type = list(string)
default = [ "dco", "sto3", "sto4" ]
}
# Cloud names in clouds.yaml file # Cloud names in clouds.yaml file
variable "clouddco_name" { variable "clouddco_name" {
type = string type = string