Skip to content

Commit 90958ba

Browse files
grizzlytheodoreisra-fel
authored andcommitted
fix default parameter for Placement Feature in New-AzVM (#27858)
1 parent 3efaccc commit 90958ba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Compute/Compute/VirtualMachine/Operation/NewAzureVMCommand.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1161,7 +1161,8 @@ public void DefaultExecuteCmdlet()
11611161
SecurityProfile = this.VM.SecurityProfile,
11621162
CapacityReservation = this.VM.CapacityReservation,
11631163
UserData = this.VM.UserData,
1164-
PlatformFaultDomain = this.VM.PlatformFaultDomain
1164+
PlatformFaultDomain = this.VM.PlatformFaultDomain,
1165+
Placement = this.VM.Placement
11651166
};
11661167

11671168
Dictionary<string, List<string>> auxAuthHeader = null;

0 commit comments

Comments
 (0)