> + variables.put("osDiskName", osDiskName);
> +
> + OSDisk osDisk = OSDisk.builder()
> + .name("[variables('osDiskName')]")
> + .vhd(
> +
> VHD.create("[concat('http://',variables('storageAccountName'),'.blob.core.windows.net/',variables('storageAccountContainerName'),'/',variables('osDiskName'),'.vhd')]")
> + )
> + .caching("ReadWrite")
> + .createOption("FromImage")
> + .build();
> +
> +
> + //Create Data Disk(s) and add to list
> + final String dataDiskName = name + "datadisk";
> + variables.put("dataDiskName", dataDiskName);
> + final String dataDiskSize = "100";
Is this meant to be hardcoded? Would this be extracted from the hardware
profile or a template option?
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/273/files/74f8e9bf66e7427298c5c3c9567aa7d8284e0987#r64480135