Skip to content

Commit

Permalink
Allow azure services
Browse files Browse the repository at this point in the history
  • Loading branch information
frasermolyneux committed May 21, 2024
1 parent c254c1e commit cc02b22
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions terraform/sql_server.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,11 @@ resource "azurerm_mssql_server" "sql" {

tags = var.tags
}

resource "azurerm_mssql_firewall_rule" "example" {
name = "allowAzureServicesFirewallRule"
server_id = azurerm_mssql_server.sql.id

start_ip_address = "0.0.0.0"
end_ip_address = "0.0.0.0"
}

0 comments on commit cc02b22

Please sign in to comment.