Azure PowerShell

Azure Cloud Shell features

  • Is temporary and requires a new or existing Azure Files share to be mounted.

  • Offers an integrated graphical text editor based on the open-source Monaco Editor.

  • Authenticates automatically for instant access to your resources.

  • Runs on a temporary host provided on a per-session, per-user basis.

  • Times out after 20 minutes without interactive activity.

  • Requires a resource group, storage account, and Azure File share.

  • Uses the same Azure file share for both Bash and PowerShell.

  • Is assigned to one machine per user account.

  • Persists $HOME using a 5-GB image held in your file share.

  • Permissions are set as a regular Linux user in Bash.

New-AzVm `
    -ResourceGroupName "CrmTestingResourceGroup" `
    -Name "CrmUnitTests" `
    -Image "UbuntuLTS"
    ...

Azure PowerShell Documentation

https://learn.microsoft.com/en-us/powershell/azure/?view=azps-10.0.0&viewFallbackFrom=azps-6.5.0

Last updated

Was this helpful?