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

(Upstream PR) wrong argument reference bigtable_gc_policy #4964

Closed
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
5 changes: 3 additions & 2 deletions website/docs/r/bigtable_gc_policy.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ resource "google_bigtable_gc_policy" "policy" {
```

Multiple conditions is also supported. `UNION` when any of its sub-policies apply (OR). `INTERSECTION` when all its sub-policies apply (AND)

```hcl
resource "google_bigtable_gc_policy" "policy" {
instance_name = google_bigtable_instance.instance.name
Expand All @@ -70,11 +71,11 @@ resource "google_bigtable_gc_policy" "policy" {

The following arguments are supported:

* `name` - (Required) The name of the table.
* `table` - (Required) The name of the table.

* `instance_name` - (Required) The name of the Bigtable instance.

* `family` - (Required) The name of the column family.
* `column_family` - (Required) The name of the column family.

* `project` - (Optional) The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Expand Down