Skip to content

Commit

Permalink
Refine parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
gbowerman committed Jul 7, 2017
1 parent 8483cd2 commit 5e3c0f1
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 4 deletions.
4 changes: 3 additions & 1 deletion datascience/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# VM scale set based on the Azure Data Science VM
This template creates a VM scale set with a load balancer and public IP address - based on the Azure Data Science VM
This template creates a VM scale set with a load balancer and public IP address - based on the Azure Data Science VM.

The template creates a load balancer and a public IP address. Inbound NAT pools are defined to route incoming connections to the VMs in the set.

Inbound NAT rules are configured as follows:
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"value": 3
},
"adminUsername": {
"value": "ubuntu"
"value": "dsadmin"
},
"adminPassword": {
"value": "GEN-PASSWORD"
Expand Down
21 changes: 21 additions & 0 deletions datascience/azuredeploy-windows.parameters.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"vmSku": {
"value": "Standard_D1_v2"
},
"vmssName": {
"value": "GEN-UNIQUE-8"
},
"instanceCount": {
"value": 3
},
"adminUsername": {
"value": "dsadmin"
},
"adminPassword": {
"value": "GEN-PASSWORD"
}
}
}
4 changes: 2 additions & 2 deletions datascience/metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"itemDisplayName": "Deploy a VM Scale Set from the Azure Data Science VM",
"description": "",
"description": "These templates deploy VM scale sets, using the Azure Data Science VMs as a source image.",
"githubUsername": "gbowerman",
"dateUpdated": "2017-07-06"
"dateUpdated": "2017-07-07"
}

0 comments on commit 5e3c0f1

Please sign in to comment.