Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/gh-oidc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ jobs:
with:
workload_identity_provider: ${{ secrets.PROVIDER_NAME }} # this is the output provider_name from the TF module
service_account: ${{ secrets.SA_EMAIL }} # this is a SA email configured using the TF module with access to YOUR-GCS-BUCKET
- id: 'list buckets contents'
- id: 'list-buckets-contents'
run: |-
curl https://storage.googleapis.com/storage/v1/b/YOUR-GCS-BUCKET/o \
curl -sSf https://storage.googleapis.com/storage/v1/b/YOUR-GCS-BUCKET/o \
--header "Authorization: Bearer ${{ steps.auth.outputs.access_token }}"
```

Expand Down