azure:qnd:azure_powershell

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
azure:qnd:azure_powershell [2022/09/14 20:19] – [List Subnets with no associated NSG] mguptonazure:qnd:azure_powershell [2022/10/21 21:58] (current) – [Get Resources] mgupton
Line 4: Line 4:
 Authenticate with Azure, list subscriptions for tenants and select a subscription to work with. Authenticate with Azure, list subscriptions for tenants and select a subscription to work with.
 <code powershell> <code powershell>
-Connect-AzAccount+Connect-AzAccount -Tenant <tenant id>
  
 Get-AzSubscription Get-AzSubscription
Line 12: Line 12:
  
 ====== Command Context ====== ====== Command Context ======
 +Get Azure tenants that there is an authenticated session for.
 +<code>
 +Get-AzTenant | select id,name
 +</code>
 +
 ==== See and set current context for Azure Powershell commands ==== ==== See and set current context for Azure Powershell commands ====
 This shows subscription and tenant info for current connections. This shows subscription and tenant info for current connections.
Line 26: Line 31:
 </code> </code>
  
 +==== Remove item from available context ====
 +
 +<code powershell>
 +(Get-AzContext -ListAvailable).Name
 +</code>
 +
 +<code powershell>
 +Remove-Context -Name <context name>
 +</code>
 +
 +====== Get Resources ======
 +List all resources in the current subscription.
 +<code powershell>
 +Get-AzResource
 +</code>
 +
 +<code powershell>
 +Get-AzResource | select Name,Type,ResourceGroupName,SubscriptionId | Export-Csv resources.csv
 +</code>
  
 ====== Loop Over All Subscriptions ====== ====== Loop Over All Subscriptions ======
  • azure/qnd/azure_powershell.1663186765.txt.gz
  • Last modified: 2022/09/14 20:19
  • by mgupton