Skip to content

Commit

Permalink
:fix terraform.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sunwupark committed Feb 11, 2024
1 parent 7c30edc commit 3d1dd50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
CERTIFICATE_DOMAIN: ${{secrets.CERTIFICATE_DOMAIN}}
DNS: ${{secrets.DNS}}
GATEWAY_DNS: ${{secrets.GATEWAY_DNS}}
if: "${{ github.event.inputs.terraform_operation == 'plan' }}"
if: ${{ github.event.inputs.terraform_operation == 'plan' }}


- name: Terraform Validate
Expand Down Expand Up @@ -107,9 +107,9 @@ jobs:
CERTIFICATE_DOMAIN: ${{secrets.CERTIFICATE_DOMAIN}}
DNS: ${{secrets.DNS}}
GATEWAY_DNS: ${{secrets.GATEWAY_DNS}}
if: "${{ github.event.inputs.terraform_operation == 'apply' }}"
if: ${{ github.event.inputs.terraform_operation == 'apply' }}

- name: Terraform Destroy
id: destroy
run: terraform destroy -auto-approve
if: "${{ github.event.inputs.terraform_operation == 'destroy' }}"
if: ${{ github.event.inputs.terraform_operation == 'destroy' }}

0 comments on commit 3d1dd50

Please sign in to comment.