Skip to content

Commit

Permalink
Refactor Terraform module to update mount paths in morpheus.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
arnol377 committed Jan 22, 2025
1 parent 96ffaf2 commit 9ed7330
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion morpheus.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

]
}

Expand Down

0 comments on commit 9ed7330

Please sign in to comment.