Skip to content

Commit

Permalink
Disable private dns
Browse files Browse the repository at this point in the history
  • Loading branch information
msingermann-domino committed Nov 12, 2024
1 parent 533ce92 commit 9400d67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/infra/submodules/network/vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ data "aws_prefix_list" "s3" {
resource "aws_vpc_endpoint" "ecr_dkr" {
count = local.create_vpc ? 1 : 0
vpc_id = aws_vpc.this[0].id
private_dns_enabled = true
private_dns_enabled = false
service_name = "com.amazonaws.${var.region}.ecr.dkr"
vpc_endpoint_type = "Interface"
subnet_ids = [for s in aws_subnet.pod : s.id]
Expand Down

0 comments on commit 9400d67

Please sign in to comment.