Terraform Destroy #32
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
## TODO: Add cron to destroy every night | |
## TODO: Add a check to see if the cluster is empty before destroying | |
name: Terraform Destroy | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
permissions: write-all | |
jobs: | |
destroy: | |
runs-on: ubuntu-latest | |
environment: prod | |
steps: | |
- name: configure aws credentials | |
uses: aws-actions/[email protected] | |
with: | |
role-to-assume: ${{ secrets.AWS_ROLE_ARN }} | |
role-session-name: GitHub_to_AWS_via_FederatedOIDC | |
aws-region: ${{ secrets.AWS_REGION }} | |
- name: install terraform | |
uses: hashicorp/setup-terraform@v2 | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
# - name: install kubectl | |
# uses: azure/setup-kubectl@v1 | |
# with: | |
# version: 'v1.29.0' | |
# | |
# - name: configure kubectl | |
# run: | | |
# aws eks update-kubeconfig --name ${{ secrets.EKS_CLUSTER_NAME }} --region ${{ secrets.AWS_REGION }} | |
# | |
# - name: delete app of apps | |
# run: kubectl delete -f kubernetes/app-of-apps.yaml | |
- name: terraform init | |
run: terraform init | |
working-directory: terraform/environments/prod | |
- name: terraform destroy | |
run: terraform destroy -auto-approve -lock=false | |
working-directory: terraform/environments/prod |