ARO-RP/deploy/rp-production-managed-ident...

20 строки
592 B
JSON

{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"fullDeploy": {
"type": "bool",
"defaultValue": false
}
},
"resources": [
{
"location": "[resourceGroup().location]",
"name": "[concat('aro-rp-', resourceGroup().location)]",
"type": "Microsoft.ManagedIdentity/userAssignedIdentities",
"condition": "[parameters('fullDeploy')]",
"apiVersion": "2018-11-30"
}
]
}