turbot/aws_insights

Query: efs_access_points_for_efs_file_system

Usage

powerpipe query aws_insights.query.efs_access_points_for_efs_file_system

SQL

select
a.access_point_arn as access_point_arn
from
aws_efs_access_point as a
left join aws_efs_file_system as f on a.file_system_id = f.file_system_id
where
f.arn = $1;