Azure Database SQL Virtual Network Rule

This page shows how to write Terraform and Azure Resource Manager for Database SQL Virtual Network Rule and write them securely.

azurerm_sql_virtual_network_rule (Terraform)

The SQL Virtual Network Rule in Database can be configured in Terraform with the resource name azurerm_sql_virtual_network_rule. The following sections describe 2 examples of how to use the resource and its parameters.

Example Usage from GitHub

sqlserver.tf#L51
resource "azurerm_sql_virtual_network_rule" "allow_aks" {
  name                = local.sql_firewall_allow_aks_subnet
  resource_group_name = azurerm_resource_group.spoke.name
  server_name         = azurerm_sql_server.sql.name
  subnet_id           = azurerm_subnet.aks.id
}
sqlserver.tf#L51
resource "azurerm_sql_virtual_network_rule" "allow_aks" {
  name                = local.sql_firewall_allow_aks_subnet
  resource_group_name = azurerm_resource_group.spoke.name
  server_name         = azurerm_sql_server.sql.name
  subnet_id           = azurerm_subnet.aks.id
}

Review your Terraform file for Azure best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Allows you to add, update, or remove an Azure SQL server to a subnet of a virtual network.

Tips: Best Practices for The Other Azure Database Resources

In addition to the azurerm_mariadb_firewall_rule, Azure Database has the other resources that should be configured for security reasons. Please check some examples of those resources and precautions.

risk-label

azurerm_mariadb_firewall_rule

Ensure database firewalls do not permit public access

It is better to restrict IP address ranges that can access the database by firewall rules. If both start_ip_address and end_ip_address are set to 0.0.0.0, it blocks connections from the Internet and accepts connections from all Azure datacenter IP addresses.

risk-label

azurerm_mariadb_server

Ensure that access to Azure SQL Database is restricted

It is better to disable public access to the database to avoid unwilling communications with unknown services if not required.

risk-label

azurerm_mssql_database_extended_auditing_policy

Ensure to configure retention periods of database auditing to enough duration

It is better to configure retention periods of database auditing to enough duration. It would be better to set greater than at least 90 days.

risk-label

azurerm_mssql_server

Ensure to enable auditing on Azure SQL databases

It is better to enable auditing on Azure SQL databases. It helps you maintain regulatory compliance, monitor the activities indicating unexpected incidents or suspected security violations.

risk-label

azurerm_mssql_server_security_alert_policy

Ensure to configure at least one email address for threat alerts

It is better to configure at least one email address for threat alerts. SQL Server is able to send alerts for threat detection via emails and it could support us to notice the incident on time.

risk-label

azurerm_mysql_firewall_rule

Ensure database firewalls do not permit public access

It is better to restrict IP address ranges that can access the database by firewall rules. If both start_ip_address and end_ip_address are set to 0.0.0.0, it blocks connections from the Internet and accepts connections from all Azure datacenter IP addresses.

risk-label

azurerm_mysql_server

Ensure to disable public access to database

It is better to disable public access to the database to avoid unwilling communications with unknown services if not required.

risk-label

azurerm_postgresql_firewall_rule

Ensure database firewalls do not permit public access

It is better to restrict IP address ranges that can access the database by firewall rules. If both start_ip_address and end_ip_address are set to 0.0.0.0, it blocks connections from the Internet and accepts connections from all Azure datacenter IP addresses.

risk-label

azurerm_postgresql_server

Ensure to disable public access to database

It is better to disable public access to the database to avoid unwilling communications with unknown services if not required.

risk-label

azurerm_sql_firewall_rule

Ensure database firewalls do not permit public access

It is better to restrict IP address ranges that can access the database by firewall rules. If both start_ip_address and end_ip_address are set to 0.0.0.0, it blocks connections from the Internet and accepts connections from all Azure datacenter IP addresses.

risk-label

azurerm_sql_server

Ensure to enable auditing on Azure SQL databases

