liferay preprod: add the timescaledb network.
This commit is contained in:
parent
c0a6b56150
commit
03a62144a7
|
@ -18,7 +18,7 @@ data "terraform_remote_state" "privnet_dns_router" {
|
|||
}
|
||||
|
||||
module "liferay" {
|
||||
source = "../../modules/liferay"
|
||||
source = "../../modules/liferay"
|
||||
liferay_data = {
|
||||
affinity_policy = "soft-anti-affinity"
|
||||
srv_name = "lr62"
|
||||
|
@ -27,11 +27,11 @@ module "liferay" {
|
|||
boot_vol_size = 30
|
||||
}
|
||||
|
||||
liferay_ip_addrs = ["10.1.32.24", "10.1.32.25"]
|
||||
liferay_ip_addrs = ["10.1.32.24", "10.1.32.25"]
|
||||
|
||||
liferay_recordsets = {
|
||||
liferay_main_record = {
|
||||
name = join(".", ["next", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name]),
|
||||
name = join(".", ["next", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name]),
|
||||
description = "Liferay Pre (next)"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
output "liferay_data" {
|
||||
value = module.liferay.liferay_data
|
||||
}
|
||||
|
||||
output "liferay_ip_addrs" {
|
||||
value = module.liferay.liferay_ip_addrs
|
||||
}
|
||||
|
||||
output "liferay_recordsets" {
|
||||
value = module.liferay.liferay_recordsets
|
||||
}
|
||||
|
||||
output "liferay_nfs_port_data" {
|
||||
value = module.liferay.nfs_port_data
|
||||
}
|
||||
|
||||
output "liferay_nfs_volume_data" {
|
||||
value = module.liferay.liferay_nfs_volume_data
|
||||
}
|
||||
|
||||
output "liferay_nfs_volume_acls" {
|
||||
value = module.liferay.liferay_nfs_volume_acls
|
||||
sensitive = true
|
||||
}
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue