Skip to content

Commit

Permalink
fix: Add roles and service enablements to bootstrap project (#1175)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael O'Brien <94715080+fmichaelobrien@users.noreply.github.com>
  • Loading branch information
obriensystems and fmichaelobrien committed Apr 26, 2024
1 parent 3bfe601 commit a759ee9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions 0-bootstrap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,20 @@ Set the variables in **terraform.tfvars** (`groups` block) to use the specific g
- The `roles/resourcemanager.projectCreator` role on the Google Cloud organization.
- The `roles/billing.admin` role on the billing account.
- The `roles/resourcemanager.folderCreator` role.
- The `roles/securitycenter.admin` role.

```bash
# example:
gcloud organizations add-iam-policy-binding ${ORG_ID} --member=user:$SUPER_ADMIN_EMAIL --role=roles/securitycenter.admin --quiet > /dev/null 1>&1
```
1. Enable the following additional services on your current bootstrap project:
```bash
gcloud services enable cloudresourcemanager.googleapis.com
gcloud services enable cloudbilling.googleapis.com
gcloud services enable iam.googleapis.com
gcloud services enable cloudkms.googleapis.com
gcloud services enable servicenetworking.googleapis.com
```

### Optional - Automatic creation of Google Cloud Identity groups

Expand Down

0 comments on commit a759ee9

Please sign in to comment.