Azure CLI Automation

7.1 Why Automate Azure CLI?

Automation helps you:

Benefit
Why It’s Important

Save time

Avoid manually repeating the same steps

Reduce errors

Scripts are consistent and repeatable

Enable DevOps workflows

Easily integrate into CI/CD pipelines

Improve scalability

Create hundreds of resources with one script

Scripting Azure CLI = Power and Speed.


🛠️ 7.2 Basic Structure of an Azure CLI Script

At its core, an Azure CLI script is just a series of CLI commands placed in a file.


🖥️ Example (Bash Script)

bashCopyEdit#!/bin/bash

# Variables
RESOURCE_GROUP="myScriptRG"
LOCATION="eastus"

# Create a Resource Group
az group create --name $RESOURCE_GROUP --location $LOCATION

# Create a Storage Account
az storage account create \
  --name mystorageaccount$RANDOM \
  --resource-group $RESOURCE_GROUP \
  --location $LOCATION \
  --sku Standard_LRS

# List the Storage Accounts
az storage account list --resource-group $RESOURCE_GROUP --output table

✅ Save this as create_resources.sh and run:


🖥️ Example (PowerShell Script)

✅ Save this as create_resources.ps1 and run:


🧩 7.3 Using Environment Variables

You can inject dynamic values into your scripts using environment variables.


Setting Environment Variables (Bash)

Then reference them in your script:


Setting Environment Variables (PowerShell)

And use:

✅ Using environment variables makes your scripts portable and easier to maintain.


📦 7.4 Passing Parameters into a Script

Scripts can accept input at runtime.


Bash Example with Parameters

Run the script:

$1, $2, etc. are positional parameters.


PowerShell Example with Parameters

Run the script:

Parameterization = More reusable scripts.


⚡ 7.5 Best Practices for Azure CLI Automation

Best Practice
Why It Matters

Use variables and parameters

Make scripts reusable and configurable

Check if resources exist before creating

Avoid duplicate deployments

Add comments to your scripts

Make your scripts readable and maintainable

Always validate input

Prevent unexpected errors

Handle errors gracefully

Use try-catch (PowerShell) or exit codes (Bash)

Secure sensitive data

Never hard-code passwords in scripts


✨ 7.6 Real-World Use Case Example

Deploy a VM Automatically

Bash Script Example:

✅ In just a few seconds, you’ve automated your infrastructure!


📝 Module 7 Summary

Topic
Key Points

Why automate?

Save time, reduce errors, scale easily

Structure of a script

Series of Azure CLI commands

Using environment variables

Makes scripts dynamic and maintainable

Passing parameters

Makes scripts flexible

Best practices

Secure coding, validation, reusability

Last updated