Documentation updates.

Fix a sentence in the binding docs, and add docs for members.
This commit is contained in:
Paddy 2017-07-03 21:05:02 -07:00
parent f9236abdf8
commit 8a880fdcf8
3 changed files with 47 additions and 2 deletions

View File

@ -36,8 +36,7 @@ The following arguments are supported:
* `role` - (Required) The role that should be applied. Only one
`google_project_iam_binding` can be used per role.
* `project` - (Optional) The project ID.
Changing this forces a new project to be created. If not specified, uses the
* `project` - (Optional) The project ID. If not specified, uses the
ID of the project configured with the provider.## Attributes Reference
In addition to the arguments listed above, the following computed attributes are

View File

@ -0,0 +1,43 @@
---
layout: "google"
page_title: "Google: google_project_iam_member"
sidebar_current: "docs-google-project-iam-member"
description: |-
Allows management of a single member for a single binding on the IAM policy for a Google Cloud Platform project.
---
# google\_project\_iam\_member
Allows creation and management of a single member for a single binding within
the IAM policy for an existing Google Cloud Platform project.
~> **Note:** This resource _must not_ be used in conjunction with
`google_project_iam_policy` or they will fight over what your policy
should be. Similarly, roles controlled by `google_project_iam_binding`
should not be assigned to using `google_project_iam_member`.
## Example Usage
```hcl
resource "google_project_iam_member" "project" {
project = "your-project-id"
role = "roles/editor"
member = "user:jane@example.com"
}
```
## Argument Reference
The following arguments are supported:
* `member` - (Required) The user that the role should apply to.
* `role` - (Required) The role that should be applied.
* `project` - (Optional) The project ID. If not specified, uses the
ID of the project configured with the provider.## Attributes Reference
In addition to the arguments listed above, the following computed attributes are
exported:
* `etag` - (Computed) The etag of the project's IAM policy.

View File

@ -53,6 +53,9 @@
</li>
<li<%= sidebar_current("docs-google-project-iam-binding") %>>
<a href="/docs/providers/google/r/google_project_iam_binding.html">google_project_iam_binding</a>
</li>
<li<%= sidebar_current("docs-google-project-iam-member") %>>
<a href="/docs/providers/google/r/google_project_iam_member.html">google_project_iam_member</a>
</li>
<li<%= sidebar_current("docs-google-project-iam-policy") %>>
<a href="/docs/providers/google/r/google_project_iam_policy.html">google_project_iam_policy</a>