Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MCKLMT committed Aug 11, 2020
1 parent 5363bd4 commit 0f5dfb6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions 101-application-gateway-create/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"virtualNetworkName": {
"type": "string",
"metadata": {
"description": "virtual network name"
"description": "Virtual Network name"
}
},
"vnetAddressPrefix": {
"type": "string",
"defaultValue": "10.0.0.0/16",
"metadata": {
"description": "virtual network address range"
"description": "Virtual Network address range"
}
},
"subnetName": {
Expand All @@ -33,7 +33,7 @@
"type": "string",
"defaultValue": "applicationGateway1",
"metadata": {
"description": "application gateway name"
"description": "Application Gateway name"
}
},
"applicationGatewaySize": {
Expand All @@ -45,7 +45,7 @@
],
"defaultValue": "Standard_Small",
"metadata": {
"description": "application gateway size"
"description": "Application Gateway size"
}
},
"applicationGatewayInstanceCount": {
Expand All @@ -64,21 +64,21 @@
],
"defaultValue": 2,
"metadata": {
"description": "application gateway instance count"
"description": "Application Gateway instance count"
}
},
"frontendPort": {
"type": "int",
"defaultValue": 80,
"metadata": {
"description": "application gateway front end port"
"description": "Application Gateway front end port"
}
},
"backendPort": {
"type": "int",
"defaultValue": 80,
"metadata": {
"description": "application gateway back end port"
"description": "Application Gateway back end port"
}
},
"backendIPAddresses": {
Expand All @@ -92,7 +92,7 @@
}
],
"metadata": {
"description": "back end pool ip addresses"
"description": "Backend pool ip addresses"
}
},
"cookieBasedAffinity": {
Expand All @@ -103,7 +103,7 @@
],
"defaultValue": "Disabled",
"metadata": {
"description": "cookie based affinity"
"description": "Cookie based affinity"
}
},
"location": {
Expand Down
6 changes: 3 additions & 3 deletions 101-application-gateway-create/azuredeploy.parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
"contentVersion": "1.0.0.0",
"parameters": {
"virtualNetworkName": {
"value": "yourvnetname"
"value": "GEN-UNIQUE"
},
"vnetAddressPrefix": {
"value": "10.0.0.0/16"
},
"subnetName": {
"value": "yoursubnet"
"value": "GEN-UNIQUE"
},
"subnetPrefix": {
"value": "10.0.0.0/24"
},
"applicationGatewayName": {
"value": "yourappgateway"
"value": "GEN-UNIQUE"
},
"applicationGatewaySize": {
"value": "Standard_Small"
Expand Down

0 comments on commit 0f5dfb6

Please sign in to comment.