Skip to content

Commit 5d77151

Browse files
committed
Rename GIS-related ECRs
Per discussion in the #engineering Slack channel, we are reverting to using the `docker-` prefix for our repos that are really just modifications of official 3rd party Docker containers Side effects: This will destory and recreate the ECRs and associated policies and outputs. This will require a redeploy of the mitlib-tf-workloads-gis repo as well as re-uploading the containers for each ECR repository.
1 parent 8ef8e71 commit 5d77151

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

gis_ecrs.tf

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Container repositories for the GIS stack
2-
# Geoweb containers
2+
# Geoweb containers - a DLS-managed Ruby-on-Rails application that is dockerized
33
# This is a standard ECR for an ECS with a Fargate launch type
44
module "ecr_geoweb" {
55
source = "./modules/ecr"
@@ -10,41 +10,41 @@ module "ecr_geoweb" {
1010
tfoutput_ssm_path = var.tfoutput_ssm_path
1111
tags = {
1212
app-repo = "geoweb"
13-
project-id = "gis-stack"
13+
project-id = "gis-services"
1414
}
1515
}
1616

17-
# Geoserver containers
17+
# GeoServer containers - a modification of the official GeoServer Docker container
1818
# This is a standard ECR for an ECS with a Fargate launch type
1919
module "ecr_geoserver" {
2020
source = "./modules/ecr"
21-
repo_name = "geoserver"
21+
repo_name = "docker-geoserver"
2222
login_policy_arn = aws_iam_policy.login.arn
2323
oidc_arn = data.aws_ssm_parameter.oidc_arn.value
2424
environment = var.environment
2525
tfoutput_ssm_path = var.tfoutput_ssm_path
2626
tags = {
27-
app-repo = "geoserver"
28-
project-id = "gis-stack"
27+
app-repo = "docker-geoserver"
28+
project-id = "gis-services"
2929
}
3030
}
3131

32-
# GeoSolr containers
32+
# GeoSolr containers - a modification of the official Solr Docker container
3333
# This is a standard ECR for an ECS with a Fargate launch type
3434
module "ecr_geosolr" {
3535
source = "./modules/ecr"
36-
repo_name = "geosolr"
36+
repo_name = "docker-geosolr"
3737
login_policy_arn = aws_iam_policy.login.arn
3838
oidc_arn = data.aws_ssm_parameter.oidc_arn.value
3939
environment = var.environment
4040
tfoutput_ssm_path = var.tfoutput_ssm_path
4141
tags = {
42-
app-repo = "geosolr"
43-
project-id = "gis-stack"
42+
app-repo = "docker-geosolr"
43+
project-id = "gis-services"
4444
}
4545
}
4646

47-
# Slingshot containers
47+
# Slingshot containers - a DLS-managed Python application that is dockerized
4848
# This is a standard ECR for an ECS with a Fargate launch type
4949
module "ecr_slingshot" {
5050
source = "./modules/ecr"
@@ -55,7 +55,7 @@ module "ecr_slingshot" {
5555
tfoutput_ssm_path = var.tfoutput_ssm_path
5656
tags = {
5757
app-repo = "slingshot"
58-
project-id = "gis-stack"
58+
project-id = "gis-services"
5959
}
6060
}
6161

0 commit comments

Comments
 (0)