infrastructure-as-code/openstack-tf/modules/liferay/liferay-variables.tf

16 lines
294 B
Terraform
Raw Normal View History

2023-12-01 17:01:40 +01:00
variable "liferay_data" {
type = map(string)
default = {
affinity_policy = "soft-anti-affinity"
srv_name = "lr62"
vm_count = 1
vm_flavor = "m1.large"
boot_vol_size = 30
2023-12-01 17:01:40 +01:00
}
}
variable "liferay_ip_addrs" {
type = list(string)
default = []
}