> + .apiVersion("2015-06-15")
> + .properties(
> + StorageServiceProperties.builder()
> +
> .accountType(StorageService.AccountType.Standard_LRS)
> + .build()
> + )
> + .build();
> +
> + resources.add(storageAccount);
> + }
> +
> + private void addVirtualNetworkResource() {
> + String virtualNetworkName = group + "virtualnetwork";
> + String vnAddresSpacePrefix = "10.0.0.0/16";
> + String subnetName = group + "subnet";
> + String subnetAddressPrefix = "10.0.0.0/24";
Is this range meant to be hardcoded?
---
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#r64480165