infrastructure-as-code/openstack-tf/d4s-dev/geoportal/inputs.tf

24 lines
794 B
HCL

# #The Geoportal Instance
# variable "smartgears_service_instances_map" {
# type = map(object({
# name = string
# description = string
# flavor = string
# networks = list(string)
# security_groups = list(string)
# block_device_uuid = string
# }))
# default = {
# # Geoportal instance
# geoportal_service = {
# name = "geoportal-cms",
# description = "The Geoportal instance",
# flavor = "m1_large",
# networks = ["d4s-dev-cloud-main", "postgresql-srv-net"],
# security_groups = ["default", "http and https from the load balancers"]
# block_device_uuid = "7ed6a2cd-2b07-482e-8ce4-f018dff16c89" #ubuntu_18_04.uuid of DEV
# }
# }
# }