【发布时间】:2021-01-31 19:46:30
【问题描述】:
我有一个 ARM 模板,用于创建存储帐户和密钥保管库:
...
{
"apiVersion": "2019-04-01",
"type": "Microsoft.Storage/storageAccounts",
"name": "mystorageaccountname",
"location": "canadacentral",
"sku": {
"name": "Standard_LRS"
},
"kind": "StorageV2",
"properties": {
"supportsHttpsTrafficOnly": true
}
}
...
...
{
"apiVersion": "2019-09-01",
"type": "Microsoft.KeyVault/vaults",
"name": "mykeyvault",
"location": "canadacentral",
"properties": {
"tenantId": "[subscription().tenantId]",
"sku": {
"family": "A",
"name": "standard"
},
"accessPolicies": []
}
}
...
我想要我的Key Vault to manage the storage account。对我来说不幸的是,到目前为止我拥有的found examples 是 Powershell 脚本。
在ARM template documentation 中,我不清楚如何实现这样的事情。
问题
如何在 ARM 模板中配置密钥保管库来管理存储帐户?
【问题讨论】:
标签: azure azure-resource-manager azure-keyvault arm-template