Skip to content

Commit

Permalink
fix 27194 (#27206)
Browse files Browse the repository at this point in the history
  • Loading branch information
sinbai authored Aug 27, 2024
1 parent 208a2df commit 18e6c34
Showing 1 changed file with 7 additions and 17 deletions.
24 changes: 7 additions & 17 deletions website/docs/r/mssql_database.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,6 @@ resource "azurerm_resource_group" "example" {
location = "West Europe"
}
resource "azurerm_storage_account" "example" {
name = "examplesa"
resource_group_name = azurerm_resource_group.example.name
location = azurerm_resource_group.example.location
account_tier = "Standard"
account_replication_type = "LRS"
}
resource "azurerm_mssql_server" "example" {
name = "example-sqlserver"
resource_group_name = azurerm_resource_group.example.name
Expand All @@ -42,15 +34,13 @@ resource "azurerm_mssql_server" "example" {
}
resource "azurerm_mssql_database" "example" {
name = "example-db"
server_id = azurerm_mssql_server.example.id
collation = "SQL_Latin1_General_CP1_CI_AS"
license_type = "LicenseIncluded"
max_size_gb = 4
read_scale = true
sku_name = "S0"
zone_redundant = true
enclave_type = "VBS"
name = "example-db"
server_id = azurerm_mssql_server.example.id
collation = "SQL_Latin1_General_CP1_CI_AS"
license_type = "LicenseIncluded"
max_size_gb = 2
sku_name = "S0"
enclave_type = "VBS"
tags = {
foo = "bar"
Expand Down

0 comments on commit 18e6c34

Please sign in to comment.