Skip to content

Commit

Permalink
Refactor Terraform module to enable encryption for mount paths in mor…
Browse files Browse the repository at this point in the history
…pheus.tf
  • Loading branch information
arnol377 committed Jan 23, 2025
1 parent 5874bf7 commit 7f56de2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions morpheus.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,27 +49,31 @@ module "morpheus" {
volume_size = 100
volume_type = "gp3"
delete_on_termination = true
encrypted = true
},
{
device_name = "/dev/xvdf"
volume_size = 10
volume_type = "gp3"
delete_on_termination = true
mount_path = "/APPS"
encrypted = true
},
{
device_name = "/dev/xvdh"
volume_size = 50
volume_type = "gp3"
delete_on_termination = true
mount_path = "/optmor"
encrypted = true
},
{
device_name = "/dev/xvdi"
volume_size = 150
volume_type = "gp3"
delete_on_termination = true
mount_path = "/varoptmor"
encrypted = true
}
]
}
Expand Down

0 comments on commit 7f56de2

Please sign in to comment.