Azure CLI vs Powershell?

52,218

Solution 1

Azure CLI is a PowerShell-like-tool available for all platforms. You can use the same commands no matter what platform you use: Windows, Linux or Mac.

Now, there are two version Azure CLI. The Azure CLI 1.0 was written with Node.js to achieve cross-platform capabilities, and the new Azure CLI 2.0 is written in Python to offer better cross-platform capabilities. Both are Open Source and available on Github. However, for now, only certain PowerShell cmdlets support use on Linux.

Is it targetted for the audience who want to manage Azure IAAS from Linux environment?

I think the answer is yes. For a Linux or Mac developer, I think they more likely to use Azure CLI.

Solution 2

Both, Azure CLI and the PowerShell package use the REST API of Azure.

As one of our Microsoft contacts said: Use whatever you like and you prefer.

There are some pros for Azure CLI:

  1. Open Source - which has many advantages. It might be developing faster in the future. You can view what is really in the Code, the community might or will be bigger, and so on.
  2. Azure CLI can be used with Groovy, Python, Ruby or any other scripting language. It is easier to get good developers for this languages than an experienced PowerShell developer. For example: I took Groovy because of Java. It is easier to use this combination then learning PowerShell scripting....

Currently there is 1 really big positive for PowerShell: there is a huge repository of PowerShell script examples for Azure. BUT: often you have to do it on your own to fit your requirements - therefore an example might be a good starting point - sometimes it is easier to begin from scratch.

My recommendation would be: Use Azure CLI --> For Scripting use the language your company is familiar with.

Solution 3

Just wanted to add my experience with both Azure Cli and Az PowerShell.

As per 2019, both are cross-platform so it should only be a language/syntax preference but with Azure Cli all/most commands are idempotent.

I've ended up replacing all my ARM Templates with Azure Cli scripts as it is less verbose and easy to read.

With Az Powershell, you still need to check if the resource exists before creating it otherwise it will throw an exception so scripts can become very complicated for no reason.

We're using both Azure Cli and Az Powershell with Azure DevOps. Azure Cli command can now be executed from bash (Linux) or bat (Windows) scripts. So it is not optimum... (EDIT 2020 You can now run Azure CLI using Powershell scripts as well)

  • We deploy resources with Azure Cli because it is easy to read and commands are idempotent.
  • For complex scripting I prefer using PowerShell as there are a lot of useful language features.

EDIT 2021

With the new Azure Bicep, I've started going back to "ARM type" deployment: Bicep is really easy to use if you understand ARM template and stay readable even with complex deployments.

In addition to Az CLI (Powershell core) it handles most of the scripting i need to do.

Solution 4

PowerShell has some significant advantages over CLI:

  • PowerShell is a language of Azure Functions. So you can easily write a module or code and push it to a secured Azure Function. CLI is not a supported language.
  • Same goes for Azure Automation Runbooks, whereas CLI is not a supported language.
  • If you want to orchestrate a hybrid workload covering on premise and cloud, i.e. deploy a Service to a Windows Server and then deploy an endpoint in Azure for it to interact with, PowerShell can but CLI can't (and I would surprised if it did).
  • If you want to invest in one language that can call legacy Modules for management, PowerShell can but CLI can't.
  • If you want to create your own DLL in C# or any other language and incorporate that into your scripts. I've had to reverse engineer DLLs and wrap them in PowerShell to incorporate into orchestrations.
  • I've had significantly more success extending DevOps pipelines with PowerShell than CLI.
  • PowerShell has very good multithreaded workload support for scenarios such as Azure unit and smoke testing and large Azure parallel deployments (beyond DevOps parallel tasks which get clunky). TBH, I am not aware of native multithreading in Azure CLI.
  • I can develop a module, use it in all the above scenarios and then give it to an end client; TBH, I don't believe I can do that for CLI (create a module, digitally sign it and then nuget feed distro).

