turbot/aws_insights

Query: vpc_vpcs_for_rds_db_instance

Usage

powerpipe query aws_insights.query.vpc_vpcs_for_rds_db_instance

Steampipe Tables

SQL

select
vpc_id
from
aws_rds_db_instance as di
where
di.arn = $1
and di.account_id = split_part($1, ':', 5)
and di.region = split_part($1, ':', 4);