Skip to content

Commit

Permalink
fix lowercase false
Browse files Browse the repository at this point in the history
  • Loading branch information
ntse committed Jan 13, 2025
1 parent d14a93d commit 5825962
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/terraform-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ jobs:
- name: Export variables
run: |
echo "state_name=$(basename ${{ matrix.stack.directory }})" >> $GITHUB_ENV
echo skip_when_destroying=${{ matrix.stack.skip_when_destroying }}
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down Expand Up @@ -346,7 +345,7 @@ jobs:
set +e
if [[ "$TERRAFORM_ACTION" == "destroy" ]]; then
if [[ "$SKIP_DESTROY" == "False" ]]; then
if [[ "$SKIP_DESTROY" == "false" ]]; then
terraform plan -lock-timeout=5m -destroy -no-color -input=false -out=tfplan -detailed-exitcode -compact-warnings ${TERRAFORM_VARIABLES}
fi
else
Expand Down

0 comments on commit 5825962

Please sign in to comment.