Skip to content

Commit

Permalink
add max bound for application gateway autoscale config (Azure#4996) (A…
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-evseev authored and AnuTalluri committed Feb 6, 2019
1 parent b1e3bd6 commit 15b2b80
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2100,11 +2100,18 @@
"ApplicationGatewayAutoscaleConfiguration": {
"properties": {
"minCapacity": {
"type": "integer",
"format": "int32",
"minimum": 0,
"exclusiveMinimum": false,
"description": "Lower bound on number of Application Gateway capacity"
},
"maxCapacity": {
"type": "integer",
"format": "int32",
"minimum": 2,
"exclusiveMinimum": false,
"description": "Lower bound on number of Application Gateway instances"
"description": "Upper bound on number of Application Gateway capacity"
}
},
"required": [
Expand Down

0 comments on commit 15b2b80

Please sign in to comment.