我尝试使用ARM模板配置Azure Redis缓存。这是按预期工作的,但我无法指定访问密钥。
通常我使用生成的密钥,这可能是推荐的方式 - 但在这种情况下,我不想在部署中提供密钥(出于某些遗留原因)。
问:是否可以在ARM模板中提供访问密钥?或者我可以使用PowerShell 部署后设置吗?
以下是我的ARM模板的片段:
"resources": [
{
"type": "Microsoft.Cache/Redis",
"name": "[parameters('myRedis_name')]",
"apiVersion": "2016-04-01",
"location": "West Europe",
"tags": {},
"properties": {
"redisVersion": "3.2",
"sku": {
"name": "Standard",
"family": "C",
"capacity": 1
},
"enableNonSslPort": false,
"redisConfiguration": {
"maxclients": "1000",
"maxmemory-reserved": "50",
"maxmemory-delta": "50"
}
},
"resources": [],
"dependsOn": []
},