ARO-RP/deploy/rp-production-global-acr-re...

26 строки
809 B
JSON

{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"acrResourceId": {
"type": "string"
},
"fullDeploy": {
"type": "bool",
"defaultValue": false
},
"location": {
"type": "string"
}
},
"resources": [
{
"name": "[concat(substring(parameters('acrResourceId'), add(lastIndexOf(parameters('acrResourceId'), '/'), 1)), '/', parameters('location'))]",
"type": "Microsoft.ContainerRegistry/registries/replications",
"location": "[parameters('location')]",
"condition": "[parameters('fullDeploy')]",
"apiVersion": "2019-05-01"
}
]
}