我有以下管道,用于从资源组获取当前(动态)资源,并在这些现有资源上运行PSRule。
pool:
vmImage: ubuntu-latest
stages:
- stage: Assess
displayName: In-flight assessment
jobs:
- job:
steps:
- checkout: self
- task: ps-rule-install@02
displayName: Install PSRule.Rules.Azure
inputs:
module: 'PSRule.Rules.Azure'
- task: AzurePowerShell@5
inputs:
azureSubscription: serviceConnection
ScriptType: 'InlineScript'
Inline: |
Get-AzContext;
Export-AzRuleData -ResourceGroupName 'myrgname' -OutputPath 'out/templates/';
Invoke-PSRule -Module 'PSRule.Rules.Azure' -InputPath 'out/templates/*.json' -OutputPath '$(Build.SourcesDirectory)';
azurePowerShellVersion: 'LatestVersion'
管道运行良好,没有任何错误,但是似乎没有对JSON文件进行任何评估。我在这里遗漏了什么,因为我已经遵循了一两个存在的例子。
结果截图
1条答案
按热度按时间iq0todco1#
在
Invoke-PSRule
命令中,您已经设置了outputpath
,但没有使用outputformat
,它不会在devops日志中输出结果。此外,固定输入路径值。样品如下:检查工件内容,将显示test结果(输出结果)
如果你想在devops日志中检查结果,请在yaml中使用
Invoke-PSRule -Module 'PSRule.Rules.Azure' -InputPath ./*.json -As Summary;
。