Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Apr 3, 2023
1 parent ee6c691 commit 4dcc0eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vpc-interface-endpoint/route53.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ resource "aws_route53_zone" "vpce" {
tags = merge(
local.tags,
local.common_tags,
{ Name = data.aws_vpc_endpoint_service.interface_endpoint.private_dns_nam },
{ Name = data.aws_vpc_endpoint_service.interface_endpoint.private_dns_name },
)
}

data "aws_network_interface" "vpce" {
for_each = local.r54_create ? toset(aws_vpc_endpoint.interface_endpoint.network_interface_ids) : toset([])
for_each = local.r53_create ? toset(aws_vpc_endpoint.interface_endpoint.network_interface_ids) : toset([])
id = each.key
}

Expand Down

0 comments on commit 4dcc0eb

Please sign in to comment.