Skip to content

Commit

Permalink
testing github workspace trigger 13
Browse files Browse the repository at this point in the history
  • Loading branch information
gaganhattar committed Jul 13, 2024
1 parent aa3ea7a commit 55ac2c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ jobs: # jobs are steps to excute in the pipeline

- name: check environment vars
run: |
[[ -n "${{ secrets.AWS_ACCESS_KEY_ID }}"]] && echo "valid aws access key"
[[ -n "${{ secrets.AWS_SECRET_ACCESS_KEY }}"]] && echo "valid aws secret key"
if [ -n "${{ secrets.AWS_ACCESS_KEY_ID }}"]; then echo "valid aws access key" fi
if [ -n "${{ secrets.AWS_SECRET_ACCESS_KEY }}"]; then echo "valid aws secret key" fi
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down

0 comments on commit 55ac2c1

Please sign in to comment.