From 7f56de2f4dec386a0582119a94f4c11b14c23ca6 Mon Sep 17 00:00:00 2001 From: arnol377 Date: Wed, 22 Jan 2025 19:23:00 -0500 Subject: [PATCH] Refactor Terraform module to enable encryption for mount paths in morpheus.tf --- morpheus.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/morpheus.tf b/morpheus.tf index 70dd892..3cc62cb 100644 --- a/morpheus.tf +++ b/morpheus.tf @@ -49,6 +49,7 @@ module "morpheus" { volume_size = 100 volume_type = "gp3" delete_on_termination = true + encrypted = true }, { device_name = "/dev/xvdf" @@ -56,6 +57,7 @@ module "morpheus" { volume_type = "gp3" delete_on_termination = true mount_path = "/APPS" + encrypted = true }, { device_name = "/dev/xvdh" @@ -63,6 +65,7 @@ module "morpheus" { volume_type = "gp3" delete_on_termination = true mount_path = "/optmor" + encrypted = true }, { device_name = "/dev/xvdi" @@ -70,6 +73,7 @@ module "morpheus" { volume_type = "gp3" delete_on_termination = true mount_path = "/varoptmor" + encrypted = true } ] }