You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Compute/Compute/ChangeLog.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,12 +22,13 @@
22
22
## Upcoming Release
23
23
* Added image alias 'Win2022AzureEditionCore'
24
24
* Added the `-DisableIntegrityMonitoring` switch parameter to the `New-AzVM` cmdlet.
25
-
Changed the default behavior for `New-AzVM` when these conditions are met:
25
+
Changed the default behavior for `New-AzVM`and `New-AzVmss`when these conditions are met:
26
26
1)`-DisableIntegrityMonitoring` is not true.
27
27
2)`SecurityType` on the SecurityProfile is `TrustedLaunch`.
28
28
3)`VTpmEnabled` on the SecurityProfile is true.
29
29
4)`SecureBootEnabled` on the SecurityProfile is true.
30
30
Now `New-AzVM` will install the `Guest Attestation` extension to the new VM when these conditions are met.
31
+
Now `New-AzVmss` will install the `Guest Attestation` extension to the new Vmss when these conditions are met and installed to all VM instances in the Vmss.
31
32
* Added `-UserAssignedIdentity` and `-FederatedClientId` to the following cmdlets:
### Example 7: Creating a new VM with the GuestAttestation extension installed by default, then recreating the VM with DisableIntegrityMonitoring to prevent this.
# This Vmss and its Vm instances has the GuestAttestation extension installed, and the Identity of SystemAssigned.
236
+
```
237
+
189
238
## PARAMETERS
190
239
191
240
### -AllocationMethod
@@ -877,6 +926,20 @@ Default value: None
877
926
Accept pipeline input: True (ByPropertyName)
878
927
Accept wildcard characters: False
879
928
```
929
+
930
+
### -DisableIntegrityMonitoring
931
+
This flag disables the default behavior to install the Guest Attestation extension to the virtual machine scale set and its vm instances if: 1) SecurityType is TrustedLaunch, 2) SecureBootEnabled on the SecurityProfile is true, 3) VTpmEnabled on the SecurityProfile is true.
0 commit comments