Skip to content

Commit

Permalink
Merge branch 'main' into feature/add-external-tables-to-streams
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-swinkler authored Jun 3, 2022
2 parents 6b46356 + e1e23b9 commit 9cc539d
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,51 @@ It runs a script generated by [godownloader](https://github.com/goreleaser/godow

You can also just download a binary from our [releases](https://github.com/Snowflake-Labs/terraform-provider-snowflake/releases) and follow the [Terraform directions for installing 3rd party plugins](https://www.terraform.io/docs/configuration/providers.html#third-party-plugins).

### Upgrading from CZI Provider
As of (5/25/2022) to provider has been transferred from CZI to Snowflake-Labs. To upgrade from CZI, please run the following command:

```shell
terraform state replace-provider chanzuckerberg/snowflake Snowflake-Labs/snowflake
```

You should also update your lock file / Terraform provider version pinning. From the deprecated source:

```hcl
# deprecated source
terraform {
required_version = ">= 1.1.7"
required_providers {
snowflake = {
source = "chanzuckerberg/snowflake"
version = "0.32.0"
}
}
}
```

To new source:

```hcl
# new source
terraform {
required_version = ">= 1.1.7"
required_providers {
snowflake = {
source = "Snowflake-Labs/snowflake"
version = "0.32.0"
}
}
}
```
If you are not pinning your provider versions, you may find it useful to forcefully upgrade providers using the command:
```
terraform init -upgrade
```

>**Note**: 0.34 is the first version published after the transfer. When the provider was transferred over not all releases were transferred for some reason. Only versions 0.28 and newer were transferred.
### For Terraform v0.13+ users

> We are now (7/29/2021) using Terraform 0.13 for testing purposes due to an issue for data sources for versions <0.13. Related PR for this change [here](https://github.com/Snowflake-Labs/terraform-provider-snowflake/pull/622#issuecomment-888879621).
Expand Down

0 comments on commit 9cc539d

Please sign in to comment.