Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Azure/azure-quickstart-templates
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: Surveily/azure-quickstart-templates
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 5 commits
  • 3 files changed
  • 1 contributor

Commits on Feb 15, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    121dd0c View commit details
  2. Update azuredeploy.json

    turowicz authored Feb 15, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8b3f586 View commit details
  3. Update azuredeploy.json

    turowicz authored Feb 15, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6eb6920 View commit details
  4. Update azuredeploy.json

    turowicz authored Feb 15, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    68cb109 View commit details
  5. Update README.md

    turowicz authored Feb 15, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    1518076 View commit details
Showing with 14 additions and 3 deletions.
  1. +1 −1 201-vmss-public-ip-linux/README.md
  2. +10 −2 201-vmss-public-ip-linux/azuredeploy.json
  3. +3 −0 201-vmss-public-ip-linux/azuredeploy.parameters.json
2 changes: 1 addition & 1 deletion 201-vmss-public-ip-linux/README.md
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
![Best Practice Check](https://azurequickstartsservice.blob.core.windows.net/badges/201-vmss-public-ip-linux/BestPracticeResult.svg)
![Cred Scan Check](https://azurequickstartsservice.blob.core.windows.net/badges/201-vmss-public-ip-linux/CredScanResult.svg)

[![Deploy To Azure](https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/1-CONTRIBUTION-GUIDE/images/deploytoazure.svg?sanitize=true)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2F201-vmss-public-ip-linux%2Fazuredeploy.json) [![Visualize](https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/1-CONTRIBUTION-GUIDE/images/visualizebutton.svg?sanitize=true)](http://armviz.io/#/?load=https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2F201-vmss-public-ip-linux%2Fazuredeploy.json)
[![Deploy To Azure](https://raw.githubusercontent.com/Surveily/azure-quickstart-templates/master/1-CONTRIBUTION-GUIDE/images/deploytoazure.svg?sanitize=true)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FSurveily%2Fazure-quickstart-templates%2Fmaster%2F201-vmss-public-ip-linux%2Fazuredeploy.json) [![Visualize](https://raw.githubusercontent.com/Surveily/azure-quickstart-templates/master/1-CONTRIBUTION-GUIDE/images/visualizebutton.svg?sanitize=true)](http://armviz.io/#/?load=https%3A%2F%2Fraw.githubusercontent.com%2FSurveily%2Fazure-quickstart-templates%2Fmaster%2F201-vmss-public-ip-linux%2Fazuredeploy.json)

This template deploys a simple VM Scale Set of Ubuntu 16.04-LTS VMs and assigns a public IP address to each one. With this scale set you can connect directly to the public IP addresses, or indirectly to the scale set VM private IP addresses using the load balancer inbound NAT rules:

12 changes: 10 additions & 2 deletions 201-vmss-public-ip-linux/azuredeploy.json
Original file line number Diff line number Diff line change
@@ -16,6 +16,13 @@
},
"maxLength": 9
},
"diskSize": {
"type": "int",
"metadata": {
"description": "OS disk size."
},
"maxValue": 1023
},
"instanceCount": {
"type": "int",
"metadata": {
@@ -68,7 +75,7 @@
"osType": {
"publisher": "Canonical",
"offer": "UbuntuServer",
"sku": "16.04-LTS",
"sku": "18.04-LTS",
"version": "latest"
},
"imageReference": "[variables('osType')]",
@@ -184,7 +191,8 @@
"storageProfile": {
"osDisk": {
"caching": "ReadOnly",
"createOption": "FromImage"
"createOption": "FromImage",
"diskSizeGB": "[parameters('diskSize')]"
},
"imageReference": "[variables('imageReference')]"
},
3 changes: 3 additions & 0 deletions 201-vmss-public-ip-linux/azuredeploy.parameters.json
Original file line number Diff line number Diff line change
@@ -16,6 +16,9 @@
},
"adminPasswordOrKey": {
"value": "GEN-SSH-PUB-KEY"
},
"diskSize": {
"value": 256
}
}
}