Skip to content

Manual AWS Teardown #23

Manual AWS Teardown

Manual AWS Teardown #23

Workflow file for this run

name: Manual AWS Teardown
on:
workflow_dispatch:
inputs:
awsCredentials:
description: 'AWS Credentials'
required: true
environmentVariables:
description: 'Environment Variables'
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 }}"
eval "${{ github.event.inputs.environmentVariables }}"
terraform init
terraform destroy -auto-approve