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

Use correct headers: should refer to dataproc, not pubsub #7672

Closed
wants to merge 1 commit into from
Closed
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: 3 additions & 3 deletions website/docs/r/dataproc_cluster_iam.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Three different resources help you manage IAM policies on dataproc clusters. Eac

~> **Note:** `google_dataproc_cluster_iam_binding` resources **can be** used in conjunction with `google_dataproc_cluster_iam_member` resources **only if** they do not grant privilege to the same role.

## google\_pubsub\_subscription\_iam\_policy
## google\_dataproc\_cluster\_iam\_policy

```hcl
data "google_iam_policy" "admin" {
Expand All @@ -39,7 +39,7 @@ resource "google_dataproc_cluster_iam_policy" "editor" {
}
```

## google\_pubsub\_subscription\_iam\_binding
## google\_dataproc\_cluster\_iam\_binding

```hcl
resource "google_dataproc_cluster_iam_binding" "editor" {
Expand All @@ -51,7 +51,7 @@ resource "google_dataproc_cluster_iam_binding" "editor" {
}
```

## google\_pubsub\_subscription\_iam\_member
## google\_dataproc\_cluster\_iam\_member

```hcl
resource "google_dataproc_cluster_iam_member" "editor" {
Expand Down