turbot/aws_insights

Query: vpc_vpcs_for_opensearch

Usage

powerpipe query aws_insights.query.vpc_vpcs_for_opensearch

Steampipe Tables

SQL

select
vpc_options ->> 'VPCId' AS vpc_id
from
aws_opensearch_domain
where
arn = $1
and account_id = split_part($1, ':', 5)
and region = split_part($1, ':', 4);