From 215acbe8b8c9005ed1a50ff3da1d878ed1b1c464 Mon Sep 17 00:00:00 2001 From: Naoki Kanatani Date: Wed, 14 Jul 2021 09:32:29 +0900 Subject: [PATCH] Fix import format for snowflake_account_grant (#602) --- docs/resources/account_grant.md | 4 ++-- examples/resources/snowflake_account_grant/import.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/resources/account_grant.md b/docs/resources/account_grant.md index 09cde25591..696cffbf56 100644 --- a/docs/resources/account_grant.md +++ b/docs/resources/account_grant.md @@ -35,6 +35,6 @@ resource snowflake_account_grant grant { Import is supported using the following syntax: ```shell -# format is account name | privilege | true/false for with_grant_option -terraform import snowflake_account_grant.example 'accountName|USAGE|true' +# format is account name | | | privilege | true/false for with_grant_option +terraform import snowflake_account_grant.example 'accountName|||USAGE|true' ``` diff --git a/examples/resources/snowflake_account_grant/import.sh b/examples/resources/snowflake_account_grant/import.sh index 7d40d4ffb3..52c22aaf68 100644 --- a/examples/resources/snowflake_account_grant/import.sh +++ b/examples/resources/snowflake_account_grant/import.sh @@ -1,2 +1,2 @@ -# format is account name | privilege | true/false for with_grant_option -terraform import snowflake_account_grant.example 'accountName|USAGE|true' +# format is account name | | | privilege | true/false for with_grant_option +terraform import snowflake_account_grant.example 'accountName|||USAGE|true'