Files
terraform-talos/openstack/variables.tf
Serge Logvinov 613bc3d457 remove modules
2023-07-02 14:37:17 +03:00

87 lines
2.0 KiB
HCL

variable "clouds" {
type = string
description = "The config section in clouds.yaml"
default = "openstack"
}
data "terraform_remote_state" "prepare" {
backend = "local"
config = {
path = "${path.module}/prepare/terraform.tfstate"
}
}
locals {
regions = data.terraform_remote_state.prepare.outputs.regions
network_external = data.terraform_remote_state.prepare.outputs.network_external
network = data.terraform_remote_state.prepare.outputs.network
network_public = data.terraform_remote_state.prepare.outputs.network_public
network_private = data.terraform_remote_state.prepare.outputs.network_private
network_subnets = { for zone in local.regions : zone => [local.network[zone].cidr] }
network_secgroup = data.terraform_remote_state.prepare.outputs.network_secgroup
}
variable "ccm_username" {
default = ""
}
variable "ccm_password" {
default = ""
}
variable "tags" {
description = "Tags of resources"
type = list(string)
default = ["Develop"]
}
variable "kubernetes" {
type = map(string)
default = {
podSubnets = "10.32.0.0/12,fd40:10:32::/102"
serviceSubnets = "10.200.0.0/22,fd40:10:200::/112"
nodeSubnets = "192.168.0.0/16"
domain = "cluster.local"
apiDomain = "api.cluster.local"
clusterName = "talos-k8s-openstack"
clusterID = ""
clusterSecret = ""
tokenMachine = ""
caMachine = ""
token = ""
ca = ""
}
sensitive = true
}
variable "controlplane" {
description = "Controlplane config"
type = map(any)
default = {
"GRA7" = {
count = 0,
type = "d2-2",
},
"GRA9" = {
count = 0,
type = "d2-2",
},
}
}
variable "instances" {
description = "Map of region's properties"
type = map(any)
default = {
"REGION" = {
web_count = 0,
web_type = "d2-2",
worker_count = 0,
worker_type = "d2-2",
},
}
}