Skip to content

Commit

Permalink
Use non-authoritative IAM policy (#3903)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored and danawillow committed Jun 24, 2019
1 parent 91701ee commit 0a3ae99
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions website/docs/r/logging_organization_sink.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,10 @@ resource "google_storage_bucket" "log-bucket" {
name = "organization-logging-bucket"
}
resource "google_project_iam_binding" "log-writer" {
resource "google_project_iam_member" "log-writer" {
role = "roles/storage.objectCreator"
members = [
"${google_logging_organization_sink.my-sink.writer_identity}",
]
member = "${google_logging_organization_sink.my-sink.writer_identity}"
}
```

Expand Down

0 comments on commit 0a3ae99

Please sign in to comment.