Manual AWS Teardown #14
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
name: Manual AWS Teardown | |
on: | |
workflow_dispatch: | |
inputs: | |
awsCredentials: | |
description: 'AWS Credentials' | |
required: true | |
auth0Domain: | |
description: 'Auth0 Domain' | |
required: true | |
auth0ClientId: | |
description: 'Auth0 Client ID' | |
required: true | |
auth0ClientSecret: | |
description: 'Auth0 Client Secret' | |
required: true | |
databasePassword: | |
description: 'Database Password' | |
required: true | |
jobs: | |
teardown: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- uses: levibostian/action-hide-sensitive-inputs@v1 | |
- name: Teardown to AWS | |
run: | | |
eval "${{ github.event.inputs.awsCredentials }}" | |
terraform init | |
terraform destroy -auto-approve \ | |
-var "auth0_domain=${{ github.event.inputs.auth0Domain }}" \ | |
-var "auth0_client_id=${{ github.event.inputs.auth0ClientId }}" \ | |
-var "auth0_client_secret=${{ github.event.inputs.auth0ClientSecret }}" \ | |
-var "database_password=${{ github.event.inputs.databasePassword }}" |