Skip to content

Commit

Permalink
core components
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugene Istrati committed May 9, 2024
1 parent 09210ef commit 03988b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iac/core/vpc_endpoint/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "aws_vpc_endpoint" "this" {
vpc_endpoint_type = "Interface"
private_dns_enabled = true
service_name = format("com.amazonaws.%s.%s", data.aws_region.this.name, element(local.interfaces, count.index))
subnet_ids = merge(
subnet_ids = concat(
data.terraform_remote_state.subnet.outputs.igw_subnet_ids,
data.terraform_remote_state.subnet.outputs.nat_subnet_ids
)
Expand Down

0 comments on commit 03988b3

Please sign in to comment.