Question:
What will happen if you change template.scale.maxReplicas from 3 to 5?
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"properties": {
"template": {
"scale": {
"minReplicas": 1,
"maxReplicas": 3
}
}
}
}
]
}
Answer:
Changes made to the template section are revision-scope changes, which triggers a new revision. The changes are limited to the revision in which they're deployed, and don't affect other revisions.