aws.redshift
Supported platform
- aws
Description
Amazon Redshift
Use the aws.redshift resource to assess the configuration of Amazon Redshift deployments. The resource returns lists of aws.rds.dbcluster, aws.rds.dbinstance, and aws.rds.snapshot resources, each with fields for assessing the configuration of those assets.
Fields
| ID | TYPE | DESCRIPTION |
|---|---|---|
| clusters | []aws.redshift.cluster | List of clusters |
Examples
Return a list of Amazon Redshift clusters deployed across all enabled regions and the values for specified fields
aws.redshift.clusters {
arn
encrypted
nodeType
allowVersionUpgrade
preferredMaintenanceWindow
automatedSnapshotRetentionPeriod
publiclyAccessible
parameters
logging
name
region
clusterParameterGroupNames
}
Return a list of Amazon Redshift clusters that are not encrypted and the values for the arn region and name fields
aws.redshift.clusters.where( encrypted == false ) {
arn
region
name
}
References