我正在编写一个自动创建 PostgreSQL 数据库的 Azure 资源管理器模板。我已成功添加防火墙规则,其中包含以下内容:
{
"type": "firewallRules"
"apiVersion": "2017-12-01",
"dependsOn": [
"[concat('Microsoft.DBforPostgreSQL/servers/', variables('serverName'))]"
],
"location": "[parameters('location')]",
"name": "[concat(variables('serverName'),'firewall')]",
"properties": {
"startIpAddress": "[parameters('firewallStartIpAddress')]",
"endIpAddress": "[parameters('firewallEndIpAddress')]"
}
}
但是,如果我想添加 VNET 规则怎么办?在此处的文档中似乎没有提到这一点。
我对此进行了研究并发现了此文档,但它与“Microsoft.Sql”资源有关,而不是“Microsoft.DBforPostgreSQL”资源。