diff --git a/MIGRATION_GUIDE.md b/MIGRATION_GUIDE.md index 6a3dc35ee5..0fd26a4223 100644 --- a/MIGRATION_GUIDE.md +++ b/MIGRATION_GUIDE.md @@ -19,6 +19,8 @@ Breaking changes: - `database` and `schema` are right now under `in` field - `row_access_policies` field now organizes output of show under `show_output` field and the output of describe under `describe_output` field. +Please adjust your Terraform configuration files. + ### snowflake_row_access_policy resource changes New fields: - `show_output` field that holds the response from SHOW ROW ACCESS POLICIES. diff --git a/docs/resources/row_access_policy.md b/docs/resources/row_access_policy.md index 17173abf53..c11557428e 100644 --- a/docs/resources/row_access_policy.md +++ b/docs/resources/row_access_policy.md @@ -2,14 +2,14 @@ page_title: "snowflake_row_access_policy Resource - terraform-provider-snowflake" subcategory: "" description: |- - + Resource used to manage row access policy objects. For more information, check row access policy documentation https://docs.snowflake.com/en/sql-reference/sql/create-row-access-policy. --- !> **V1 release candidate** This resource was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the resource if needed. Any errors reported will be resolved with a higher priority. We encourage checking this resource out before the V1 release. Please follow the [migration guide](https://github.com/Snowflake-Labs/terraform-provider-snowflake/blob/main/MIGRATION_GUIDE.md#v0950--v0960) to use it. # snowflake_row_access_policy (Resource) - +Resource used to manage row access policy objects. For more information, check [row access policy documentation](https://docs.snowflake.com/en/sql-reference/sql/create-row-access-policy). ## Example Usage diff --git a/pkg/resources/row_access_policy.go b/pkg/resources/row_access_policy.go index c9fd812af3..afe4d7ba12 100644 --- a/pkg/resources/row_access_policy.go +++ b/pkg/resources/row_access_policy.go @@ -101,6 +101,7 @@ func RowAccessPolicy() *schema.Resource { ReadContext: ReadRowAccessPolicy, UpdateContext: UpdateRowAccessPolicy, DeleteContext: DeleteRowAccessPolicy, + Description: "Resource used to manage row access policy objects. For more information, check [row access policy documentation](https://docs.snowflake.com/en/sql-reference/sql/create-row-access-policy).", Schema: rowAccessPolicySchema, Importer: &schema.ResourceImporter{