我使用 .Net 的 Azure 管理库创建 Azure SQL 服务器,我需要添加防火墙规则以允许 Azure 服务访问新服务器(如门户中的交换机)。我目前这样创建服务器
sqlServer = Azure.SqlServers
.Define(serverName)
.WithRegion(region)
.WithExistingResourceGroup(resourceGroup.Name)
.WithAdministratorLogin(AppSettings.SqlServerAdminUser)
.WithAdministratorPassword(AppSettings.SqlServerAdminPassword)
.WithNewFirewallRule("xxx.xxx.xxx.xxx")
.WithNewFirewallRule("xxx.xxx.xxx.xxx", "xxx.xxx.xxx.xxx")
.WithNewElasticPool(poolName, elasticPoolEdition, databaseName)
.Create();
是否有任何我没有发现通常允许 Azure 服务访问此 SQL 服务器的选项?
谢谢!