azure:qnd:azure_powershell

This is an old revision of the document!


Azure Powershell (QnD)

Common Commands

Authenticate with Azure, list subscriptions for tenants and select a subscription to work with.

Connect-AzAccount
 
Get-AzSubscription
 
Select-AzSubscription -SubscriptionId <id>

This shows subscription and tenant info for current connections.

Get-AzContext -ListAvailable | fl
Set-AzContext -Tenant "xyz"
Set-AzContext -Subscription "xyz"

Loop Over All Subscriptions

Loop over all subscriptions in a tenant and run some command against them.

foreach ($sub in Get-AzSubscription -TenantId "xyz") {
    Write-Host $sub.id
}

Example

Example of getting creation/last update timestamp for all custom policy definitions.

foreach ($sub in Get-AzSubscription -TenantId "xyz") {
    Get-AzPolicyDefinition -SubscriptionId $sub.id | select -ExpandProperty Properties | where {$_.PolicyType -eq "Custom"} | select DisplayName -ExpandProperty Metadata | select DisplayName, createdOn, updatedOn | fl
}

Loop over all subscriptions in a tenant and for each subscription run some commands.

foreach ($sub in Get-AzSubscription -TenantId "xyz") {
    Set-AzContext -Subscription $sub.id
    #
    # Other commands
    #
}

Enumerating Resources

§

$azResources = Get-AzResource
 
$azResources | foreach {
  $_.ResourceId
}

§

Get-AzResourceGroup | foreach {Get-AzStorageAccount -ResourceGroupName $_.ResourceGroupName}
  • azure/qnd/azure_powershell.1662126802.txt.gz
  • Last modified: 2022/09/02 13:53
  • by mgupton