Skip to content

Commit 2df481c

Browse files
committed
Cleanup some names
1 parent aca837c commit 2df481c

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,10 +209,10 @@ This is a core infrastructure repository that defines infrastructure related to
209209
| alma\_webhook\_lambdas\_makefile | Full contents of the Makefile for the alma-webhook-lambdas repo (allows devs to push to Dev account only) |
210210
| alma\_webhook\_lambdas\_prod\_promote\_workflow | Full contents of the prod-promote.yml for the alma-webhook-lambdas repo |
211211
| alma\_webhook\_lambdas\_stage\_build\_workflow | Full contents of the stage-build.yml for the alma-webhook-lambdas repo |
212-
| apt\_fargate\_dev\_build\_workflow | Full contents of the dev-build.yml for the archival-packaging-tool repo |
213-
| apt\_fargate\_makefile | Full contents of the Makefile for the archival-packaging-tool repo (allows devs to push to Dev account only) |
214-
| apt\_fargate\_prod\_promote\_workflow | Full contents of the prod-promote.yml for the archival-packaging-tool repo |
215-
| apt\_fargate\_stage\_build\_workflow | Full contents of the stage-build.yml for the archival-packaging-tool repo |
212+
| apt\_dev\_build\_workflow | Full contents of the dev-build.yml for the archival-packaging-tool repo |
213+
| apt\_makefile | Full contents of the Makefile for the archival-packaging-tool repo (allows devs to push to Dev account only) |
214+
| apt\_prod\_promote\_workflow | Full contents of the prod-promote.yml for the archival-packaging-tool repo |
215+
| apt\_stage\_build\_workflow | Full contents of the stage-build.yml for the archival-packaging-tool repo |
216216
| asati\_fargate\_dev\_build\_workflow | Full contents of the dev-build.yml for the asati repo |
217217
| asati\_fargate\_makefile | Full contents of the Makefile for the asati repo (allows devs to push to Dev account only) |
218218
| asati\_fargate\_prod\_promote\_workflow | Full contents of the prod-promote.yml for the asati repo |

apt_ecr.tf

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,47 +21,47 @@ module "ecr_apt" {
2121

2222
## For archival-packaging-tool application repo and ECR repository
2323
# Outputs in dev
24-
output "apt_fargate_dev_build_workflow" {
24+
output "apt_dev_build_workflow" {
2525
value = var.environment == "prod" || var.environment == "stage" ? null : templatefile("${path.module}/files/dev-build.tpl", {
2626
region = var.aws_region
2727
role = module.ecr_apt.gha_role
2828
ecr = module.ecr_apt.repository_name
29-
function = ""
29+
function = local.ecr_apt
3030
}
3131
)
3232
description = "Full contents of the dev-build.yml for the archival-packaging-tool repo"
3333
}
34-
output "apt_fargate_makefile" {
34+
output "apt_makefile" {
3535
value = var.environment == "prod" || var.environment == "stage" ? null : templatefile("${path.module}/files/makefile.tpl", {
3636
ecr_name = module.ecr_apt.repository_name
3737
ecr_url = module.ecr_apt.repository_url
38-
function = ""
38+
function = local.ecr_apt
3939
}
4040
)
4141
description = "Full contents of the Makefile for the archival-packaging-tool repo (allows devs to push to Dev account only)"
4242
}
4343

4444
# Outputs in stage
45-
output "apt_fargate_stage_build_workflow" {
45+
output "apt_stage_build_workflow" {
4646
value = var.environment == "prod" || var.environment == "dev" ? null : templatefile("${path.module}/files/stage-build.tpl", {
4747
region = var.aws_region
4848
role = module.ecr_apt.gha_role
4949
ecr = module.ecr_apt.repository_name
50-
function = ""
50+
function = local.ecr_apt
5151
}
5252
)
5353
description = "Full contents of the stage-build.yml for the archival-packaging-tool repo"
5454
}
5555

5656
# Outputs after promotion to prod
57-
output "apt_fargate_prod_promote_workflow" {
57+
output "apt_prod_promote_workflow" {
5858
value = var.environment == "stage" || var.environment == "dev" ? null : templatefile("${path.module}/files/prod-promote.tpl", {
5959
region = var.aws_region
6060
role_stage = "${module.ecr_apt.repo_name}-gha-stage"
6161
role_prod = "${module.ecr_apt.repo_name}-gha-prod"
6262
ecr_stage = "${module.ecr_apt.repo_name}-stage"
6363
ecr_prod = "${module.ecr_apt.repo_name}-prod"
64-
function = ""
64+
function = local.ecr_apt
6565
}
6666
)
6767
description = "Full contents of the prod-promote.yml for the archival-packaging-tool repo"

files/prod-promote-extra-region.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### This should be added to jobs section of the dev-build.yml.
1+
### This should be added to jobs section of the prod-promote.yml.
22
### If this is a Lambda function, uncomment the FUNCTION: line
33

44
deploy-${region}:

0 commit comments

Comments
 (0)