Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/base-java-service-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ on:
type: string
default: "deductions/"
required: false
ecr_alias:
description: "ECR Repository Alias"
type: string
required: false

permissions:
pull-requests: write
Expand Down Expand Up @@ -121,4 +125,5 @@ jobs:
stack: ${{ inputs.service }}
environment: ${{ inputs.environment }}
is_deployment: ${{ inputs.is_deployment }}
ecr_alias: ${{ inputs.ecr_alias }}
secrets: inherit
6 changes: 5 additions & 1 deletion .github/workflows/base-node-service-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ on:
type: boolean
default: false
required: true

ecr_alias:
description: "ECR Repository Alias"
type: string
required: false

permissions:
pull-requests: write
Expand Down Expand Up @@ -153,4 +156,5 @@ jobs:
stack: ${{ inputs.service }}
environment: ${{ inputs.environment }}
is_deployment: ${{ inputs.is_deployment }}
ecr_alias: ${{ inputs.ecr_alias }}
secrets: inherit
5 changes: 5 additions & 0 deletions .github/workflows/base-python-service-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ on:
deploy_infra:
type: boolean
default: true
ecr_alias:
description: "ECR Repository Alias"
type: string
required: false

permissions:
pull-requests: write
Expand Down Expand Up @@ -103,4 +107,5 @@ jobs:
stack: ${{ inputs.service }}
environment: ${{ inputs.environment }}
is_deployment: ${{ inputs.is_deployment }}
ecr_alias: ${{ inputs.ecr_alias }}
secrets: inherit
11 changes: 10 additions & 1 deletion .github/workflows/full-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
service: ehr-repo
environment: ${{ inputs.environment }}
is_deployment: ${{ inputs.is_deployment }}

ecr_alias: deductions/ehr-repo

ehr-out-service:
name: EHR Out Service CI
secrets: inherit
Expand All @@ -40,6 +41,7 @@ jobs:
service: ehr-out-service
environment: ${{ inputs.environment }}
is_deployment: ${{ inputs.is_deployment }}
ecr_alias: deductions/ehr-out-service

mesh-forwarder:
name: MESH Forwarder CI
Expand All @@ -48,6 +50,7 @@ jobs:
service: mesh-forwarder
environment: ${{ inputs.environment }}
is_deployment: ${{ inputs.is_deployment }}
ecr_alias: deductions/mesh-forwarder
secrets: inherit

gp2gp-messenger:
Expand All @@ -57,6 +60,7 @@ jobs:
service: gp2gp-messenger
environment: ${{ inputs.environment }}
is_deployment: ${{ inputs.is_deployment }}
ecr_alias: deductions/gp2gp-messenger
secrets: inherit

nems-event-processor:
Expand All @@ -67,6 +71,7 @@ jobs:
environment: ${{ inputs.environment }}
is_deployment: ${{ inputs.is_deployment }}
requires_localstack: true
ecr_alias: deductions/nems-event-processor
secrets: inherit

ehr-transfer-service:
Expand All @@ -77,6 +82,7 @@ jobs:
environment: ${{ inputs.environment }}
is_deployment: ${{ inputs.is_deployment }}
requires_localstack: true
ecr_alias: deductions/ehr-transfer-service
secrets: inherit

pds-adaptor:
Expand All @@ -87,6 +93,7 @@ jobs:
environment: ${{ inputs.environment }}
is_deployment: ${{ inputs.is_deployment }}
java_version: "11"
ecr_alias: deductions/pds-adaptor
secrets: inherit

re-registration-service:
Expand All @@ -98,6 +105,7 @@ jobs:
is_deployment: ${{ inputs.is_deployment }}
requires_localstack: true
image_prefix: repo/
ecr_alias: repo/re-registration-service
secrets: inherit

suspension-service:
Expand All @@ -109,6 +117,7 @@ jobs:
is_deployment: ${{ inputs.is_deployment }}
requires_localstack: true
image_prefix: repo/
ecr_alias: repo/suspension-service
secrets: inherit

e2e-testing:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/service-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ jobs:
service: ehr-repo
environment: dev
is_deployment: ${{ github.ref == 'refs/heads/main' }}
ecr_alias: deductions/ehr-repo

ehr-out-service:
name: EHR Out Service CI
Expand All @@ -72,6 +73,7 @@ jobs:
service: ehr-out-service
environment: dev
is_deployment: ${{ github.ref == 'refs/heads/main' }}
ecr_alias: deductions/ehr-out-service

mesh-forwarder:
name: MESH Forwarder CI
Expand All @@ -82,6 +84,7 @@ jobs:
service: mesh-forwarder
environment: dev
is_deployment: ${{ github.ref == 'refs/heads/main' }}
ecr_alias: deductions/mesh-forwarder
secrets: inherit

gp2gp-messenger:
Expand All @@ -93,6 +96,7 @@ jobs:
service: gp2gp-messenger
environment: dev
is_deployment: ${{ github.ref == 'refs/heads/main' }}
ecr_alias: deductions/gp2gp-messenger
secrets: inherit

nems-event-processor:
Expand All @@ -105,6 +109,7 @@ jobs:
environment: dev
is_deployment: ${{ github.ref == 'refs/heads/main' }}
requires_localstack: true
ecr_alias: deductions/nems-event-processor
secrets: inherit

ehr-transfer-service:
Expand All @@ -117,6 +122,7 @@ jobs:
environment: dev
is_deployment: ${{ github.ref == 'refs/heads/main' }}
requires_localstack: true
ecr_alias: deductions/ehr-transfer-service
secrets: inherit

pds-adaptor:
Expand All @@ -129,6 +135,7 @@ jobs:
environment: dev
is_deployment: ${{ github.ref == 'refs/heads/main' }}
java_version: "11"
ecr_alias: deductions/pds-adaptor
secrets: inherit

re-registration-service:
Expand All @@ -142,6 +149,7 @@ jobs:
is_deployment: ${{ github.ref == 'refs/heads/main' }}
requires_localstack: true
image_prefix: repo/
ecr_alias: repo/re-registration-service
secrets: inherit

suspension-service:
Expand All @@ -155,6 +163,7 @@ jobs:
is_deployment: ${{ github.ref == 'refs/heads/main' }}
requires_localstack: true
image_prefix: repo/
ecr_alias: repo/suspension-service
secrets: inherit

e2e-testing:
Expand Down
Loading