File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 18
18
- Additional information about change #1
19
19
-->
20
20
## Upcoming Release
21
+ * Added missing check for Set-AzRoleAssignment
21
22
* Added breaking change attribute to ` SubscriptionId ` parameter of ` Get-AzResourceGroupDeploymentOperation `
22
23
* Updated ARM template What-If cmdlets to show "Ignore" resource changes last
23
24
* Fixed secure and array parameter serialization issues for deployment cmdlets [ #12773 ]
Original file line number Diff line number Diff line change @@ -112,8 +112,8 @@ public override void ExecuteCmdlet()
112
112
}
113
113
114
114
// If ConditionVersion is changed, validate it's in the allowed values
115
- var oldConditionVersion = double . Parse ( InputObject . ConditionVersion ) ;
116
- var newConditionVersion = double . Parse ( fetchedRole . ConditionVersion ) ;
115
+ var oldConditionVersion = double . Parse ( InputObject . ConditionVersion ?? "0.0" ) ;
116
+ var newConditionVersion = double . Parse ( fetchedRole . ConditionVersion ?? "2.0" ) ;
117
117
118
118
// A condition version can change but currently we don't support downgrading to 1.0
119
119
// we only verify the change if it's a downgrade
You can’t perform that action at this time.
0 commit comments