Skip to content

Commit

Permalink
Merge pull request #7243 from phillipsj/patch-1
Browse files Browse the repository at this point in the history
Found two typos in the example code.
  • Loading branch information
tombuildsstuff committed Jun 8, 2020
2 parents 1b0da11 + 363faaf commit 8cb31e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion website/docs/r/mssql_database.html.markdown
Expand Up @@ -38,9 +38,10 @@ resource "azurerm_sql_server" "example" {
administrator_login = "4dm1n157r470r"
administrator_login_password = "4-v3ry-53cr37-p455w0rd"
}
resource "azurerm_mssql_database" "test" {
name = "acctest-db-%d"
server_id = azurerm_sql_server.test.id
server_id = azurerm_sql_server.example.id
collation = "SQL_Latin1_General_CP1_CI_AS"
license_type = "LicenseIncluded"
max_size_gb = 4
Expand Down

0 comments on commit 8cb31e9

Please sign in to comment.