File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -183,6 +183,10 @@ commands. The `-T` flag is needed for Linux, but causes problems for MacOS.
1831831 . Rename ` bu1-non-production.auto.example.tfvars ` to ` bu1-non-production.auto.tfvars ` and update the file with values from your environment.
1841841 . Rename ` bu1-production.auto.example.tfvars ` to ` bu1-production.auto.tfvars ` and update the file with values from your environment.
1851851 . Provide the user that will be running ` ./tf-wrapper.sh ` the Service Account Token Creator role to the bu1 project service accounts
186+ 1 . Provide the user permissions to run the terraform locally with the ` serviceAccountTokenCreator ` permission.
187+ ```
188+ gcloud iam service-accounts add-iam-policy-binding $PROJECT_SERVICE_ACCOUNT --project $PROJECT --member="user:$(gcloud auth list --format="value(account)")" --role="roles/iam.serviceAccountTokenCreator"
189+ ```
1861903 . Update ` backend.tf ` with your bucket from the infra pipeline example.
187191 ```
188192 for i in `find -name 'backend.tf'`; do sed -i 's/UPDATE_ME/<YOUR-BUCKET-NAME>/' $i; done
You can’t perform that action at this time.
0 commit comments