Skip to content

Instantly share code, notes, and snippets.

@rahulsahay19
Created March 25, 2020 08:05
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 rahulsahay19/c11b81b7d9a1f417091342c93c9c9cca to your computer and use it in GitHub Desktop.
Save rahulsahay19/c11b81b7d9a1f417091342c93c9c9cca to your computer and use it in GitHub Desktop.
parameter.json
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"location": {
"value": "eastus"
},
"networkInterfaceName": {
"value": "azvmdemo711"
},
"networkSecurityGroupName": {
"value": "azvmdemo-nsg"
},
"networkSecurityGroupRules": {
"value": [
{
"name": "RDP",
"properties": {
"priority": 300,
"protocol": "TCP",
"access": "Allow",
"direction": "Inbound",
"sourceAddressPrefix": "*",
"sourcePortRange": "*",
"destinationAddressPrefix": "*",
"destinationPortRange": "3389"
}
}
]
},
"subnetName": {
"value": "default"
},
"virtualNetworkName": {
"value": "az300-vnet"
},
"addressPrefixes": {
"value": [
"10.0.0.0/24"
]
},
"subnets": {
"value": [
{
"name": "default",
"properties": {
"addressPrefix": "10.0.0.0/24"
}
}
]
},
"publicIpAddressName": {
"value": "azvmdemo-ip"
},
"publicIpAddressType": {
"value": "Dynamic"
},
"publicIpAddressSku": {
"value": "Basic"
},
"virtualMachineName": {
"value": "azvmdemo"
},
"virtualMachineRG": {
"value": "az300"
},
"osDiskType": {
"value": "Premium_LRS"
},
"virtualMachineSize": {
"value": "Standard_B1ls"
},
"adminUsername": {
"value": "azvmdemo"
},
"adminPassword": {
"value": null
},
"diagnosticsStorageAccountName": {
"value": "az300diag619"
},
"diagnosticsStorageAccountId": {
"value": "Microsoft.Storage/storageAccounts/az300diag619"
},
"diagnosticsStorageAccountType": {
"value": "Standard_LRS"
},
"diagnosticsStorageAccountKind": {
"value": "Storage"
},
"autoShutdownStatus": {
"value": "Enabled"
},
"autoShutdownTime": {
"value": "19: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