steampipe plugin install oci

Table: oci_identity_availability_domain - Query OCI Identity Availability Domains using SQL

Oracle Cloud Infrastructure's Identity and Access Management (IAM) service lets you control who has access to your cloud resources. Availability Domains are isolated from each other, fault-tolerant, and very unlikely to fail simultaneously. They provide the resources to run your applications and databases in a high-availability configuration.

Table Usage Guide

The oci_identity_availability_domain table provides insights into Availability Domains within OCI Identity and Access Management (IAM). As a cloud engineer, you can explore domain-specific details through this table, including their names, compartment IDs, and associated metadata. Use it to uncover information about domains, such as their status, the resources they hold, and their relationships with other domains.

Examples

Basic info

Explore the names and IDs of available domains within the Oracle Cloud Infrastructure (OCI) to manage and organize resources more efficiently. This can be particularly useful for system administrators seeking to streamline their resource allocation and tracking processes.

select
name,
id
from
oci_identity_availability_domain;
select
name,
id
from
oci_identity_availability_domain;

Schema for oci_identity_availability_domain

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
compartment_idtext=The OCID of the compartment in Tenant in which the resource is located.
idtextThe OCID of the Availability Domain.
nametextThe name of the Availability Domain.
regiontextThe OCI region in which the resource is located.
tenant_idtextThe OCID of the Tenant in which the resource is located.
tenant_nametextThe name of the Tenant in which the resource is located.
titletextTitle of the resource.

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_identity_availability_domain