Skip to content

Commit

Permalink
Merge pull request #32 from qbeyond/fix/update-category-naming
Browse files Browse the repository at this point in the history
Fix/update category naming
  • Loading branch information
QBY-ChristianHartmann authored May 24, 2024
2 parents 0b1a5e0 + bbf5ee5 commit 75a3e3f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ and this module adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.

### Changed

## [4.0.3]

### Fixed

- fixed mapping of update classifications
-

## [4.0.2]

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@
"recurEvery": "[concat(variables('splitSeverityGroup')[0], 'Month', ' ', variables('splitSeverityGroup')[1],' ', variables('splitSeverityGroup')[2])]",
"startTime": "[concat(substring(variables('splitSeverityGroup')[3], 0, 2), ':', substring(variables('splitSeverityGroup')[3], 2, 2) )]",
"startDateTime": "[concat(parameters('startDate'), ' ', variables('startTime'))]",
"updateClassification": "[map(range(0, sub(length(replace(variables('splitSeverityGroup')[4],'X', '')), 1 )), lambda('i', variables('updateOptions')[substring(replace(variables('splitSeverityGroup')[4],'X',''), lambdaVariables('i'),1 )] )) ]",
"updateClassification": "[map(range(0,length(replace(variables('splitSeverityGroup')[4],'X', ''))), lambda('i', variables('updateOptions')[substring(replace(variables('splitSeverityGroup')[4],'X',''), lambdaVariables('i'),1 )] )) ] ",
"rebootSetting": "[variables('rebootOptions')[variables('splitSeverityGroup')[5]]]",
"uniqueDeploymentName": "[concat('NestedDeploymentName-', uniqueString(deployment().name))]",
"scope": "[concat('Microsoft.Compute/virtualMachines', '/', parameters('vmName'))]",
Expand Down

0 comments on commit 75a3e3f

Please sign in to comment.