Creating your pipeline#
Abstract
This topic covers how you can configuration continuous integration (CI) pipelines to tests Bicep and ARM templates automatically.
You can use PSRule for Azure to validate Azure resources throughout their lifecycle. By using validation within a continuous integration (CI) pipeline, any issues provide fast feedback.
Within the root directory of your infrastructure as code repository:
Create a new GitHub Actions workflow by creating .github/workflows/analyze-arm.yaml
.
name: Analyze templates
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
analyze_arm:
name: Analyze templates
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
# Analyze Azure resources using PSRule for Azure
- name: Analyze Azure template files
uses: microsoft/ps-rule@v2.9.0
with:
modules: 'PSRule.Rules.Azure'
Create a new Azure DevOps YAML pipeline by creating .azure-pipelines/analyze-arm.yaml
.
This will automatically install compatible versions of all dependencies.
Tip
If this is your first time implementing PSRule for Azure on a live repository, you may want to consider setting continue on error. This will allow you to try out PSRule without preventing pull requests (PRs) from being merged.
Parameters#
Several parameters are available to customize the behavior of the pipeline.
In addition, many of these parameters are also available as configuration options configurable within ps-rule.yaml
.
Some of the most common parameters are listed below. For a full list of parameters see the readme for GitHub Actions or Azure Pipelines.
Limiting input to a specific path#
By default, PSRule will scan all files and folders within the repository or current working path.
You can use the inputPath
parameter to limit the analysis to a specific file or directory path.
Tip
The inputPath
parameter only accepts a relative path.
Both file and directory paths are supported.
For example: azure/modules/
if you have a azure/modules/
directory in the root of your repository.
Be careful not to specify a leading /
such as /azure/modules/
.
On Linux /
is the root directory, which makes this a fully qualified path instead of a relative path.
Configuring a baseline#
You can set the baseline
parameter to specify the name of a baseline to use.
A baseline is a set of rules and configuration.
PSRule for Azure ships with multiple baselines to choose from.
See working with baselines for more information.
Continue on error#
By default, PSRule breaks or stops the pipeline if any rules fail or errors occur. When adopting PSRule for Azure or a new baseline you may want to run PSRule without stopping the pipeline.
To do this, configure the PSRule for Azure step to continue on error.
Set the continue-on-error
property to true
.
Set the continueOnError
property to true
.
Set the ErrorAction
parameter of Assert-PSRule
to Continue
.
Adding additional modules#
You can add additional modules to the modules
parameter by using comma (,
) separating each module name.
Outputting results#
You can configure PSRule to output results into a file by using the outputFormat
and outputPath
parameters.
For details on the formats that are supported see analysis output.
# Analyze Azure resources using PSRule for Azure
$modules = @('PSRule.Rules.Azure')
Install-Module -Name $modules -Scope CurrentUser -Force -ErrorAction Stop;
Assert-PSRule -InputPath '.' -OutputFormat 'Sarif' -OutputPath 'reports/ps-rule-results.sarif' -Module $modules -Format File -ErrorAction Stop;
Configuration#
Configuration options for PSRule for Azure are set within the ps-rule.yaml
file.
To set options, create a new file named ps-rule.yaml
in the root directory of your repository.
Tip
This file should be committed to your repository so it is available when your pipeline runs.
Expand template parameter files#
PSRule for Azure can automatically expand Azure template parameter files. When enabled, PSRule for Azure automatically resolves parameter and template file context at runtime.
To enabled this feature, set the Configuration.AZURE_PARAMETER_FILE_EXPANSION
option to true
.
This option can be set within the ps-rule.yaml
file.
configuration:
# Enable automatic expansion of Azure parameter files
AZURE_PARAMETER_FILE_EXPANSION: true
Expand Bicep source files#
PSRule for Azure can automatically expand Bicep source files.
When enabled, PSRule for Azure automatically expands and analyzes Azure resource from .bicep
files.
To enabled this feature, set the Configuration.AZURE_BICEP_FILE_EXPANSION
option to true
.
This option can be set within the ps-rule.yaml
file.
configuration:
# Enable automatic expansion of bicep source files
AZURE_BICEP_FILE_EXPANSION: true
Advanced configuration#
PSRule for Azure comes with many configuration options. The setup section explains in detail how to configure each option.