Question:
What will happen if you change configuration.ingress.allowInsecure from false to true?
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"properties": {
"configuration": {
"ingress": {
"external": true,
"targetPort": 80,
"allowInsecure": false
}
}
}
}
]
}
Answer:
Changes made to the configuration section are application-scope changes, which does not triggers a new revision, but affects all existing revisions.