It is better to enable auditing on Azure SQL databases. It helps you maintain regulatory compliance, monitor the activities indicating unexpected incidents or suspected security violations.

Review your Azure Database settings

In addition to the above, there are other security points you should be aware of making sure that your .tf files are protected in Shisho Cloud.

Microsoft.Sql/servers/virtualNetworkRules (Azure Resource Manager)

The servers/virtualNetworkRules in Microsoft.Sql can be configured in Azure Resource Manager with the resource name Microsoft.Sql/servers/virtualNetworkRules. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

VirtualNetworkRulesList.json#L16
                    "type": "Microsoft.Sql/servers/virtualNetworkRules",
                    "properties": {
                        "ignoreMissingVnetServiceEndpoint": false,
                        "state": "Ready",
                        "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet"
                    }
VirtualNetworkRulesList.json#L16
                    "type": "Microsoft.Sql/servers/virtualNetworkRules",
                    "properties": {
                        "ignoreMissingVnetServiceEndpoint": false,
                        "state": "Ready",
                        "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet"
                    }
VirtualNetworkRulesCreateOrUpdate.json#L20
              "type": "Microsoft.Sql/servers/virtualNetworkRules",
              "properties": {
                "ignoreMissingVnetServiceEndpoint": false,
                "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet"
              }
          }
VirtualNetworkRulesList.json#L16
                    "type": "Microsoft.Sql/servers/virtualNetworkRules",
                    "properties": {
                        "ignoreMissingVnetServiceEndpoint": false,
                        "state": "Ready",
                        "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet"
                    }
VirtualNetworkRulesList.json#L16
                    "type": "Microsoft.Sql/servers/virtualNetworkRules",
                    "properties": {
                        "ignoreMissingVnetServiceEndpoint": false,
                        "state": "Ready",
                        "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet"
                    }
VirtualNetworkRulesCreateOrUpdate.json#L20
              "type": "Microsoft.Sql/servers/virtualNetworkRules",
              "properties": {
                "ignoreMissingVnetServiceEndpoint": false,
                "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet"
              }
          }
VirtualNetworkRulesCreateOrUpdate.json#L20
              "type": "Microsoft.Sql/servers/virtualNetworkRules",
              "properties": {
                "ignoreMissingVnetServiceEndpoint": false,
                "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet"
              }
          }
VirtualNetworkRulesCreateOrUpdate.json#L20
              "type": "Microsoft.Sql/servers/virtualNetworkRules",
              "properties": {
                "ignoreMissingVnetServiceEndpoint": false,
                "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet"
              }
          }
azuredeploy.json#L230
          "type": "Microsoft.Sql/servers/virtualNetworkRules",
          "name": "[concat(parameters('sqlServerName'), '/', parameters('sqlVnetRuleName'))]",
          "apiVersion": "2015-05-01-preview",
          "scale": null,
          "properties": {
            "virtualNetworkSubnetId": "[resourceId(parameters('vnetResourceGroupName'), 'Microsoft.Network/virtualNetworks/subnets', parameters('vnetName'), parameters('sqlSubnetName'))]"
VirtualNetworkRulesList.json#L16
                    "type": "Microsoft.Sql/servers/virtualNetworkRules",
                    "properties": {
                        "ignoreMissingVnetServiceEndpoint": false,
                        "state": "Ready",
                        "virtualNetworkSubnetId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet"
                    }

Frequently asked questions

What is Azure Database SQL Virtual Network Rule?

Azure Database SQL Virtual Network Rule is a resource for Database of Microsoft Azure. Settings can be wrote in Terraform.

Where can I find the example code for the Azure Database SQL Virtual Network Rule?

For Terraform, the fortunkam/aks-private-cluster-landing-zone and fortunkam/aks-secure-baseline source code examples are useful. See the Terraform Example section for further details.

For Azure Resource Manager, the shawns1/shawns1CI, sanjaypavan/OldAzure-Rest-API and shawns1/shawns1CI source code examples are useful. See the Azure Resource Manager Example section for further details.