Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mgmt, compute support withplan for VMSS #25323

Merged
merged 9 commits into from
Nov 15, 2021
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public void canCreateVMSSWithPlan() {
.withSpecificLinuxImageVersion(imageReference)
.withRootUsername(uname)
.withSsh(sshPublicKey())
.withUnmanagedDisks()
.withNewDataDisk(1)
.withNewStorageAccount(generateRandomResourceName("stg", 15))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think you need the storage account?

.withPlan(plan)
.create();
Expand Down
Loading