Porting changes from upstream #2

Merged
mauro.mugnaini merged 104 commits from InfraScience/infrastructure-as-code:main into main 2024-03-20 12:31:43 +01:00
2 changed files with 5 additions and 2 deletions
Showing only changes of commit 5c8fdfb305 - Show all commits

View File

@ -6,6 +6,8 @@ variable "liferay_data" {
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"
}
}
@ -26,3 +28,4 @@ variable "liferay_recordsets" {
}
}
}

View File

@ -166,8 +166,8 @@ resource "openstack_compute_interface_attach_v2" "nfs_port_to_liferay" {
# Create a NFS share
resource "openstack_sharedfilesystem_share_v2" "liferay_static" {
name = "liferay_nfs_share"
description = "NFS share for the liferay static data"
name = var.liferay_data.share_name
description = var.liferay_data.share_description
share_proto = "NFS"
size = 5
}