Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
msingermann-domino committed Nov 15, 2024
1 parent 8cb7dad commit 87b664e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions modules/infra/submodules/network/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ No modules.
| [aws_route_table_association.pod](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route_table_association) | resource |
| [aws_route_table_association.private](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route_table_association) | resource |
| [aws_route_table_association.public](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route_table_association) | resource |
| [aws_security_group.ecr-dkr-endpoint](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/security_group) | resource |
| [aws_subnet.pod](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/subnet) | resource |
| [aws_subnet.private](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/subnet) | resource |
| [aws_subnet.public](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/subnet) | resource |
Expand Down
3 changes: 1 addition & 2 deletions modules/infra/submodules/network/vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ data "aws_prefix_list" "s3" {
prefix_list_id = aws_vpc_endpoint.s3[0].prefix_list_id
}

resource "aws_security_group" "ecr-dkr-endpoint" {
resource "aws_security_group" "ecr_dkr_endpoint" {
name = "${var.deploy_id}-ecr-dkr"
description = "ECR Endpoint security group"
vpc_id = aws_vpc.this[0].id
Expand All @@ -63,7 +63,6 @@ resource "aws_security_group" "ecr-dkr-endpoint" {
protocol = "tcp"
from_port = 443
to_port = 443
type = "ingress"
self = true
}

Expand Down

0 comments on commit 87b664e

Please sign in to comment.