cis_scan_reports
Creates, updates, deletes, gets or lists a cis_scan_reports resource.
Overview
| Name | cis_scan_reports |
| Type | Resource |
| Id | aws.inspector2.cis_scan_reports |
Fields
The following fields are returned by SELECT queries:
- get_cis_scan_report
| Name | Datatype | Description |
|---|---|---|
status | string | The status. (SUCCEEDED, FAILED, IN_PROGRESS) |
url | string | The URL where a PDF or CSV of the CIS scan report can be downloaded. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_cis_scan_report | select | region | Retrieves a CIS scan report. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_cis_scan_report
Retrieves a CIS scan report.
SELECT
status,
url
FROM aws.inspector2.cis_scan_reports
WHERE region = '{{ region }}' -- required
;