Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- N/A

## [0.1.3] - 2025-10-29

### Added

- Added Kusto audience as non custom audience

## [0.1.2] - 2025-08-28

### Added
Expand Down
2 changes: 1 addition & 1 deletion build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Encoding: UTF8
# using GitVersion is not available, and it is not possible to set the session environment
# variable `$env:ModuleVersion`, nor setting the variable `$ModuleVersion`, in the
# PowerShell session (parent scope) before running the task `build`.
SemVer: '0.1.2'
SemVer: '0.1.3'

# Suffix to add to Root module PSM1 after merge (here, the Set-Alias exporting IB tasks)
# suffix: suffix.ps1
Expand Down
6 changes: 5 additions & 1 deletion source/Public/Get-EntraToken.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@

#Scope = Resource + Permission
[parameter(Mandatory)]
[ValidateSet('Keyvault', 'ARM', 'GraphAPI', 'Storage', 'Monitor', 'LogAnalytics', 'PostGreSql', 'EventHUB', 'Custom')] #TODO: valider Graph API not sure it's working
[ValidateSet('Keyvault', 'ARM', 'GraphAPI', 'Storage', 'Monitor', 'LogAnalytics', 'PostGreSql', 'EventHUB', 'Kusto', 'Custom')] #TODO: valider Graph API not sure it's working
[string] $Resource,

[string] $CustomResource = $null, #https:// ... should be used only with Custom Audience like api://<your api>
Expand Down Expand Up @@ -333,6 +333,10 @@
{
$ScopesUri = 'https://eventhubs.azure.net'; break
}
'Kusto'
{
$ScopesUri = 'https://api.kusto.windows.net'; break
}
default
{
$ScopesUri = $CustomResource
Expand Down