Skip to content

Commit a6055f7

Browse files
committed
Change the min limit for scale units
1 parent f913ab5 commit a6055f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Network/Network/Cortex/ExpressRouteGateway/NewAzureRmExpressRouteGatewayCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ public class NewAzureRmExpressRouteGatewayCommand : ExpressRouteGatewayBaseCmdle
5353
[Parameter(
5454
Mandatory = true,
5555
HelpMessage = "Min scale units for this ExpressRouteGateway.")]
56-
[ValidateRange(2, 100)]
56+
[ValidateRange(1, 100)]
5757
public uint MinScaleUnits { get; set; }
5858

5959
[Parameter(
6060
Mandatory = false,
6161
HelpMessage = "Max scale units for this ExpressRouteGateway.")]
62-
[ValidateRange(2, 100)]
62+
[ValidateRange(1, 100)]
6363
public uint MaxScaleUnits { get; set; }
6464

6565
[Parameter(

0 commit comments

Comments
 (0)