Skip to content

Commit

Permalink
updating aws
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardTMiles committed Jul 15, 2024
1 parent 1bc0d52 commit 153e4f4
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -684,17 +684,19 @@ jobs:
- name: Get ACM certificates
if: ${{ inputs.domains != '' }}
id: certificates
run: source ./.github/assets/shell/getAmazonCertificateManagerSSL.sh "${{ inputs.domains }}"

- name: Deploy ALB stack
if: ${{ inputs.deployALB == 'true' }}
run: ./.github/assets/shell/createUpdateCFStack.sh ${{ matrix.aws-region }} alb \
--template-body file://./CloudFormation/alb.yaml \
--parameters \
ParameterKey=AccountId,ParameterValue="${{ needs.CONSTANTS.outputs.deploymentAccountId }}" \
'ParameterKey=CertificateArns,ParameterValue="${{ steps.certificates.outputs.certificates }}"' \
'ParameterKey=PublicSubnets,ParameterValue="${{ env.publicSubnet }}"'
run: |
source IMAGE_BUILDER.txt
./.github/assets/shell/createUpdateCFStack.sh ${{ matrix.aws-region }} alb \
--template-body file://./CloudFormation/alb.yaml \
--parameters \
ParameterKey=AccountId,ParameterValue="${{ needs.CONSTANTS.outputs.deploymentAccountId }}" \
'ParameterKey=CertificateArns,ParameterValue="$certificates"' \
'ParameterKey=PublicSubnets,ParameterValue="${{ env.publicSubnet }}"'
- name: Deploy NLB stack
if: ${{ inputs.deployNLB == 'true' }}
Expand Down

0 comments on commit 153e4f4

Please sign in to comment.