Skip to content

Instantly share code, notes, and snippets.

@arunksingh16
Last active November 9, 2020 19:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arunksingh16/16ed00e78134deff44e3851fc61fad53 to your computer and use it in GitHub Desktop.
Save arunksingh16/16ed00e78134deff44e3851fc61fad53 to your computer and use it in GitHub Desktop.
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"location": {
"value": "eastus"
},
"networkInterfaceName": {
"value": "node-1941"
},
"subnetName": {
"value": "<subnet-name>"
},
"virtualNetworkId": {
"value": "/subscriptions/<subscription-id>/resourceGroups/rg-devops/providers/Microsoft.Network/virtualNetworks/<vnet-name>"
},
"publicIpAddressName": {
"value": "node-1-ip"
},
"publicIpAddressType": {
"value": "Dynamic"
},
"publicIpAddressSku": {
"value": "Basic"
},
"virtualMachineName": {
"value": "<vm-name>"
},
"virtualMachineComputerName": {
"value": "<vm-hostname>"
},
"virtualMachineRG": {
"value": "<rg-name>"
},
"osDiskType": {
"value": "Premium_LRS"
},
"virtualMachineSize": {
"value": "Standard_B1s"
},
"adminUsername": {
"value": "dev"
},
"adminPassword": {
"value": null
},
"autoShutdownStatus": {
"value": "Enabled"
},
"autoShutdownTime": {
"value": "23:00"
},
"autoShutdownTimeZone": {
"value": "UTC"
},
"autoShutdownNotificationStatus": {
"value": "Disabled"
},
"autoShutdownNotificationLocale": {
"value": "en"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment