Skip to content

Commit

Permalink
fix(buildspec): remove unnecessary auth header for public gist download
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Mar 17, 2026
1 parent a68ac9e commit 7bbe786
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions codebuild/buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ phases:
- unzip -q /tmp/tf.zip -d /usr/local/bin && rm /tmp/tf.zip
- terraform version
- echo "Downloading tf script from gist..."
- |
curl -sLo /usr/local/bin/tf -H "Authorization: token $GITHUB_TOKEN" "$TF_GIST_URL"
- curl -sLo /usr/local/bin/tf "$TF_GIST_URL"
- chmod +x /usr/local/bin/tf
- tf --version
- pip3 install --quiet requests
Expand Down

0 comments on commit 7bbe786

Please sign in to comment.