We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a729b0c commit f62034cCopy full SHA for f62034c
2 files changed
terraform/environments/production/main.tf
@@ -18,8 +18,9 @@ module "production" {
18
project = "<% .Name %>"
19
region = "<% index .Params `region` %>"
20
allowed_account_ids = ["<% index .Params `accountId` %>"]
21
+
22
# ECR configuration
- ecr_repositories = ["<% .Name %>-production"]
23
+ ecr_repositories = [] # Should be created by the staging environment
24
25
# EKS configuration
26
eks_cluster_version = "1.15"
terraform/environments/staging/main.tf
@@ -19,7 +19,7 @@ module "staging" {
- ecr_repositories = [ "<% .Name %>-staging" ]
+ ecr_repositories = [ "<% .Name %>" ]
0 commit comments