There is almost nothing I've not scripted in PowerShell, whereas with CLI I can do something but not others. My PowerShell skills have kept relevant for over 10 years where I've been doing enterprise SharePoint, Dynamics, now Office and Azure... so I am biased.

Solution 5

PowerShell is Open Source too. Microsoft have just released PowerShell Azure Az module (Dec 2018), which uses .Net core. So it runs on Linux,Mac OS and Windows. Azure CLI is still there for Linux developers, if preferred.

Share:
52,218
Abhijeet
Author by

Abhijeet

Updated on July 05, 2022

Comments

  • Abhijeet
    Abhijeet almost 2 years

    Not precisely able to understand the merit of Azure CLI on Windows environment.

    Is it targetted for the audience who want to manage Azure IAAS from Linux environment?

    I thought Powershell core is going to be the way for non-Windows admins. Is PowerShell Core not going to be ported to well on all platforms, to serve the cross-platform audience?

    In a nutshell, is it worth learning Azure CLI?

  • Jared Moore
    Jared Moore almost 6 years
    Azure PowerShell is also open-source :)
  • aruno
    aruno over 5 years
    Haha 'whichever I prefer'! I have no clue! I just want one!
  • hoangpx
    hoangpx over 5 years
    There're a lot of feature not available on CLI ( datafactory for example)
  • Mark Z.
    Mark Z. about 5 years
    Note there is now an Azure PowerShell module that you can install for PowerShell Core, which is a cross-platform version of PowerShell that runs on Windows, Linux or macOS.
  • Jerry Nixon
    Jerry Nixon almost 5 years
    I realize you are free to do whatever you like in your own environment. However, it is important to say that "Replace ARM Templates with CLI Scripts" is NOT Best Practice.
  • user2368632
    user2368632 almost 5 years
    Azure CLI commands can be used in Powershell scripts as well.
  • Thomas
    Thomas almost 5 years
    Yeah it could, I am using Azure Devops and it is hard to mix powershell and cli command together ?
  • Thomas
    Thomas almost 5 years
    @JerryNixon-MSFT, you're right, My feeling is based on your engineer skills you better let them choose. ARM is declarative and have all the latest feature first. For example while deploying API Management we used ARM as it is much more easier.
  • nithins
    nithins almost 5 years
    @JerryNixon-MSFT Could you elaborate or point to an article/blog post on why CLI is not "best practice" ?
  • Oliver Nilsen
    Oliver Nilsen almost 5 years
    I find that az can do more then Powershell. Fx. "az resource show" can show much more details like createdTime for an Azure resource, where the same PowerShell command Get-AzResource doesn't give such detailed information.
  • Morrolan
    Morrolan over 4 years
    I created some powershell using the cli, but when I wanted to run this in DevOps pipeline I learned that this combo is not something that is automatically available. Very confusing having these 2 options. Has this been fixed yet, to allow you to choose whatever combo you like in your DevOps pipeline?
  • Monsignor
    Monsignor over 4 years
    The real biggest benefit of Powershell is that it operates on objects, not on strings. Therefore it's really easy to work with output of commands: $t = Get-AzEventGridTopic ... ; $endpoint = $t.Endpoint. With Azure CLI you would have to parse strings for that.
  • TheShadow
    TheShadow over 4 years
    @Monsignor: Thats actually not right.... depents on the script language you are using. Every language has its advantages and disadvantages. Since you can also get a JSON response: most languages give you an object like access on JSON. So your pro for powershell also fits for azure CLI.
  • Blue Clouds
    Blue Clouds about 4 years
    never heard of Groovy. no shortage of powershell devs
  • Karl Merecido
    Karl Merecido almost 4 years
    I'm also pretty sure there are some Azure Powershell commands that aren't present in CLI, but i can't think of it specifically atm. I am using both in Powershell Core on a MPB but I really prefer the CLI as it makes powershell scripts cleaner to look at. IMHO.