-
Notifications
You must be signed in to change notification settings - Fork 203
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add guide for using workload identity federation #349
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -84,6 +84,45 @@ jobs: | |||||||||
channelId: live | ||||||||||
``` | ||||||||||
|
||||||||||
### Authenticate using Workload Identity Federation | ||||||||||
|
||||||||||
Managing service account keys poses a security risk. Workload Identity Federation can be used to reduce the risk when running GitHub Actions. | ||||||||||
With identity federation, GitHub will generate a JWT that will be used to authenticate against Google Cloud APIs. | ||||||||||
|
||||||||||
Before setting up your GitHub Action, you need to follow these steps to prepare your Workload Identity Pool: | ||||||||||
https://github.com/google-github-actions/auth?tab=readme-ov-file#workload-identity-federation-through-a-service-account | ||||||||||
|
||||||||||
```yaml | ||||||||||
jobs: | ||||||||||
deploy_using_workload_identity_federatoin: | ||||||||||
runs-on: ubuntu-latest | ||||||||||
permissions: | ||||||||||
contents: 'read' | ||||||||||
id-token: 'write' # This permission is needed | ||||||||||
steps: | ||||||||||
- uses: actions/checkout@v2 | ||||||||||
|
||||||||||
# Add these two steps to generate the credential to use with the `action-hosting-deploy` action. | ||||||||||
- name: Prepare Google Cloud authentication | ||||||||||
uses: 'google-github-actions/auth@v2' | ||||||||||
with: | ||||||||||
service_account: 'service-account@your-project.iam.gserviceaccount.com' | ||||||||||
workload_identity_provider: 'projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/github/providers/github-your-org' | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
This is what we are using 🤔 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure if all of the scopes are strictly necessary |
||||||||||
create_credentials_file: true | ||||||||||
- name: Get federated identity credentials file | ||||||||||
run: | | ||||||||||
echo "SERVICE_ACCOUNT_KEY=$(cat "${{ steps.auth.outputs.credentials_file_path }}" | tr -d '\n')" >> $GITHUB_ENV | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. FYI this will silently fail if |
||||||||||
|
||||||||||
# Add any build steps here. For example: | ||||||||||
# - run: npm ci && npm run build | ||||||||||
- uses: FirebaseExtended/action-hosting-deploy@v0 | ||||||||||
with: | ||||||||||
repoToken: "${{ secrets.GITHUB_TOKEN }}" | ||||||||||
firebaseServiceAccount: "${{ env.SERVICE_ACCOUNT_KEY }}" # This line is different than usual !! | ||||||||||
projectId: your-Firebase-project-ID | ||||||||||
channelId: live | ||||||||||
``` | ||||||||||
|
||||||||||
## Options | ||||||||||
|
||||||||||
### `firebaseServiceAccount` _{string}_ (required) | ||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This step seems to be missing
id: auth
otherwise I think${{ steps.auth.outputs.credentials_file_path }}
won't work below.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.