We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f400a07 commit f4d5b00Copy full SHA for f4d5b00
main.tf
@@ -82,8 +82,8 @@ resource "aws_cloudwatch_event_target" "this" {
82
task_definition_arn = lookup(ecs_target.value, "task_definition_arn", null)
83
84
dynamic "network_configuration" {
85
- for_each = lookup(each.value.ecs_target, "network_configuration", null) != null ? [
86
- each.value.ecs_target.network_configuration
+ for_each = lookup(ecs_target.value, "network_configuration", null) != null ? [
+ ecs_target.value.network_configuration
87
] : []
88
89
content {
0 commit comments