turbot/steampipe-mod-alicloud-insights

Dashboard: AliCloud RAM Policy Detail

This dashboard answers the following questions:

  • What relationships does the policy have with other resources?
  • What tags are applied?
This dashboard contains 2 cards, 1 graph, 1 input and 2 tables.

Usage

Install the mod:

mkdir dashboards
cd dashboards
powerpipe mod init
powerpipe mod install github.com/turbot/steampipe-mod-alicloud-insights

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select AliCloud RAM Policy Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run alicloud_insights.dashboard.ram_policy_detail --share

Queries

This dashboard uses the the following queries:
select
case when policy_type = 'System' then 'Alicloud' else 'Customer' end as value,
'Managed By' as label
from
alicloud_ram_policy
where
policy_name = $1;

Tags