> + }
> + return !deployments.isEmpty();
> + }
> + }, azureComputeConstants.operationTimeout(), 1, SECONDS).apply(name)) {
> + final String illegalStateExceptionMessage = format("Deployment %s
> was not created within %sms so it will be destroyed.",
> + name, azureComputeConstants.operationTimeout());
> + logger.warn(illegalStateExceptionMessage);
> +
> + throw new IllegalStateException(illegalStateExceptionMessage);
> + }
> +
> + final VMDeployment deployment = deployments.iterator().next();
> +
> +
> + return new NodeAndInitialCredentials<VMDeployment>(deployment, name,
> +
> LoginCredentials.builder().user(loginUser).identity(loginUser).password(loginPassword).authenticateSudo(true).build());
Does azure support users configuring the login (via the jclouds template
options) with SSH keys?
---
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/267/files/bae5d6dfcdb26e31057db4551c5996836666a31b#r63964631