turbot/steampipe-mod-oci-insights

Dashboard: OCI Database Autonomous DB Detail

This dashboard contains 3 cards, 1 graph, 1 input and 6 tables.

Usage

Install the mod:

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

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select OCI Database Autonomous DB Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run oci_insights.dashboard.database_autonomous_database_detail --share

Queries

This dashboard uses the the following queries:
select
is_access_control_enabled as "Access Control Enabled",
open_mode as "Open Mode",
permission_level as "Permission Level"
from
oci_database_autonomous_database
where
id = $1;
{
"$1": "id"
}

Tags