作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在使用 Microsoft.DBforPostgreSQL/servers
资源和 Azure Bicep,专门使用 this reference 。我缺少参数来设置可从 Azure 资源访问的数据库(请参阅附图)。
我认为 publicNetworkAccess: 'Enabled'
应该可以解决问题,但事实并非如此。有什么想法/建议吗?
谢谢。
最佳答案
可以使用 IP 0.0.0.0
的防火墙规则来编写允许访问 Azure 服务
设置的脚本:
param serverName string
resource server 'Microsoft.DBforPostgreSQL/servers@2017-12-01' existing = {
name: serverName
}
resource allowAllWindowsAzureIps 'Microsoft.DBforPostgreSQL/servers/firewallRules@2017-12-01' = {
name: 'AllowAllWindowsAzureIps' // don't change the name
parent: server
properties: {
endIpAddress: '0.0.0.0'
startIpAddress: '0.0.0.0'
}
}
关于azure - 有没有办法使用 Bicep 在 Microsoft.DBforPostgreSQL/servers 中设置 "Allow access to Azure services"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72433407/
我是一名优秀的程序员,十分优秀!