Table: aws_accessanalyzer_analyzer - Query AWS Access Analyzer using SQL
The AWS Access Analyzer is a service that helps to identify resources in your organization and accounts, such as S3 buckets or IAM roles, that are shared with an external entity. It uses logic-based reasoning to analyze the resource-based policies in your AWS environment, allowing you to identify unintended access to your resources and data. This helps in mitigating potential security risks.
Table Usage Guide
The aws_accessanalyzer_analyzer
table in Steampipe provides you with information about analyzers within AWS IAM Access Analyzer. This table allows you, as a DevOps engineer, to query analyzer-specific details, including the analyzer ARN, type, status, and associated metadata. You can utilize this table to gather insights on analyzers, such as the status of each analyzer, the type of analyzer, and the resource that was analyzed. The schema outlines the various attributes of the Access Analyzer for you, including the analyzer ARN, creation time, last resource scanned, and associated tags.
Examples
Basic info
Explore the status and type of your AWS Access Analyzer to understand when the last resource was analyzed. This could be beneficial for maintaining security and compliance in your AWS environment.The query provides an overview of AWS Access Analyzer analyzers in a user's environment. It helps in monitoring the current status and types of analyzers, along with the details of the most recent resources analyzed. This is useful for administrators and security personnel to ensure that their AWS environment is continuously scanned for compliance and security risks, and to stay informed about the analyzer's activities and findings.
select name, last_resource_analyzed, last_resource_analyzed_at, status, typefrom aws_accessanalyzer_analyzer;
select name, last_resource_analyzed, last_resource_analyzed_at, status, typefrom aws_accessanalyzer_analyzer;
List analyzers which are enabled
Determine the areas in which AWS Access Analyzer is active to gain insights into potential security and access control issues. This is useful for maintaining optimal security practices and ensuring that all analyzers are functioning as expected.The query identifies and provides details on all active AWS Access Analyzer analyzers. It is particularly useful for ensuring that the necessary analyzers are operational and actively scanning resources. This information aids in maintaining continuous compliance and security oversight by highlighting only those analyzers currently in an active state, along with their last analyzed resources and associated tags. This enables efficient tracking and management of security analysis tools within the AWS environment.
select name, status last_resource_analyzed, last_resource_analyzed_at, tagsfrom aws_accessanalyzer_analyzerwhere status = 'ACTIVE';
select name, status, last_resource_analyzed, last_resource_analyzed_at, tagsfrom aws_accessanalyzer_analyzerwhere status = 'ACTIVE';
List analyzers with findings that need to be resolved
Explore which active AWS Access Analyzer instances have findings that require resolution. This is useful in identifying potential security risks that need immediate attention.The query focuses on identifying active AWS Access Analyzer analyzers that have unresolved findings. It serves as a tool for security and compliance teams to pinpoint which analyzers have detected potential issues, needing immediate attention. By filtering for active analyzers with existing findings, it streamlines the process of addressing security or compliance concerns within the AWS environment, ensuring that no critical issues are overlooked. This aids in maintaining a secure and compliant cloud infrastructure.
select name, status, type, last_resource_analyzedfrom aws_accessanalyzer_analyzerwhere status = 'ACTIVE' and findings is not null;
select name, status, type, last_resource_analyzedfrom aws_accessanalyzer_analyzerwhere status = 'ACTIVE' and findings is not null;
Control examples
- All Controls > IAM > Ensure that IAM Access analyzer is enabled for all regions
- All Controls > IAM > IAM Access analyzer should be enabled without findings
- CIS v1.3.0 > 1 Identity and Access Management > 1.21 Ensure that IAM Access analyzer is enabled
- CIS v1.4.0 > 1 Identity and Access Management > 1.20 Ensure that IAM Access analyzer is enabled for all regions
- CIS v1.5.0 > 1 Identity and Access Management > 1.20 Ensure that IAM Access analyzer is enabled for all regions
- CIS v2.0.0 > 1 Identity and Access Management > 1.20 Ensure that IAM Access analyzer is enabled for all regions
- CIS v3.0.0 > 1 Identity and Access Management > 1.20 Ensure that IAM Access analyzer is enabled for all regions
Schema for aws_accessanalyzer_analyzer
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
account_id | text | =, !=, ~~, ~~*, !~~, !~~* | The AWS Account ID in which the resource is located. |
akas | jsonb | Array of globally unique identifier strings (also known as) for the resource. | |
arn | text | The ARN of the analyzer. | |
created_at | timestamp with time zone | A timestamp for the time at which the analyzer was created. | |
findings | jsonb | [DEPRECATED] This column has been deprecated and will be removed in a future release, use table aws_accessanalyzer_finding instead. A list of findings retrieved from the analyzer that match the filter criteria specified, if any. | |
last_resource_analyzed | text | The resource that was most recently analyzed by the analyzer. | |
last_resource_analyzed_at | timestamp with time zone | The time at which the most recently analyzed resource was analyzed. | |
name | text | = | The name of the Analyzer. |
partition | text | The AWS partition in which the resource is located (aws, aws-cn, or aws-us-gov). | |
region | text | The AWS Region in which the resource is located. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
status | text | The status of the analyzer. | |
status_reason | text | The statusReason provides more details about the current status of the analyzer. | |
tags | jsonb | A map of tags for the resource. | |
title | text | Title of the resource. | |
type | text | = | The type of analyzer, which corresponds to the zone of trust chosen for the analyzer. |
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_accessanalyzer_analyzer