You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Guide purpose
A clear and concise description of what the guide aims to achieve and why it's important.
See attached PDF file to format as guide
Alternative way as GraphQlL
query MyQuery {
policyTypes(filter: "policyTypeId:'tmod:@turbot/azure#/resource/types/azure' limit:2000") {
items {
trunk {
title
}
title
description
}
}
}
Approach for using Steampipe
with smart_folders as (select id as sf_resource_id, title as sf_title from guardrails_resource where resource_type_uri = 'tmod:@turbot/turbot#/resource/types/smartFolder'),
sf_policies as (select * from guardrails_policy_setting),
sf_policy_type as (select * from guardrails_policy_type)
select sf_resource_id, sf_title, sfp.policy_type_uri, sfp.policy_type_trunk_title, sfp.value, sfp.template_input, sfp.template, sfp.note, sfpt.description
from smart_folders sf
left join sf_policies sfp on sf.sf_resource_id=sfp.resource_id
left join sf_policy_type sfpt on sfp.policy_type_id=sfpt.id
order by sf_title;
Target audience
Specify who this guide is intended for (e.g., beginners, advanced users, specific roles).
Categories
Proposed primary category and categories where this guide would fit best. (e.g., Getting Started, Best Practices, Troubleshooting, Concepts etc).
Guide purpose
A clear and concise description of what the guide aims to achieve and why it's important.
Target audience
Specify who this guide is intended for (e.g., beginners, advanced users, specific roles).
Categories
Proposed primary category and categories where this guide would fit best. (e.g., Getting Started, Best Practices, Troubleshooting, Concepts etc).
Outline
A brief outline of the main sections or topics the guide will cover.
Runbook_Export-Smart-Folder-as-CSV (1).pdf
The text was updated successfully, but these errors were encountered: