-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add option to get more output details like resourceGroup #1625
Comments
Thanks for raising your first issue, the team appreciates the time you have taken 😉 |
It would also be nice to add the following outputs based on the rule:
|
@BernieWhite I would be happy if you can give me any hints how I can add a 'ResourceGroup' column in other ways. |
Hi @mschwrdtnr most of the detail is already present and is available under the Invoke-PSRule -m psrule.rules.azure -f .\export02\ -as Detail `
| Select-Object TargetName, RuleName, Ref, @{ Name = 'Severity'; Expression = { $_.Info.Annotations.severity } }, @{ Name = 'ResourceGroup'; Expression = { $_.Field.resourceGroupName } } `
| ConvertTo-Csv Although I did find an bug where But yes the plan is to make this configurable. We are working toward this with PSRule v3, and will release a preview in the next month or so. Final release would be closer to the end of the year or Q1 next year. |
I would also love the feature to export the subscription information when collecting data for more than one subscription. |
Is your feature request related to a problem? Please describe.
I am currently using the tool to check against different azure environments and export the results as csv. There are different options when run
Invoke-PSRule
, see https://microsoft.github.io/PSRule/v2/concepts/PSRule/en-US/about_PSRule_Options/#outputformat. It's possible to get a summary and a detailed output. The detailed output only includes the following columnsRuleName, TargetName, TargetType, Outcome, OutcomeReason, Synopsis, Recommendation
while the json scan includes more information such as Subscription, Resource Group, Location and so on.The current output details are not detailed enough for me and doesn't allow to sort or filter for resource groups. That's make it hard when having many subscriptions and resource groups.
Describe the solution you'd like
I want to have an option where I can specify more output details such as resource group, subscription and location.
Describe alternatives you've considered
Alternatives can be to use suppression. But these are only allow run against different target types and not resource groups.
Additional context
I would be happy about alternatives to face the problem.
The text was updated successfully, but these errors were encountered: