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: Terraform Destroy | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
terraform_destroy: | ||
Check failure on line 7 in .github/workflows/terraform-destroy.yml GitHub Actions / Terraform DestroyInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
needs: terraform_apply | ||
steps: | ||
- name: Terraform destroy | ||
run: terraform destroy --auto-approve |