17 lines
511 B
Terraform
17 lines
511 B
Terraform
|
|
||
|
#Default smartgears_service is EMPTY. Override it to create a proper smartegears plan
|
||
|
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 = {
|
||
|
smartgears_service = { name = "", description = "", flavor = "", networks = [], security_groups = [], block_device_uuid = "" }
|
||
|
}
|
||
|
|
||
|
}
|