turbot/steampipe-mod-alicloud-insights

Dashboard: AliCloud OSS Bucket Detail

This dashboard answers the following questions for each bucket:

  • How is the bucket configured?
  • What relationships does the bucket have with other resources?
  • What tags are applied?
  • What policies are set on the bucket?
  • How are the lifecycle rules configured?
  • How is logging configured?
  • How is encryption configured?
This dashboard contains 5 cards, 2 graphs, 1 input and 5 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 OSS Bucket Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

This dashboard uses the the following queries:
select
'Public Access' as label,
case when acl = 'private' then 'Disabled' else 'Enabled' end as value,
case when acl = 'private' then 'ok' else 'alert' end as type
from
alicloud_oss_bucket
where
arn = $1;

Tags