Skip to content

Commit

Permalink
Merge pull request #9 from avarga77/main
Browse files Browse the repository at this point in the history
[AzureAD] Changed AAD resource name to AzureAD
  • Loading branch information
ykuijs authored Nov 28, 2023
2 parents 8f6b175 + 1edaece commit bfec6d8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Changed AAD resource name to AzureAD

## [0.1.9] - 2023-11-27

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions source/Public/New-CompositeResourceModule.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function New-CompositeResourceModule
}
AppCredentials = @(
@{
Workload = 'AAD'
Workload = 'AzureAD'
ApplicationId = '878459e4-79e4-4f9a-83d6-738c32ddd5c2'
CertThumbprint = '65E427769F27CDA198231B2A7FF03940897FB687'
}
Expand Down Expand Up @@ -177,8 +177,8 @@ function New-CompositeResourceModule
{
{ $_.StartsWith('AAD') }
{
$resourceWorkload = 'AAD'
$customResourceName = $shortResourceName -replace "^$resourceWorkload"
$resourceWorkload = 'AzureAD'
$customResourceName = $shortResourceName -replace "^AAD"
}
{ $_.StartsWith('EXO') }
{
Expand Down
4 changes: 2 additions & 2 deletions tests/Unit/Public/PsdTemplate.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
AppCredentials = @(
@{
ApplicationId = '878459e4-79e4-4f9a-83d6-738c32ddd5c2'
Workload = 'AAD'
Workload = 'AzureAD'
CertThumbprint = '65E427769F27CDA198231B2A7FF03940897FB687'
}
@{
Expand Down Expand Up @@ -64,7 +64,7 @@
CertThumbprint = '65E427769F27CDA198231B2A7FF03940897FB687'
}
)
AAD = @{
AzureAD = @{
Applications = @(
@{
Owners = 'StringArray | Optional'
Expand Down

0 comments on commit bfec6d8

Please sign in to comment.