Prepare multicloud setup

This commit is contained in:
Magnus Andersson 2024-10-17 08:08:33 +02:00
parent bdb858df42
commit 7b779b2c41
Signed by: mandersson
GPG key ID: 1F7C896B34B28164
2 changed files with 18 additions and 0 deletions

View file

@ -13,3 +13,13 @@ required_version = ">= 0.14.0"
provider "openstack" {
cloud = "${var.cloud_name}"
}
provider "openstack" {
cloud = "${var.cloud2_name}"
alias = "STO3MT"
}
provider "openstack" {
cloud = "${var.cloud3_name}"
alias = "STO4MT"
}

View file

@ -42,3 +42,11 @@ variable "dns_suffix" {
variable "cloud_name" {
default="dco-matrixtest"
}
variable "cloud2_name" {
default="dco-matrixtest"
}
variable "cloud3_name" {
default="dco-matrixtest"
}