作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想要部署一个包含来自另一个资源组的 AzureStorageAccount 连接字符串的 AzureKeyVault。我知道如果 AzureKeyVault 和 AzureStorageAccount 位于同一资源组中,您可以执行此操作,如下所示:
"resources": [
{
"type": "Microsoft.KeyVault/vaults/secrets",
"name": "secretName",
"properties": {
"value": "[concat('DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=', 'StorageAccountName', ';AccountKey=', first(listKeys(resourceId('Microsoft.Storage/storageAccounts', 'StorageAccountName'), variables('storageApiVersion')).keys).value)]"
},
"dependsOn": []
},
{
"type": "Microsoft.Storage/storageAccounts",
"name": "StorageAccountName",
...
},
{
"type": "Microsoft.KeyVault/vaults",
"name": "KeyVaultName",
...
}
]
我的问题是如何更改此设置以从已部署的不同资源组获取连接字符串?
最佳答案
使用resourceId()
函数的内置功能:
resourceId(%different_rg_name%, 'Microsoft.Storage/storageAccounts', 'StorageAccountName')
关于Azure 资源管理器模板 : How to get connection string for a resource in a different ResourceGroup?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58142358/
我是一名优秀的程序员,十分优秀!