Skip to content

Commit

Permalink
Merge pull request #8 from depot/fix-tags
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwgillespie authored May 25, 2023
2 parents 2e618aa + 14dfd78 commit 952504f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ resource "aws_launch_template" "x86" {

tag_specifications {
resource_type = "volume"
tags = var.tags
tags = merge(var.tags, { "depot-connection" = var.connection-id })
}
}

Expand Down Expand Up @@ -232,7 +232,7 @@ resource "aws_launch_template" "arm" {

tag_specifications {
resource_type = "volume"
tags = var.tags
tags = merge(var.tags, { "depot-connection" = var.connection-id })
}
}

Expand Down

0 comments on commit 952504f

Please sign in to comment.