Skip to content

Commit

Permalink
Merge pull request #9 from depot/fix-volume-sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwgillespie authored Jun 22, 2023
2 parents 952504f + 7cce60c commit 15d6e42
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -154,16 +154,6 @@ resource "aws_launch_template" "x86" {
user_data = base64encode(templatefile("${path.module}/user-data.sh.tftpl", { DEPOT_CLOUD_CONNECTION_ID = var.connection-id }))
update_default_version = true

block_device_mappings {
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = true
volume_size = 10
volume_type = "gp3"
}
}

iam_instance_profile {
arn = aws_iam_instance_profile.instance[0].arn
}
Expand Down Expand Up @@ -200,16 +190,6 @@ resource "aws_launch_template" "arm" {
user_data = base64encode(templatefile("${path.module}/user-data.sh.tftpl", { DEPOT_CLOUD_CONNECTION_ID = var.connection-id }))
update_default_version = true

block_device_mappings {
device_name = "/dev/xvda"
ebs {
delete_on_termination = true
encrypted = true
volume_size = 10
volume_type = "gp3"
}
}

iam_instance_profile {
arn = aws_iam_instance_profile.instance[0].arn
}
Expand Down

0 comments on commit 15d6e42

Please sign in to comment.