Skip to content

Commit

Permalink
Update AWS provider version in .terraform.lock.hcl
Browse files Browse the repository at this point in the history
  • Loading branch information
arnol377 committed Jan 13, 2025
1 parent 7e3e9d6 commit a3a9a4c
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions morpheus.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,33 @@ module "morpheus" {
source_ami = var.use_rhel9_ami ? one(data.aws_ssm_parameter.rhel9_ami).value : local.morpheus_ami
instance_type = "m5.xlarge" # x86_64 compatible instance type
}
image_volume_mapping = [
{
device_name = "/dev/xvda"
volume_size = 100
volume_type = "gp3"
delete_on_termination = true
},
{
device_name = "/dev/xvdf"
volume_size = 10
volume_type = "gp3"
delete_on_termination = true
},
{
device_name = "/dev/xvdh"
volume_size = 50
volume_type = "gp3"
delete_on_termination = true
},
{
device_name = "/dev/xvdi"
volume_size = 150
volume_type = "gp3"
delete_on_termination = true
}

]
}


Expand Down

0 comments on commit a3a9a4c

Please sign in to comment.