Skip to content

Commit 47ab5f7

Browse files
committed
Rename Matomo ECR
Why these changes are being introduced: Per a conversation in the #engineering channel in Slack, we have decided that all of our repos that are really just modifications of a third party Docker container should have "docker-" as the prefix of the name. Since there is a tight relationship between the app GitHub repo name, the ECR repo name, and the OIDC roles/policies for automated deployments, the ECR configuration needs to be updated. How this addresses that need: * Change the app-repo name from "matomo" to "docker-matomo" in the module call that creates the ECR and related bits Side effects of this change: This will delete the current ECR, roles, policies, and outputs and recreate them. The GitHub repo for Matomo will also need to be renamed and the new Makefile and GHA workflow files will need to be updated. Relevant ticket(s): * https://mitlibraries.atlassian.net/browse/IN-487
1 parent 5d77151 commit 47ab5f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

matomo_ecr.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ locals {
66
}
77
module "ecr_matomo" {
88
source = "./modules/ecr"
9-
repo_name = "matomo"
9+
repo_name = "docker-matomo"
1010
login_policy_arn = aws_iam_policy.login.arn
1111
oidc_arn = data.aws_ssm_parameter.oidc_arn.value
1212
environment = var.environment
1313
tfoutput_ssm_path = var.tfoutput_ssm_path
1414
tags = {
15-
app-repo = "matomo"
15+
app-repo = "docker-matomo"
1616
}
1717
}
1818

0 commit comments

Comments
 (0)