Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
msingermann-domino committed Feb 12, 2025
1 parent 9e9183a commit 6709454
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/infra/submodules/network/vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ resource "aws_vpc_endpoint" "s3" {
}

resource "aws_vpc_endpoint" "s3_interface" {
count = local.create_vpc ? 1 : 0
vpc_id = aws_vpc.this[0].id
service_name = "com.amazonaws.${var.region}.s3"
vpc_endpoint_type = "Interface"
count = local.create_vpc ? 1 : 0
vpc_id = aws_vpc.this[0].id
service_name = "com.amazonaws.${var.region}.s3"
vpc_endpoint_type = "Interface"
private_dns_enabled = true
subnet_ids = [for s in aws_subnet.pod : s.id]

Expand Down

0 comments on commit 6709454

Please sign in to comment.