Liferay: the NFS share is now a variable.
This commit is contained in:
parent
3996cd0d54
commit
5c8fdfb305
|
@ -6,6 +6,8 @@ variable "liferay_data" {
|
||||||
vm_count = 1
|
vm_count = 1
|
||||||
vm_flavor = "m1.large"
|
vm_flavor = "m1.large"
|
||||||
boot_vol_size = 30
|
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" {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -166,8 +166,8 @@ resource "openstack_compute_interface_attach_v2" "nfs_port_to_liferay" {
|
||||||
|
|
||||||
# Create a NFS share
|
# Create a NFS share
|
||||||
resource "openstack_sharedfilesystem_share_v2" "liferay_static" {
|
resource "openstack_sharedfilesystem_share_v2" "liferay_static" {
|
||||||
name = "liferay_nfs_share"
|
name = var.liferay_data.share_name
|
||||||
description = "NFS share for the liferay static data"
|
description = var.liferay_data.share_description
|
||||||
share_proto = "NFS"
|
share_proto = "NFS"
|
||||||
size = 5
|
size = 5
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue