From 9ed7330dc01301738f5c4d31ec94601fc432931c Mon Sep 17 00:00:00 2001 From: arnol377 Date: Wed, 22 Jan 2025 12:54:07 -0500 Subject: [PATCH] Refactor Terraform module to update mount paths in morpheus.tf --- morpheus.tf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/morpheus.tf b/morpheus.tf index 4e840e4..9bf66de 100644 --- a/morpheus.tf +++ b/morpheus.tf @@ -55,20 +55,22 @@ module "morpheus" { volume_size = 10 volume_type = "gp3" delete_on_termination = true + mount_path = "/APPS" }, { device_name = "/dev/xvdh" volume_size = 50 volume_type = "gp3" delete_on_termination = true + mount_path = "/optmor" }, { device_name = "/dev/xvdi" volume_size = 150 volume_type = "gp3" delete_on_termination = true + mount_path = "/varoptmor" } - ] }