File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Extension/VmssDiskEncryption Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 22
22
23
23
## Version 2.4.0
24
24
* Add HyperVGeneration parameter to New-AzImageConfig
25
+ * Use the extension type instead of the name when disabling vmss disk encryption
25
26
26
27
## Version 2.3.0
27
28
* New-AzVm and New-AzVmss simple parameter sets now accept the ` ProximityPlacementGroup ` parameter.
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ public override void ExecuteCmdlet()
127
127
bool extensionFound = false ;
128
128
foreach ( var ext in vmss . VirtualMachineProfile . ExtensionProfile . Extensions )
129
129
{
130
- if ( ext . Name . Equals ( this . ExtensionName ) )
130
+ if ( ext . Type . Equals ( this . ExtensionName ) )
131
131
{
132
132
ext . Settings = GetDisalbeEncryptionSetting ( ) ;
133
133
ext . ProtectedSettings = null ;
You can’t perform that action at this time.
0 commit comments