Skip to content

Commit

Permalink
undo change
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Apr 14, 2023
1 parent d933089 commit 9600fc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vpc-interface-endpoint/route53.tf
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ resource "null_resource" "vpce" {
}

data "aws_network_interface" "vpce" {
for_each = local.endpoint_exists ? toset(split(",", null_resource.vpce.triggers.vpce_interface_ids)) : toset([])
for_each = local.r53_create && local.endpoint_exists ? toset(split(",", null_resource.vpce.triggers.vpce_interface_ids)) : toset([])
id = each.key
}

Expand Down

0 comments on commit 9600fc0

Please sign in to comment.