Examples/02-Get-EligibleTargets.ps1
|
#Requires -Module psSCA <# Lists cloud targets the current identity is eligible to elevate access to, across all three supported providers. #> foreach ($provider in 'AWS', 'Azure', 'GCP') { Write-Host "== $provider ==" Get-SCAEligibleTarget -Provider $provider } |