Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmacedot committed Jan 5, 2025
1 parent 7c687cd commit aa2d741
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ec2-launch-template.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ resource "aws_launch_template" "ecs" {
create_before_destroy = true
}

tags = merge(var.tags,{
})
tags = merge(var.tags, {
})
}

resource "tls_private_key" "algorithm" {
Expand All @@ -49,6 +49,6 @@ resource "aws_key_pair" "generated_key" {
key_name = "${var.name}-key"
public_key = tls_private_key.algorithm[0].public_key_openssh

tags = merge(var.tags,{
})
tags = merge(var.tags, {
})
}

0 comments on commit aa2d741

Please sign in to comment.