Troubleshooting#
Abstract
This article provides troubleshooting instructions for common errors generic to PSRule or core functionality.
Tip
See troubleshooting specific to PSRule for Azure for common errors when testing Azure resources using the PSRule.Rules.Azure
module.
Custom rules are not running#
There is a few common causes of this issue including:
- Check rule path — By default, PSRule will look for rules in the
.ps-rule/
directory. This directory is the root for your repository or the current working path by default. On case-sensitive file systems such as Linux, this directory name is case-sensitive. See Storing and naming rules for more information. - Check file name suffix — PSRule only looks for files with the
.Rule.ps1
,.Rule.yaml
, or.Rule.jsonc
suffix. On case-sensitive file systems such as Linux, this file suffix is case-sensitive. See Storing and naming rules for more information. - Check binding configuration — PSRule uses binding to work out which property to use for a resource type.
To be able to use the
-Type
parameter ortype
properties in rules definitions, binding must be set. This is automatically configured for modules such as PSRule for Azure, however must be set inps-rule.yaml
for custom rules. - Check modules — Check if your custom rules have a dependency on another module such as
PSRule.Rules.Azure
. If your rules have a dependency, be sure to add the module in your command-line.
Tip
You may be able to use git mv
to change the case of a file if it is committed to the repository incorrectly.
Windows PowerShell is in NonInteractive mode#
When running PSRule on a Windows self-hosted agent/ private runner you may encounter an error similar to the following:
Error
Exception calling "ShouldContinue" with "2" argument(s): "Windows PowerShell is in NonInteractive mode. Read and Prompt functionality is not available."
This error may be caused by the PowerShell NuGet package provider not being installed. By default, Windows PowerShell does not have these components installed. These components are required for installing and checking versions of PSRule modules.
To resolve this issue, install the NuGet package provider during setup the agent/ runner by using the following script:
if ($Null -eq (Get-PackageProvider -Name NuGet -ErrorAction Ignore)) {
Install-PackageProvider -Name NuGet -Force -Scope CurrentUser;
}
Additionally consider installing the latest version of PowerShellGet
by using the following script:
if ($Null -eq (Get-InstalledModule -Name PowerShellGet -MinimumVersion 2.2.1 -ErrorAction Ignore)) {
Install-Module PowerShellGet -MinimumVersion 2.2.1 -Scope CurrentUser -Force -AllowClobber;
}
Format-Default error when running Invoke-PSRule#
When running PSRule you may encounter an error similar to the following:
Error
Format-Default: Cannot process argument because the value of argument "name" is not valid. Change the value of the "name" argument and run the operation again.
This error is caused by a known issue in PowerShell 7.4.0 and 7.4.1. To resolve this issue, upgrade to PowerShell 7.4.2 or later.
For more details see #1723.
PSR0001 - Unable to read options file#
When running PSRule you may encounter an error similar to the following:
Error
PSR0001: Unable to read options file 'ps-rule.yaml'.
This error typically indicates a problem with the YAML syntax in the ps-rule.yaml
file.
Double check the file for incorrect indentation or missing punctuation such as -
and :
characters.
If you still have an issue, try re-saving the file as UTF-8 in an editor such as Visual Studio Code.
PSR0002 - Summary results are not supported with Job Summaries#
Error
PSR0002: Summary results are not supported with Job Summaries.
Currently using the Output.As
with the Summary
option is not supported with job summaries.
Choose to use one or the other.
If you have a specific use case your would like to enable, please start a discussion.
PSR0003 - The specified baseline group is not known#
Error
PSR0003: The specified baseline group 'latest' is not known.
This error is caused by attempting to reference a baseline group which has not been defined. To define a baseline group, see Baseline.Group option.
PSR0004 - The specified resource is not known#
Error
PSR0004: The specified Baseline resource 'TestModule4\Module4' is not known.
This error is caused when you attempt to reference a resource such as a baseline, rule, or selector which has not been defined.