Reader small image

You're reading from  Learn Azure Administration - Second Edition

Product typeBook
Published inDec 2023
PublisherPackt
ISBN-139781837636112
Edition2nd Edition
Right arrow
Author (1)
Kamil Mrzygłód
Kamil Mrzygłód
author image
Kamil Mrzygłód

Kamil Mrzygłód is a technical lead and technology advisor, working with multiple companies on designing and implementing Azure-based systems and platforms. He's a former Microsoft Azure Microsoft Most Valuable Professional (MVP) and certified trainer, who shares his knowledge via various channels, including conference speeches and open source projects and contributions. Kamil lives in Poland with his two cats and one dog, dedicating some of his time to video games, cooking, and traveling.
Read more about Kamil Mrzygłód

Right arrow

What is IaC?

In the previous chapter, we talked about using the Azure CLI and Azure Powershell for managing and deploying Azure resources. We also mentioned that you can use the Azure portal for manual provisioning and configuration. Unfortunately, those methods are not always solutions that allow automation.

Imagine the following scenario – you need to deploy a cluster of virtual machines (VMs) that will be used by some teams for their projects. You could do everything step by step using the Azure portal (the easiest option for beginners as it’ll show you all the necessary resources), use the command line to deploy components one by one, or even prepare a simple shell script that contains all the commands:

az vm create \
    --resource-group <resource-group-name> \
    --name <vm-name> \
    --image Win2022AzureEditionCore \
    --public-ip-sku Standard \
   ...
lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Learn Azure Administration - Second Edition
Published in: Dec 2023Publisher: PacktISBN-13: 9781837636112

Author (1)

author image
Kamil Mrzygłód

Kamil Mrzygłód is a technical lead and technology advisor, working with multiple companies on designing and implementing Azure-based systems and platforms. He's a former Microsoft Azure Microsoft Most Valuable Professional (MVP) and certified trainer, who shares his knowledge via various channels, including conference speeches and open source projects and contributions. Kamil lives in Poland with his two cats and one dog, dedicating some of his time to video games, cooking, and traveling.
Read more about Kamil Mrzygłód