Skip to content

Commit 7d932fc

Browse files
Scott WinklerScott Winkler
authored andcommitted
update
1 parent 2afad72 commit 7d932fc

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

modules/cluster/main.tf

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -71,18 +71,18 @@ resource "aws_autoscaling_group" "server" {
7171
id = aws_launch_template.server.id
7272
version = aws_launch_template.server.latest_version
7373
}
74-
tags = [
75-
{
76-
key = "ResourceGroup"
77-
value = var.namespace
78-
propagate_at_launch = true
79-
},
80-
{
81-
key = "Name"
82-
value = local.namespace
83-
propagate_at_launch = true
84-
}
85-
]
74+
75+
tag {
76+
key = "ResourceGroup"
77+
value = var.namespace
78+
propagate_at_launch = true
79+
}
80+
81+
tag {
82+
key = "Name"
83+
value = local.namespace
84+
propagate_at_launch = true
85+
}
8686
}
8787

8888
data "aws_instances" "instances" {

0 commit comments

Comments
 (0)