steampipe plugin install oci

Table: oci_cloud_guard_configuration - Query OCI Cloud Guard Configurations using SQL

Oracle Cloud Infrastructure's Cloud Guard is a security service that identifies security weaknesses and activities amongst your resources and assists you in rapidly acting upon them. Cloud Guard uses detectors to identify security issues and a responder to act on these issues. It monitors your entire tenancy and ensures that your resources stay secure.

Table Usage Guide

The oci_cloud_guard_configuration table provides insights into Cloud Guard Configurations within Oracle Cloud Infrastructure's Cloud Guard. As a security administrator, explore configuration-specific details through this table, including status, compartment id, and associated metadata. Utilize it to uncover information about configurations, such as their current status, the compartment they belong to, and the detailed settings.

Examples

Basic info

Analyze the settings to understand the status and management of resources across different reporting regions in your OCI Cloud Guard configuration. This can help determine areas where resources are self-managed and where intervention may be needed.

select
reporting_region,
status,
self_manage_resources
from
oci_cloud_guard_configuration;
select
reporting_region,
status,
self_manage_resources
from
oci_cloud_guard_configuration;

Schema for oci_cloud_guard_configuration

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
reporting_regiontextThe reporting region value.
self_manage_resourcesbooleanIdentifies if Oracle managed resources were created by customers.
statustextStatus of Cloud Guard Tenant.
tenant_idtextThe OCID of the Tenant in which the resource is located.
tenant_nametextThe name of the Tenant in which the resource is located.

Export

This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.

You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh script:

/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- oci

You can pass the configuration to the command with the --config argument:

steampipe_export_oci --config '<your_config>' oci_cloud_guard_configuration