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 the Desired State Configuration?

There are two possible definitions for Desired State Configuration (DSC) in the context of Azure:

  • An extension for PowerShell used for bootstrapping and managing Azure Virtual Machines
  • A general concept where you work toward developing an automated solution for configuration management of your infrastructure

In this section, we’ll focus on both definitions for a better understanding of the whole concept.

Azure Automation State Configuration

In Azure, you can automatically manage the desired state of your virtual machines by leveraging Azure Automation State Configuration. This feature is basically a configuration file that you create and pass to your infrastructure. Your infrastructure will handle the passed configuration via an installed DSC agent and apply all the changes defined in it.

Such a configuration looks something like the following:

configuration IISInstall
{
    node "...
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