We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2123372 commit 17e71c7Copy full SHA for 17e71c7
.github/workflows/cert-renewal.yaml
@@ -135,5 +135,14 @@ jobs:
135
gh pr create -b master -H $NEW_BRANCH \
136
--title "Update cert $(date '+%Y-%m-%d')" --body "Update cert $(date '+%Y-%m-%d')" \
137
--reviewer ${{inputs.PR_REVIEWERS}}
138
+ - name: Terminate resources
139
+ env:
140
+ AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
141
+ AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
142
+ AWS_REGION: ${{ secrets.AWS_REGION }}
143
+ if: always()
144
+ run: |
145
+ cd $GITHUB_WORKSPACE/manual-letsencrypt/terraform
146
+ terraform destroy -auto-approve -var-file=input.tfvars -input=false
147
148
0 commit comments