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

32 lines
596 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
share_description = "NFS share for the liferay static data"
share_name = "liferay_nfs_share"
2023-12-01 17:01:40 +01:00
}
}
variable "liferay_ip_addrs" {
type = list(string)
default = []
}
variable "liferay_recordsets" {
type = map(object({
name = string
description = string
}))
default = {
liferay_dns_record = {
name = "",
description = ""
}
}
}