File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ data "aws_route_tables" "aws_private_routes" {
221
221
}
222
222
}
223
223
224
- resource "aws_vpc_endpoint" "private-s3 " {
224
+ resource "aws_vpc_endpoint" "private_s3 " {
225
225
count = var. vpc_s3_endpoint_enabled ? 1 : 0
226
226
depends_on = [data . aws_route_tables . aws_private_routes ]
227
227
vpc_id = module. vpc . vpc_id
@@ -262,7 +262,7 @@ resource "aws_security_group" "vpc_endpoints" {
262
262
}
263
263
# private links for ECR.dkr
264
264
265
- resource "aws_vpc_endpoint" "private-ecr-dkr " {
265
+ resource "aws_vpc_endpoint" "private-ecr_dkr " {
266
266
count = var. vpc_ecr_endpoint_enabled ? 1 : 0
267
267
depends_on = [data . aws_route_tables . aws_private_routes ]
268
268
vpc_id = module. vpc . vpc_id
@@ -290,7 +290,7 @@ POLICY
290
290
291
291
# private links for ECR.api
292
292
293
- resource "aws_vpc_endpoint" "private-ecr-api " {
293
+ resource "aws_vpc_endpoint" "private-ecr_api " {
294
294
count = var. vpc_ecr_endpoint_enabled ? 1 : 0
295
295
depends_on = [data . aws_route_tables . aws_private_routes ]
296
296
vpc_id = module. vpc . vpc_id
You can’t perform that action at this time.
0 commit comments