diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d6b809..3d10d71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + +- Added support for the new Sentinel workload + ## [0.1.18] - 2024-09-09 ### Added diff --git a/source/Public/New-CompositeResourceModule.ps1 b/source/Public/New-CompositeResourceModule.ps1 index 78b46ea..2d5e1cc 100644 --- a/source/Public/New-CompositeResourceModule.ps1 +++ b/source/Public/New-CompositeResourceModule.ps1 @@ -189,6 +189,11 @@ function New-CompositeResourceModule $resourceWorkload = 'SecurityCompliance' $customResourceName = $shortResourceName -replace '^SC' } + { $_.StartsWith('Sentinel') } + { + $resourceWorkload = 'Sentinel' + $customResourceName = $shortResourceName -replace "^$resourceWorkload" + } { $_.StartsWith('SPO') } { $resourceWorkload = 'SharePoint'