Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ infrastructure or services should run in this project.
1. Create a Cloud Storage bucket:

```text
gsutil mb -p ${PROJECT_ID} gs://${BUCKET_ID}
gsutil versioning set on gs://${BUCKET_ID}
gcloud storage buckets create --project ${PROJECT_ID} gs://${BUCKET_ID}
gcloud storage buckets update --versioning gs://${BUCKET_ID}
```

1. Create a Cloud KMS key:
Expand Down
6 changes: 3 additions & 3 deletions doc/custom-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ secrets:
using the Google Cloud Console from the web.

```text
gsutil mb -p ${PROJECT_ID} gs://${BUCKET_ID}
gcloud storage buckets create gs://${BUCKET_ID} --project ${PROJECT_ID}
```

**It is strongly recommended that you create a new bucket instead of using
Expand All @@ -69,11 +69,11 @@ secrets:
1. Set the default ACL permissions on the bucket to private:

```text
gsutil defacl set private gs://${BUCKET_ID}
gcloud storage buckets update gs://${BUCKET_ID} --predefined-default-object-acl=private
```

```text
gsutil acl set private gs://${BUCKET_ID}
gcloud storage buckets update gs://${BUCKET_ID} --predefined-acl=private
```

The default permissions grant anyone with Owner/Editor access on the project
Expand Down
Loading