Skip to content

Commit

Permalink
adds import documentation for sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
jtzero committed Mar 14, 2022
1 parent d51241b commit 4f36896
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/resources/sequence.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,11 @@ resource "snowflake_sequence" "test_sequence" {
- **fully_qualified_name** (String) The fully qualified name of the sequence.
- **next_value** (Number) The next value the sequence will provide.

## Import

Import is supported using the following syntax:

```shell
# format is database name | schema name | sequence name
terraform import snowflake_sequence.example 'dbName|schemaName|sequenceName'
```
2 changes: 2 additions & 0 deletions examples/resources/snowflake_sequence/import.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# format is database name | schema name | sequence name
terraform import snowflake_sequence.example 'dbName|schemaName|sequenceName'

0 comments on commit 4f36896

Please sign in to comment.