Skip to content

Commit

Permalink
Update configuring-cloud-provider.md (#268)
Browse files Browse the repository at this point in the history
Minor tweaks to GCP docs
  • Loading branch information
rjft authored May 14, 2024
1 parent 2009e02 commit 7d5c864
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pages/reference/configuring-cloud-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,19 @@ When deploying via GCP, you may run into a Terraform error around permissions. P
- `owner`
- `storage.admin`

You can fix this with the following CLI commands updating `PROJECT_ID` with your GCP Project ID and `USER_EMAIL` with your GCP service account ID
```
> gcloud projects add-iam-policy-binding PROJECT_ID \
--member=user:USER_EMAIL \
--role=roles/owner
```

```
> gcloud projects add-iam-policy-binding PROJECT_ID \
--member=user:USER_EMAIL \
--role=roles/storage.admin
```

Follow [these steps](https://cloud.google.com/sdk/docs/authorizing#authorize_with_a_service_account) to authorize your GCloud CLI with a new or existing Service Account.
{% /tab %}

Expand Down

0 comments on commit 7d5c864

Please sign in to comment.