terraform/openstack/00-init.tf
Arif Ali e54d63390c
Add variables in a more dynamic way
Some reformatting on some of the files
2023-07-10 23:13:55 +01:00

24 lines
342 B
HCL

terraform {
required_version = ">= 0.14.0"
required_providers {
openstack = {
source = "terraform-provider-openstack/openstack"
version = "1.49.0"
}
}
}
provider "openstack" {
cloud = var.cloud
}
variable "domain_id" {
type = string
default = ""
}
variable "cloud" {
type = string
default = ""
}