This project is designed as a learning platform to enhance skills in both PowerShell and bash scripting. The scripts provided here are carefully crafted to showcase real-world scenarios, empowering you to manage Azure resources efficiently.
You need an active Azure account with the required permissions.
PowerShell: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps?view=azps-4.8.0
Install-Module -Name Az -Force
Connect-AzAccount
Get-AzSubscription
Select-AzSubscription -SubscriptionName "Your-Subscription-Name"
bash: https://docs.microsoft.com/en-us/cli/azure/install-azure-cli-apt?view=azure-cli-latest
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
az login
az account list --output table
az account set --subscription "Your-Subscription-Name"
Open a script in a text editor to tailor it to your needs.
Replace script-name with the name of the script you want to run.
.\script-name.ps1
chmod +x script-name.sh
./script-name.sh
This project is distributed under the MIT-license, allowing you the freedom to use, modify, and distribute the scripts.