PowerShell framework for declaratively defining and idempotently imposing system configurations
 
Go to file
microsoft-github-policy-service[bot] 30441bb474
Auto merge mandatory file pr
This pr is auto merged as it contains a mandatory file and is opened for more than 10 days.
2022-11-28 19:10:53 +00:00
.github PR feedback 2019-12-03 11:58:31 -08:00
.vscode Format-Checklist rewrite (#28) 2019-09-05 21:01:33 -04:00
imgs updated docs to show correct image (#13) 2019-07-01 21:02:58 -04:00
src bugfix (#65) 2020-03-12 16:41:00 -07:00
test bugfix (#65) 2020-03-12 16:41:00 -07:00
.gitignore Initial commit 2018-10-08 17:51:56 -07:00
Initialize-Repo.ps1 removed exit from Format-Checklist (#43) 2019-09-23 18:03:23 -07:00
LICENSE Initial commit 2018-10-08 17:51:59 -07:00
PSScriptAnalyzerSettings.psd1 whitespace to trigger pr 2019-09-12 18:44:49 -07:00
README.md PR feedback 2019-12-03 11:58:31 -08:00
Requirements.psd1 convert to new-requirementgroup 2019-12-02 21:36:14 -08:00
SECURITY.md Microsoft mandatory file 2022-08-17 14:51:54 +00:00

README.md

Breaking changes

v2.3

  • Requirement nesting is no longer supported. Requirements are supposed to be atomic components of a system, and by definition, atomic components cannot contain other atomic components and still be atomic. Recommendation is to migrate to our supported patterns.
  • Format-Callstack, the formatter for nested Requirements, is no longer supported. Recommendation is to migrate to Format-Verbose.
  • Name is no longer a supported property on Requirements. Recommendation is to migrate to namespaces.

Overview

Requirements is a PowerShell Gallery module for declaratively describing a system as a set of "requirements", then idempotently setting each requirement to its desired state.

The background motivation and implementation design are discussed in detail in Declarative Idempotency.

Trevor Sullivan provides a good overview and (slightly outdated) tutorial video about Requirements.

What is a Requirement

A "Requirement" is a single atomic component of a system configuration. For a system to be in its desired state, all Requirements in the system must be in a desired state.

A Requirement is an object defined by three properties:

  • Describe - A string that describes the desired state of the Requirement.
  • Test - A scriptblock that returns whether the Requirement is in its desired state.
  • Set - A scriptblock that can be run to put the Requirement into its desired state if it is not in a desired state.

Why Requirements

Code against the Desired State

In DevOps, you may be managing a fleet of servers, containers, cloud resources, files on disk, or many other kinds of components in a heterogeneous system. Lets say you have n components in your system and every component is either in a GOOD or BAD state. You have two options:

  • You can try and account for every possible configuration of your system and transition between those states, but then you will have 2**n possible states to manage.
  • You can only account for the desired state of each individual component, so you will only have n states to account for. Much simpler!

Generically define Requirements

If you only manage cloud resources, then try to use Terraform, ARM, or CloudFormation. If you only manage kubernetes resources, then try and use Helm. These are domain-specific frameworks for managing the desired state of resources and are best suited for their task.

However, you will often find you have complex configurations, such as configurations that can only be described in PowerShell. You may even have macroconfigurations that consist of one or more Terraform templates. In this case you will probably want something more generic to glue your configurations together without sacrificing the declarative desired state paradigm. This is where Requirements comes in.

Comparison to DSC

Desired State Configurations allow you to declaratively describe a configuration, then let the local configuration manager handle with setting the configuration to its desired state. This pattern from the outside may seem similar to Requirements, but there are crucial differences.

DSC is optimized for handling many configurations asynchronously. For example, applying a configuration in parallel to multiple nodes. In contrast, Requirements applies a single configuration synchronously. This enables usage in different scenarios, including:

  • CI/CD scripts
  • CLIs
  • Dockerfiles
  • Linux

While Requirements supports DSC resources, it does not have a hard dependency on DSC's configuration manager, so if your Requirements do not include DSC resources they will work on any platform that PowerShell Core supports.

Quickstart

Defining Requirements

The easiest way to declare a requirement is to define it as a hashtable and let PowerShell's implicit casting handle the rest.

$requirements = @(
    @{
        Describe = "Resource 1 is present in the system"
        Test     = { $mySystem -contains 1 }
        Set      = {
            $mySystem.Add(1) | Out-Null
            Start-Sleep 1
        }
    },
    @{
        Describe = "Resource 2 is present in the system"
        Test     = { $mySystem -contains 2 }
        Set      = {
            $mySystem.Add(2) | Out-Null
            Start-Sleep 1
        }
    },
    @{
        Describe = "Resource 3 is present in the system"
        Test     = { $mySystem -contains 3 }
        Set      = {
            $mySystem.Add(3) | Out-Null
            Start-Sleep 1
        }
    }
)

Note: Describe the desired state, not the transition

Our Describe describes the desired state of the Requirement (ex: "Resource 1 is present in the system") and not the Set block's transitioning action (ex: "Adding Resource 1 to the system"). This is because the Set block is not called if the Requirement is already in its desired state, so if we used the latter Describe and Resource 1 was already present in the system, we would be inaccurately logging that the Requirement is modifying the system when it is actually taking no action.

The sooner you embrace the Desired State mindset, the less friction you will have writing Requirements and managing your complex system configurations.

Enforcing the Configuration

Once you have an array of Requirements, you can simply pipe the Requirements into Invoke-Requirement to put each Requirement into its desired state.

$requirements | Invoke-Requirement

The status of each Requirement will be logged to the output stream. By default they are shown with Format-List, but you can pipe the results to Format-Table, or use one of the packaged formatters for Requirements-specific event formatting and filtering.

Advanced Configurations

Types of Requirements

As you learned previously, Requirements consist of Describe, Test, and Set properties. There are 4 types of Requirements--one for every permutation of including or excluding Test and Set. Note that Describe must always be present.

Standard Requirement

This is the kind you are already familiar with. It includes both a Test and Set.

Validation Requirements

If you wish to assert that a precondition is met before continuing, you can leave out the Set block. This is useful for Defensive programming, or when a Requirement requires manual steps.

@{
    Describe = "Azure CLI is authenticated"
    Test     = { az account }
}

Idempotent Set Requirements

Sometimes, your Set block is already idempotent and an associated Test block cannot be defined. In this case, you can leave out the Test block.

@{
    Describe = "Initial state of system is backed up"
    Set      = { Get-StateOfSystem | Out-File "$BackupContainer/$(Get-Date -Format 'yyyyMMddhhmmss').log" }
}

Patterns

Some people have trouble managing large configurations with Requirements because they try and explicitly define a single array literal of Requirements; however, this is unnecessary and Requirements can be handled like any other PowerShell object. Here are some examples of patterns for managing Requirements.

Avoiding state with selectors

Requirements should strongly avoid maintaining internal state. Requirements is for enforcing declarative programming, whereas maintaining state is an imperative loophole that breaks the declarative paradigm.

Instead, use selectors to easily derive up-to-date properties of the system using unit-testable functions.

<#
.SYNOPSIS
  Gets the random storage account name from the environment in the cloud
#>
function Select-StorageAccountName([string]$EnvName) { ... }

<#
.SYNOPSIS
  Returns a Requirement that ensures a storage ccount exists in Azure
#>
function New-StorageAccountRequirement {
    @{
        Describe = "Storage Account exists"
        Test     = { Test-StorageAccountExists (Select-StorageAccountName $env:EnvName) }
        Set      = { New-StorageAccount (Select-StorageAccountName $env:EnvName) }
    }
}

Reusable requirements

You can wrap Requirements in a parameterized function or script to avoid redifining Requirements--

function New-ResourceGroupRequirement {
    Param(
        [string]$Name,
        [string]$Location
    )

    New-RequirementGroup "rg" -ScriptBlock {
        @{
            Describe = "Logged in to Azure"
            Test     = { Get-AzAccount }
            Set      = { Connect-AzAccount }
        }
        @{
            Describe = "Resource Group '$Name' exists"
            Test     = { Get-AzResourceGroup -Name $Name -ErrorAction SilentlyContinue }
            Set      = { New-AzResourceGroup -Name $Name -Location $Location }
        }
    }
}

Then call your function to generate the Requirement--

$Name = "my-rg"
$Location = "West US 2"

& {
    New-ResourceGroupRequirement -Name $Name -Location $Location
    @{
        Describe = "Do something with the resource group"
        Test     = { ... }
        Set      = { ... }
    }
} `
| Invoke-Requirement `
| Format-Table

Defining Requirements with control flow

Using control flow statements, like if and foreach, can dramatically simplify your Requirement definitions. Let's see if we can simiplify our quickstart example.

foreach ($resourceId in 1..3) {
    @{
        Describe = "Resource $resourceId is present in the system"
        Test     = { $mySystem -contains $resourceId }.GetNewClosure()
        Set      = { $mySystem.Add($resourceId) | Out-Null; Start-Sleep 1 }.GetNewClosure()
    }
}

Notice that we had to call .GetNewClosure() to capture the current value of $resourceId in the scriptblock--otherwise the value would be 3 or $null depending on where we invoked it.

When you define Requirements with control flow in this manner, the Requirements are written to output. As such, this logic should be wrapped in a script, function, or scriptblock.

Managing large configurations with Namespaces

You can group Requirements into namespaces for clearer logging. To add a namespace to Requirements, use the New-RequirementGroup function. You can nest namespaces as well.

New-RequirementGroup "local" {
    New-RequirementGroup "clis" {
        @{
            Describe = "az is installed"
            Test     = { ... }
            Set      = { ... }
        }
        @{
            Describe = "kubectl is installed"
            Test     = { ... }
            Set      = { ... }
        }
    }
    New-RequirementGroup "configs" {
        @{
            Describe = "cluster config is built"
            Test     = { ... }
            Set      = { ... }
        }
    }
}
New-RequirementGroup "cloud" {
    @{
        Describe = "Terraform is deployed"
        Test     = { ... }
        Set      = { ... }
    }
}

The above example would result in the Requirements below.

Namespace     Describe
---------     --------
local:clis    az is installed
local:clis    kubectl is installed
local:configs cluster config is built
cloud         Terraform is deployed

Isomorphic Enforcement

Isomorphic execution means that our Requirements are enforced the same regardless of what context they are enforced in. You will want your Requirements to run in a CICD pipeline for safe deployment practices and run manually from your local machine for development purposes, but in both contexts the Requirements should run exactly the same.

We will accomplish this by implementing Separation of Concerns, separating our Requirement definitions from our execution logic:

  • myrequirements.ps1, which will return an array of Requirements.

  • Invoke-Verbose.ps1, which will be called in a CICD pipeline and write verbose status information to the output stream.

    ./myrequirements.ps1 | Invoke-Requirement | Format-Verbose
    
  • Invoke-Checklist.ps1, which will be called in a console and interactively write to the host.

    ./myrequirements.ps1 | Invoke-Requirement | Format-Checklist
    

Defining DSC Resources

If you're using Windows and PowerShell 5, you can use DSC resources with Requirements.

$requirement = @{
    Describe     = "My Dsc Requirement"
    ResourceName = "File"
    ModuleName   = "PSDesiredStateConfiguration"
    Property     = @{
        Contents        = "Hello World"
        DestinationPath = "C:\myFile.txt"
        Force           = $true
    }
}
New-Requirement @requirement | Invoke-Requirement | Format-Checklist

Formatting the logs

Invoke-Requirement will output logging events for each step in a Requirement's execution lifecycle. You can capture these logs with Format-Table or Format-List, or

$requirements | Invoke-Requirement | Format-Table

Format-Table

These logs were using -Autosize parameter, which better formats the columns, but does not support outputting as a stream.

  Method Lifecycle Name       Date
  ------ --------- ----       ----
    Test     Start Resource 1 6/12/2019 12:00:25 PM
    Test      Stop Resource 1 6/12/2019 12:00:25 PM
     Set     Start Resource 1 6/12/2019 12:00:25 PM
     Set      Stop Resource 1 6/12/2019 12:00:26 PM
Validate     Start Resource 1 6/12/2019 12:00:26 PM
Validate      Stop Resource 1 6/12/2019 12:00:26 PM
    Test     Start Resource 2 6/12/2019 12:00:26 PM
    Test      Stop Resource 2 6/12/2019 12:00:26 PM
     Set     Start Resource 2 6/12/2019 12:00:26 PM
...

Format-Checklist

Format-Checklist will present a live-updating checklist to the user.

Format-Checklist output

Format-Verbose

Unlike Format-Checklist, Format-Verbose prints all log events and includes metadata. For complex use cases, you can define nested Requirements (Requirements that contain more Requirements in their Set block). Format-Verbose will print the stack of Requirement names of each Requirement as its processed.

Format-Verbose output

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.