-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pass allowlist deploy key to destroy workflow (#141)
So that it can initialise properly and destroy the temporary env #patch
- Loading branch information
Showing
2 changed files
with
7 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,9 @@ on: | |
required: true | ||
type: string | ||
secrets: | ||
allowlist_deploy_key: | ||
description: "SSH Deploy Key" | ||
required: true | ||
aws_access_key_id: | ||
description: "AWS Access Key ID" | ||
required: true | ||
|
@@ -35,6 +38,9 @@ jobs: | |
aws-region: eu-west-1 | ||
role-duration-seconds: 3600 | ||
role-session-name: OPGLpaStoreGithubAction | ||
- uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.allowlist_deploy_key }} | ||
|
||
- name: Lint Terraform | ||
run: terraform fmt -check -recursive | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters