Skip to content

Commit 7d5c864

Browse files
authored
Update configuring-cloud-provider.md (#268)
Minor tweaks to GCP docs
1 parent 2009e02 commit 7d5c864

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

pages/reference/configuring-cloud-provider.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,19 @@ When deploying via GCP, you may run into a Terraform error around permissions. P
134134
- `owner`
135135
- `storage.admin`
136136

137+
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
138+
```
139+
> gcloud projects add-iam-policy-binding PROJECT_ID \
140+
--member=user:USER_EMAIL \
141+
--role=roles/owner
142+
```
143+
144+
```
145+
> gcloud projects add-iam-policy-binding PROJECT_ID \
146+
--member=user:USER_EMAIL \
147+
--role=roles/storage.admin
148+
```
149+
137150
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.
138151
{% /tab %}
139152

0 commit comments

Comments
 (0)