Created
September 6, 2018 06:55
-
-
Save iaingblack/2254370570b827f6abcb34c4126ca1ed to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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