Skip to content

Commit

Permalink
Added Sentinel workload support
Browse files Browse the repository at this point in the history
  • Loading branch information
ykuijs committed Sep 18, 2024
1 parent f4e20bd commit 022a6a8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions source/Public/New-CompositeResourceModule.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 022a6a8

Please sign in to comment.