Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Verify and Deploy

Check notice on line 1 in .github/workflows/main.yml

View workflow job for this annotation

GitHub Actions / StandardLint audit

CI configuration

Check for CI configuration file
on:
workflow_dispatch:
inputs:
Expand Down Expand Up @@ -125,7 +125,7 @@
role-session-name: githubworkflowrolesessiont2
aws-region: ${{ env.AWS_REGION }}
- name: Deploy to AWS CloudFormation Irland
uses: aws-actions/aws-cloudformation-github-deploy@33527b83bddcf6b3f0b135d9550bde8475325c73 # v1
uses: aws-actions/aws-cloudformation-github-deploy@c6cd26bb03f19ebe84c84e9cdbedfb307bf44fb4 # v1
with:
name: lambda-vpc
template: cloudformation/template.yml
Expand Down Expand Up @@ -158,7 +158,7 @@
aws-region: ${{ env.AWS_REGION_ZONE }}

- name: Deploy to AWS CloudFormation Frankfurt
uses: aws-actions/aws-cloudformation-github-deploy@33527b83bddcf6b3f0b135d9550bde8475325c73 # v1
uses: aws-actions/aws-cloudformation-github-deploy@c6cd26bb03f19ebe84c84e9cdbedfb307bf44fb4 # v1
with:
name: lambda-vpc
template: cloudformation/template.yml
Expand All @@ -183,23 +183,23 @@
echo "${{ env.AliasTargetHostedZoneId }}"
echo "${{ env.AliasTargetDNSName }}"
- name: Deploy to AWS CloudFormation Route53
uses: aws-actions/aws-cloudformation-github-deploy@33527b83bddcf6b3f0b135d9550bde8475325c73 # v1
uses: aws-actions/aws-cloudformation-github-deploy@c6cd26bb03f19ebe84c84e9cdbedfb307bf44fb4 # v1
with:
name: lambda-vpc-route53
template: cloudformation/route53.yml
capabilities: CAPABILITY_NAMED_IAM
no-fail-on-empty-changeset: "1"
parameter-overrides: "DomainNamePrefix=api,HealthCheckId=${{ env.HealthCheckId }},RestApiDomainNameRegionalHostedZoneId=${{ env.AliasTargetHostedZoneId }},RestApiDomainNameRegionalDomainName=${{ env.AliasTargetDNSName }},HealthCheckId2=${{ env.HealthCheckId2 }},RestApiDomainNameRegionalHostedZoneId2=${{ env.AliasTargetHostedZoneId2 }},RestApiDomainNameRegionalDomainName2=${{ env.AliasTargetDNSName2 }}"
- name: Deploy to AWS CloudFormation Disaster Recovery
uses: aws-actions/aws-cloudformation-github-deploy@33527b83bddcf6b3f0b135d9550bde8475325c73 # v1
uses: aws-actions/aws-cloudformation-github-deploy@c6cd26bb03f19ebe84c84e9cdbedfb307bf44fb4 # v1
with:
name: lambda-vpc-disaster-recovery
template: cloudformation/disaster-recovery.yml
capabilities: CAPABILITY_NAMED_IAM
no-fail-on-empty-changeset: "1"
parameter-overrides: "ApiRole=${{ env.ApiRoleName }}"
- name: Deploy to AWS CloudFormation Resilience hub App and Policy
uses: aws-actions/aws-cloudformation-github-deploy@33527b83bddcf6b3f0b135d9550bde8475325c73 # v1
uses: aws-actions/aws-cloudformation-github-deploy@c6cd26bb03f19ebe84c84e9cdbedfb307bf44fb4 # v1
with:
name: lambda-vpc-resiliencehub-app
template: cloudformation/app.yml
Expand Down
Loading