Skip to content

Commit

Permalink
Merge pull request #23 from themorey/patch-3
Browse files Browse the repository at this point in the history
make RBH disk configurable
  • Loading branch information
edwardsp authored Dec 14, 2022
2 parents 747d2b4 + fe6be3b commit da1cdd6
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion azuredeploy_template.json
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,13 @@
"description": "The VM type for running Robinhood."
}
},
"rbhDiskSize": {
"defaultValue": 64,
"type": "Int",
"metadata": {
"description": "The Robinhood VM OS Disk Size (in GiB)"
}
},
"useAvailabilityZone": {
"defaultValue": false,
"type": "Bool",
Expand Down Expand Up @@ -366,7 +373,8 @@
"imageReference": "[variables('imageReference')]",
"osDisk": {
"createOption": "FromImage",
"caching": "ReadWrite"
"caching": "ReadWrite",
"diskSizeGB": "[parameters('rbhDiskSize')]"
}
},
"networkProfile": {
Expand Down

0 comments on commit da1cdd6

Please sign in to comment.