steampipe plugin install aws

Table: aws_rds_db_instance_automated_backup - Query AWS RDS DB Instance Automated Backups using SQL

The AWS RDS DB Instance Automated Backup is a feature of Amazon RDS that enables automated backups of your DB instances. These backups include transaction logs so that you can perform a point-in-time recovery of your databases. Automated backups are kept for a specified, configurable period, allowing you to restore the database to any point in time during that period.

Table Usage Guide

The aws_rds_db_instance_automated_backup table in Steampipe allows you to query AWS RDS DB Instance Automated Backups. This table provides you with data about automated backups for RDS DB instances. It enables you, as a DevOps engineer, database administrator, or other technical professional, to query backup-specific details, including backup status, retention period, and associated metadata. You can utilize this table to gather insights on backups, such as backup statuses, encrypted backups, verification of backup retention periods, and more. The schema outlines the various attributes of the automated backup for you, including the backup ARN, backup creation date, backup size, and associated tags.

Examples

Basic info

Discover the segments that are encrypted within your automated backup instances on AWS RDS, enabling you to assess the elements within your database that are secure. This is particularly useful when managing data security and ensuring compliance with data protection regulations.

select
db_instance_identifier,
arn,
status,
allocated_storage,
encrypted,
engine
from
aws_rds_db_instance_automated_backup;
select
db_instance_identifier,
arn,
status,
allocated_storage,
encrypted,
engine
from
aws_rds_db_instance_automated_backup;

List DB instance automated backups that are not encrypted

Identify instances where automated backups of your database are not encrypted. This can be useful to enhance your data security by ensuring all backups are encrypted.

select
db_instance_identifier,
arn,
status,
backup_target,
instance_create_time,
encrypted,
engine
from
aws_rds_db_instance_automated_backup
where
not encrypted;
select
db_instance_identifier,
arn,
status,
backup_target,
instance_create_time,
encrypted,
engine
from
aws_rds_db_instance_automated_backup
where
encrypted = 0;

List DB instance automated backups that are not authenticated through IAM users and roles

Identify instances where automated backups of the database are not authenticated through IAM users and roles. This is useful for ensuring all backups have the necessary security measures in place.

select
db_instance_identifier,
iam_database_authentication_enabled,
status,
availability_zone,
dbi_resource_id
from
aws_rds_db_instance_automated_backup
where
not iam_database_authentication_enabled;
select
db_instance_identifier,
iam_database_authentication_enabled,
status,
availability_zone,
dbi_resource_id
from
aws_rds_db_instance_automated_backup
where
iam_database_authentication_enabled = 0;

Get VPC and subnet info for each DB instance automated backup

This example helps you analyze the relationship between your automated backup instances for your database and their associated virtual private clouds (VPC) and subnets. It's useful for understanding your infrastructure setup and how your database backups are distributed across different VPCs.

select
b.arn,
b.vpc_id,
v.cidr_block,
v.is_default,
v.instance_tenancy
from
aws_rds_db_instance_automated_backup as b,
aws_vpc as v
where
v.vpc_id = b.vpc_id;
select
b.arn,
b.vpc_id,
v.cidr_block,
v.is_default,
v.instance_tenancy
from
aws_rds_db_instance_automated_backup as b
join aws_vpc as v on v.vpc_id = b.vpc_id;

List DB instance automated backups of deleted instances

Discover the segments that are retaining automated backups of deleted database instances. This can be helpful in identifying instances where you may want to free up storage or ensure data from deleted instances is properly archived.

select
db_instance_identifier,
arn,
engine,
engine_version,
availability_zone,
backup_retention_period,
status
from
aws_rds_db_instance_automated_backup
where
status = 'retained';
select
db_instance_identifier,
arn,
engine,
engine_version,
availability_zone,
backup_retention_period,
status
from
aws_rds_db_instance_automated_backup
where
status = 'retained';

Get KMS key details of each DB instance automated backup

Determine the areas in which each database instance's automated backup uses a specific Key Management Service (KMS) key. This can help in understanding the security measures in place and the overall configuration of database backups.

select
b.db_instance_identifier,
b.arn as automated_backup_arn,
b.engine,
b.kms_key_id,
k.creation_date as kms_key_creation_date,
k.key_state,
k.key_rotation_enabled
from
aws_rds_db_instance_automated_backup as b,
aws_kms_key as k
where
k.id = b.kms_key_id;
select
b.db_instance_identifier,
b.arn as automated_backup_arn,
b.engine,
b.kms_key_id,
k.creation_date as kms_key_creation_date,
k.key_state,
k.key_rotation_enabled
from
aws_rds_db_instance_automated_backup as b,
aws_kms_key as k
where
k.id = b.kms_key_id;

Schema for aws_rds_db_instance_automated_backup

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
account_idtext=, !=, ~~, ~~*, !~~, !~~*The AWS Account ID in which the resource is located.
akasjsonbArray of globally unique identifier strings (also known as) for the resource.
allocated_storagebigintSpecifies the allocated storage size in gibibytes (GiB).
arntext=The Amazon Resource Name (ARN) for the replicated automated backups.
availability_zonetextThe Availability Zone that the automated backup was created in.
backup_retention_periodbigintThe retention period for the automated backups.
backup_targettextSpecifies where automated backups are stored: Amazon Web Services Outposts or the Amazon Web Services Region.
db_instance_arntextThe Amazon Resource Name (ARN) for the automated backups.
db_instance_automated_backups_replicationsjsonbThe list of replications to different Amazon Web Services Regions associated with the automated backup.
db_instance_identifiertext=The friendly name to identify the DB Instance.
dbi_resource_idtext=The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web Services Region.
encryptedbooleanSpecifies whether the automated backup is encrypted.
enginetextThe name of the database engine for this automated backup.
engine_versiontextThe version of the database engine for the automated backup.
iam_database_authentication_enabledbooleanTrue if mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false.
instance_create_timetimestamp with time zoneTrue if mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false.
iopsbigintTrue if mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false.
kms_key_idtextThe Amazon Web Services KMS key ID for an automated backup. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
license_modeltextThe Amazon Web Services KMS key ID for an automated backup. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
master_usernametextThe license model of an automated backup.
option_group_nametextThe option group the automated backup is associated with. If omitted, the default option group for the engine specified is used.
partitiontextThe AWS partition in which the resource is located (aws, aws-cn, or aws-us-gov).
portbigintThe port number that the automated backup used for connections. Default: Inherits from the source DB instance Valid Values: 1150-65535.
regiontextThe AWS Region in which the resource is located.
restore_windowjsonbEarliest and latest time an instance can be restored to.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
statustext=Specifies the current state of this database.
storage_throughputbigintSpecifies the storage throughput for the automated backup.
storage_typetextSpecifies the storage type associated with the automated backup.
tde_credential_arntextThe ARN from the key store with which the automated backup is associated for TDE encryption.
timezonetextThe time zone of the automated backup.
titletextTitle of the resource.
vpc_idtextProvides the VPC ID associated with the DB instance.

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

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

steampipe_export_aws --config '<your_config>' aws_rds_db_instance_automated_backup