Azure

From Piszczynski
Revision as of 09:39, 10 March 2023 by piszczynski>Aleks (→‎Azure CLI)

Azure

Set Subsctiption in powershell session: Look at the subscriptions and select the id of the one you want:

  • Get-AzSubscription
  • $Context = Get-AzSubscription -SubscriptionID <subID>; Set-AzContext $Context


Azure CLI

Install Azure CLI:

  • winget install -e --id Microsoft.AzureCLI

Identify data locations in shell

  • df

Azure powershell

Get Policy info

  • Get-AzPolicyDefinition | where {$_.Properties.DisplayName -eq "<policyname>"}

Assign to pass to commands

  • $definition = Get-AzPolicyDefinition | where {$_.Properties.DisplayName -eq "<policyname>"}


Get Resource group info - Best to Create object of group for use in commands

  • Get-AzResourceGroup <name of group>
  • $rg = Get-AzResourceGroup <Name of group>


Assign Policy

  • New-AzPolicyAssignment -Name "NameofPolicy" -DisplayName "Displaynamofpolicy" -scope $rg.ResourceId -PolicyDefinition <AZpolicy definition>


Azure User Accounts

Create new user accounts:

  • New-AzureADUser