variable "openstack_api" {} variable "openstack_user" {} variable "openstack_password" {} variable "openstack_tenant_id" {} variable "openstack_tenant_name" {} variable "openstack_project" {} variable "vpc_main_cidr" { default = "172.18.0.0/16" } variable "regions" { type = list(string) description = "The id of the openstack region" default = ["GRA7", "UK1"] } variable "controlplane" { description = "Property of controlplane" type = map(any) default = { count = 0, type = "" type_lb = "" } } variable "tags" { description = "Tags of resources" type = map(string) default = { environment = "Develop" } } variable "whitelist_admins" { description = "Whitelist for administrators" default = ["0.0.0.0/0", "::/0"] } variable "whitelist_web" { description = "Whitelist for web (default Cloudflare network)" default = [ "173.245.48.0/20", "103.21.244.0/22", "103.22.200.0/22", "103.31.4.0/22", "141.101.64.0/18", "108.162.192.0/18", "190.93.240.0/20", "188.114.96.0/20", "197.234.240.0/22", "198.41.128.0/17", "162.158.0.0/15", "172.64.0.0/13", "131.0.72.0/22", "104.16.0.0/13", "104.24.0.0/14", ] }