Skip to content

Commit 478b87d

Browse files
authored
Update main.tf
1 parent 4db8ba6 commit 478b87d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ data "aws_route_tables" "aws_private_routes" {
221221
}
222222
}
223223

224-
resource "aws_vpc_endpoint" "private-s3" {
224+
resource "aws_vpc_endpoint" "private_s3" {
225225
count = var.vpc_s3_endpoint_enabled ? 1 : 0
226226
depends_on = [data.aws_route_tables.aws_private_routes]
227227
vpc_id = module.vpc.vpc_id
@@ -262,7 +262,7 @@ resource "aws_security_group" "vpc_endpoints" {
262262
}
263263
# private links for ECR.dkr
264264

265-
resource "aws_vpc_endpoint" "private-ecr-dkr" {
265+
resource "aws_vpc_endpoint" "private-ecr_dkr" {
266266
count = var.vpc_ecr_endpoint_enabled ? 1 : 0
267267
depends_on = [data.aws_route_tables.aws_private_routes]
268268
vpc_id = module.vpc.vpc_id
@@ -290,7 +290,7 @@ POLICY
290290

291291
# private links for ECR.api
292292

293-
resource "aws_vpc_endpoint" "private-ecr-api" {
293+
resource "aws_vpc_endpoint" "private-ecr_api" {
294294
count = var.vpc_ecr_endpoint_enabled ? 1 : 0
295295
depends_on = [data.aws_route_tables.aws_private_routes]
296296
vpc_id = module.vpc.vpc_id

0 commit comments

Comments
 (0)