diff --git a/src/posts/github-google-workload-identity-federation/README.md b/src/posts/github-google-workload-identity-federation/README.md index c625340..77dec47 100644 --- a/src/posts/github-google-workload-identity-federation/README.md +++ b/src/posts/github-google-workload-identity-federation/README.md @@ -140,12 +140,12 @@ This option gives a bit more flexibility and enables you to have multiple pipeli same Google service account if you want. Below command creates the needed policy binding and binds it to whatever JWT token from the "github" identity pool that -has the `repository` attribute set with a value of `/`. +has the `repository` attribute set with a value of `/`. ```sh gcloud iam service-accounts add-iam-policy-binding $SA_NAME@$G_PROJECT_ID.iam.gserviceaccount.com \ --role roles/iam.workloadIdentityUser \ - --member principalSet://iam.googleapis.com/$POOL_NAME/attribute.repository// + --member principalSet://iam.googleapis.com/$POOL_NAME/attribute.repository// ``` That's it.