Azure: Difference between revisions

From Piszczynski
piszczynski>Aleks
No edit summary
piszczynski>Aleks
Line 10: Line 10:


== Azure CLI ==
== Azure CLI ==
Install Azure CLI:
*winget install -e --id Microsoft.AzureCLI


Identify data locations in shell
Identify data locations in shell


*df
*df


== Azure powershell ==
== Azure powershell ==

Revision as of 10:39, 10 March 2023

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