Skip to content

Commit

Permalink
docs: Fix escape quotes in database docs (#2527)
Browse files Browse the repository at this point in the history
Fix quote escaping in database resource docs

References: #2078
  • Loading branch information
sfc-gh-asawicki authored Feb 20, 2024
1 parent 76abf21 commit f9ceb20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/database.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ resource "snowflake_database" "from_replica" {
name = "testing_3"
comment = "test comment"
data_retention_time_in_days = 3
from_replica = "org1\".\"account1\".\"primary_db_name"
from_replica = "\"org1\".\"account1\".\"primary_db_name\""
}
resource "snowflake_database" "from_share" {
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/snowflake_database/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resource "snowflake_database" "from_replica" {
name = "testing_3"
comment = "test comment"
data_retention_time_in_days = 3
from_replica = "org1\".\"account1\".\"primary_db_name"
from_replica = "\"org1\".\"account1\".\"primary_db_name\""
}

resource "snowflake_database" "from_share" {
Expand Down

0 comments on commit f9ceb20

Please sign in to comment.