Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Groups not supported in acm levels members #1459

Merged
merged 1 commit into from
Dec 3, 2019
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
6 changes: 4 additions & 2 deletions google-beta/resource_access_context_manager_access_level.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,14 @@ If empty, all IP addresses are allowed.`,
"members": {
Type: schema.TypeList,
Optional: true,
Description: `An allowed list of members (users, groups, service accounts).
Description: `An allowed list of members (users, service accounts).
Using groups is not supported yet.

The signed-in user originating the request must be a part of one
of the provided members. If not specified, a request may come
from any user (logged in/not logged in, not present in any
groups, etc.).
Formats: 'user:{emailid}', 'group:{emailid}', 'serviceAccount:{emailid}'`,
Formats: 'user:{emailid}', 'serviceAccount:{emailid}'`,
Elem: &schema.Schema{
Type: schema.TypeString,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,13 @@ The `conditions` block supports:

* `members` -
(Optional)
An allowed list of members (users, groups, service accounts).
An allowed list of members (users, service accounts).
Using groups is not supported yet.
The signed-in user originating the request must be a part of one
of the provided members. If not specified, a request may come
from any user (logged in/not logged in, not present in any
groups, etc.).
Formats: `user:{emailid}`, `group:{emailid}`, `serviceAccount:{emailid}`
Formats: `user:{emailid}`, `serviceAccount:{emailid}`

* `negate` -
(Optional)
Expand Down