Skip to content

Instantly share code, notes, and snippets.

@iaingblack
Created September 6, 2018 06:55
Show Gist options
  • Save iaingblack/2254370570b827f6abcb34c4126ca1ed to your computer and use it in GitHub Desktop.
Save iaingblack/2254370570b827f6abcb34c4126ca1ed to your computer and use it in GitHub Desktop.
{
"$schema": "https://raw.githubusercontent.com/mspnp/template-building-blocks/master/schemas/buildingBlocks.json",
"contentVersion": "1.0.0.0",
"parameters": {
"buildingBlocks": {
"value": [
{
"type": "VirtualNetwork",
"resourceGroupName": "RG-Dev-VNET",
"settings": [
{
"name": "dev-vnet",
"addressPrefixes": [
"10.0.0.0/16"
],
"subnets": [
{
"name": "default",
"addressPrefix": "10.0.1.0/24"
}
]
}
]
},
{
"type": "VirtualMachine",
"resourceGroupName": "RG-Dev-VMs",
"settings": {
"vmCount": 1,
"osType": "windows",
"namePrefix": "dev-vm",
"adminUsername": "tutorialAdmin",
"adminPassword": "testPassw0rd!23",
"nics": [
{
"subnetName": "default",
"isPublic": true
}
],
"virtualNetwork": {
"name": "dev-vnet"
}
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment