Skip to content

Commit c3e8e1b

Browse files
ivan-pinattiaknysh
authored andcommitted
Fix tags_as_list_of_maps error (#29)
* Fix tags_as_list_of_maps error * Re-add tags as variables
1 parent fc2c767 commit c3e8e1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ module "label" {
6565
name = "${var.name}"
6666
attributes = "${var.attributes}"
6767
delimiter = "${var.delimiter}"
68-
tags = "${merge(map("AZ", "${local.availability_zone}"), var.tags)}"
6968
enabled = "${local.instance_count > 0 ? "true" : "false"}"
69+
tags = "${var.tags}"
7070
}
7171

7272
resource "aws_iam_instance_profile" "default" {

0 commit comments

Comments
 (0)