File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,13 @@ module "vpc" {
17
17
cidrsubnet (var. vpc_cidr , 3 , 5 ),
18
18
]
19
19
20
- enable_nat_gateway = true
21
- enable_dns_support = true
22
- enable_dns_hostnames = true
20
+ enable_nat_gateway = true
21
+ enable_dns_support = true
22
+ enable_dns_hostnames = true
23
23
24
24
enable_s3_endpoint = true
25
+ enable_ecr_api_endpoint = true
26
+ enable_ecr_dkr_endpoint = true
25
27
ecr_dkr_endpoint_private_dns_enabled = true
26
28
ecr_dkr_endpoint_security_group_ids = [aws_security_group . private . id ]
27
29
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ module "vpc" {
24
24
enable_dns_hostnames = true
25
25
26
26
enable_s3_endpoint = true
27
+ enable_ecr_api_endpoint = true
28
+ enable_ecr_dkr_endpoint = true
27
29
ecr_dkr_endpoint_private_dns_enabled = true
28
30
ecr_dkr_endpoint_security_group_ids = [aws_security_group . private . id ]
29
31
You can’t perform that action at this time.
0 commit comments