Skip to content

Commit

Permalink
Merge pull request #17 from depot/fix-tags
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwgillespie authored Sep 12, 2023
2 parents 0c3a02c + 1ecdda4 commit 4f663b7
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 @@ -176,7 +176,7 @@ resource "aws_launch_template" "x86" {

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

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

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

tag_specifications {
Expand Down

0 comments on commit 4f663b7

Please sign in to comment.