Skip to content

Commit

Permalink
Fix typo in Bigtable IAM docs (GoogleCloudPlatform#5467)
Browse files Browse the repository at this point in the history
Co-authored-by: Kevin Labesse <[email protected]>
  • Loading branch information
2 people authored and betsy-lichtenberg committed Apr 25, 2022
1 parent 6944646 commit 505caa1
Showing 1 changed file with 4 additions and 4 deletions.
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 bigtable tables. Each

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

## google\_bigtable\_instance\_iam\_policy
## google\_bigtable\_table\_iam\_policy

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

## google\_bigtable\_instance\_iam\_binding
## google\_bigtable\_table\_iam\_binding

```hcl
resource "google_bigtable_table_iam_binding" "editor" {
Expand All @@ -52,7 +52,7 @@ resource "google_bigtable_table_iam_binding" "editor" {
}
```

## google\_bigtable\_instance\_iam\_member
## google\_bigtable\_table\_iam\_member

```hcl
resource "google_bigtable_table_iam_member" "editor" {
Expand Down Expand Up @@ -103,7 +103,7 @@ exported:

## Import

Instance IAM resources can be imported using the project, table name, role and/or member.
Table IAM resources can be imported using the project, table name, role and/or member.

```
$ terraform import google_bigtable_table_iam_policy.editor "projects/{project}/tables/{table}"
Expand Down

0 comments on commit 505caa1

Please sign in to comment.