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
4 changes: 4 additions & 0 deletions PsLogicAppExtractor/internal/tasks/All/All.task.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2367,6 +2367,10 @@ Task -Name "Set-Arm.Connections.ManagedApis.Storage.BlobOrFile.ListKey.AsArmObje
$armObj.resources[0].properties.parameters.'$connections'.value.PsObject.Properties | ForEach-Object {

if ($_.Value.id -like "*managedApis/azureblob*" -or $_.Value.id -like "*managedApis/azurefile*") {

# This should avoid Managed Identity based connections
if ($_.Value.connectionProperties.authentication.type -eq "ManagedServiceIdentity") { return }

$found = $true

# Fetch the details from the connection object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ Task -Name "Set-Arm.Connections.ManagedApis.Storage.BlobOrFile.ListKey.AsArmObje
$armObj.resources[0].properties.parameters.'$connections'.value.PsObject.Properties | ForEach-Object {

if ($_.Value.id -like "*managedApis/azureblob*" -or $_.Value.id -like "*managedApis/azurefile*") {

# This should avoid Managed Identity based connections
if ($_.Value.connectionProperties.authentication.type -eq "ManagedServiceIdentity") { return }

$found = $true

# Fetch the details from the connection object
Expand Down
Loading