Skip to content

Commit

Permalink
fix: use correct IAM object admin role (#71)
Browse files Browse the repository at this point in the history
Post-repo-split port of
googleapis/google-cloud-python#10193
  • Loading branch information
tseaver committed Feb 25, 2020
1 parent 6c9296c commit 2e27edd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google/cloud/storage/iam.py
Expand Up @@ -25,7 +25,7 @@
STORAGE_OBJECT_VIEWER_ROLE = "roles/storage.objectViewer"
"""Role implying rights to view object properties, excluding ACLs."""

STORAGE_OBJECT_ADMIN_ROLE = "roles/storage.objectViewer"
STORAGE_OBJECT_ADMIN_ROLE = "roles/storage.objectAdmin"
"""Role implying full control of objects."""

STORAGE_ADMIN_ROLE = "roles/storage.admin"
Expand Down

0 comments on commit 2e27edd

Please sign in to comment.