|
variable "vra_url" {
|
|
type = string
|
|
}
|
|
variable "vra_refresh_token" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
module "deployment" {
|
|
source = "./modules/pycloud"
|
|
|
|
vra_url = var.vra_url
|
|
vra_refresh_token = var.vra_refresh_token
|
|
vra_insecure_ssl = true
|
|
|
|
deployments = local.deployments
|
|
} |