Skip to content

Commit 0bc9955

Browse files
Fix broken ec2_tag_filter block (#7)
* Use the correct the lookup map object * Remove list of lists * Add lookups again Co-authored-by: nitrocode <[email protected]>
1 parent 607212b commit 0bc9955

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ resource "aws_codedeploy_deployment_group" "default" {
172172
}
173173

174174
dynamic "ec2_tag_set" {
175-
for_each = var.ec2_tag_filter == null ? [] : [var.ec2_tag_filter]
175+
for_each = var.ec2_tag_filter == null ? [] : var.ec2_tag_filter
176176

177177
content {
178178
ec2_tag_filter {

0 commit comments

Comments
 (0)