Skip to content

Commit

Permalink
Updating mssql firewall resource to supported resource type
Browse files Browse the repository at this point in the history
  • Loading branch information
twerthi committed Aug 27, 2024
1 parent 3eccd4c commit ebdc64f
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,9 @@ resource "azurerm_mssql_virtual_network_rule" "permanent" {
subnet_id = azurerm_subnet.default.id
}

resource "azurerm_sql_firewall_rule" "all_azure_resources" {
resource "azurerm_mssql_firewall_rule" "all_azure_resources" {
server_id = azurerm_mssql_server.permanent.id
name = "all-azure-resources"
resource_group_name = azurerm_resource_group.permanent.name
server_name = azurerm_mssql_server.permanent.name
start_ip_address = "0.0.0.0"
end_ip_address = "0.0.0.0"
}

0 comments on commit ebdc64f

Please sign in to comment.