Skip to content

Commit

Permalink
Add Bigtable column_family to the upgrade guide (#439)
Browse files Browse the repository at this point in the history
<!-- This change is generated by MagicModules. -->
/cc @rileykarson
  • Loading branch information
modular-magician authored and rileykarson committed Feb 15, 2019
1 parent b55c062 commit c7d363f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions website/docs/version_2_upgrade.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,29 @@ resource "google_bigtable_instance" "instance" {

`cluster.zone` is now required, even if the provider block has a zone set.

### `cluster_family` has a diff

If you see

```
-/+ google_bigtable_table.my_table (new resource required)
id: "foo" => <computed> (forces new resource)
column_family.#: "1" => "0" (forces new resource)
column_family.123456789.family: "my-family" => ""
instance_name: "bar" => "bar"
name: "foo" => "foo"
project: "my-project" => <computed>
```

Add an appropriate `column_family` block to your config, eg:

```diff
+ column_family {
+ family = "my-family"
+ }
```


## Resource: `google_binary_authorization_attestor`

### binary authorization resources have been removed from the GA provider
Expand Down

0 comments on commit c7d363f

Please sign in to comment.