turbot/alicloud
steampipe plugin install alicloud

Table: alicloud_kms_secret - Query Alicloud Key Management Service Secrets using SQL

Alicloud Key Management Service (KMS) Secrets is a feature of the Alicloud KMS that helps manage the lifecycle of secrets. It provides a secure and convenient method to create, use, and manage secrets, including database passwords, API keys, and other sensitive information. It also supports secret versioning and rotation to enhance the security of applications.

Table Usage Guide

The alicloud_kms_secret table provides insights into secrets within Alicloud Key Management Service (KMS). As a security engineer, explore secret-specific details through this table, including their lifecycle stages, rotation configurations, and recovery windows. Utilize it to uncover information about secrets, such as their current status, the last time they were accessed, and whether they are scheduled for deletion.

Examples

Basic info

Explore the basic information of your encrypted data keys in Alibaba Cloud's Key Management Service. This allows you to understand the type of secrets you have, when they were created, and their overall descriptions, aiding in efficient key management.

select
name,
description,
arn,
secret_type,
create_time
from
alicloud_kms_secret;
select
name,
description,
arn,
secret_type,
create_time
from
alicloud_kms_secret;

List secrets that do not have automatic rotation enabled

Uncover the details of encryption secrets that are not set to auto-renew, potentially exposing your system to security risks. This is useful for identifying and rectifying weak points in your security infrastructure.

select
name,
secret_type automatic_rotation
from
alicloud_kms_secret
where
automatic_rotation <> 'Enabled';
select
name,
secret_type as automatic_rotation
from
alicloud_kms_secret
where
automatic_rotation != 'Enabled';

List secrets that have not been rotated within the last 30 days

Explore which secrets have not been updated in the last month. This is useful for maintaining security standards and ensuring that sensitive information is regularly updated.

select
name,
secret_type,
automatic_rotation
from
alicloud_kms_secret
where
last_rotation_date < (current_date - interval '30' day);
select
name,
secret_type,
automatic_rotation
from
alicloud_kms_secret
where
last_rotation_date < date('now', '-30 day');

Get the extended configuration info for each secret

This query is useful for gaining insights into the extended configuration details of each secret, such as the associated database name and instance ID, as well as the secret subtype. It can help in understanding and managing the security aspects of your cloud resources.

select
name,
extended_config -> 'CustomData' ->> 'DBName' as db_name,
extended_config ->> 'DBInstanceId' as db_instance_id,
extended_config ->> 'SecretSubType' as secret_sub_type
from
alicloud_kms_secret;
select
name,
json_extract(
json_extract(extended_config, '$.CustomData'),
'$.DBName'
) as db_name,
json_extract(extended_config, '$.DBInstanceId') as db_instance_id,
json_extract(extended_config, '$.SecretSubType') as secret_sub_type
from
alicloud_kms_secret;

List secrets without application tag key

Discover the segments that have secrets without an application tag key. This is useful to identify and manage secrets that may not be associated with a specific application.

select
name,
tags
from
alicloud_kms_secret
where
not tags :: JSONB ? 'application';
select
name,
tags
from
alicloud_kms_secret
where
json_extract(tags, '$.application') is null;

Schema for alicloud_kms_secret

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
account_idtextThe Alicloud Account ID in which the resource is located.
akasjsonbArray of globally unique identifier strings (also known as) for the resource.
arntextThe Alibaba Cloud Resource Name (ARN).
automatic_rotationtextSpecifies whether automatic key rotation is enabled.
create_timetimestamp with time zoneThe time when the KMS Secret was created.
descriptiontextThe description of the secret.
encryption_key_idtextThe ID of the KMS customer master key (CMK) that is used to encrypt the secret value.
extended_configjsonbThe extended configuration of Secret.
last_rotation_datetimestamp with time zoneDate of last rotation of Secret.
nametext=The name of the secret.
next_rotation_datetimestamp with time zoneThe date of next rotation of Secret.
planned_delete_timetimestamp with time zoneThe time when the KMS Secret is planned to delete.
regiontextThe Alicloud region in which the resource is located.
rotation_intervaltextThe rotation perion of Secret.
secret_typetextThe type of the secret.
tagsjsonbA map of tags for the resource.
tags_srcjsonbA list of tags attached with the resource.
titletextTitle of the resource.
update_timetimestamp with time zoneThe time when the KMS Secret was modifies.
version_idsjsonbThe list of secret versions.

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)" -- alicloud

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

steampipe_export_alicloud --config '<your_config>' alicloud_kms_secret