turbot/terraform_aws_compliance

Query: eks_cluster_secrets_encrypted

Usage

powerpipe query terraform_aws_compliance.query.eks_cluster_secrets_encrypted

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std -> 'encryption_config') is null then 'alarm'
when (attributes_std -> 'encryption_config' -> 'resources') @> '["secrets"]' then 'ok'
else 'alarm'
end status,
split_part(address, '.', 2) || case
when (attributes_std -> 'encryption_config') is null then ' encryption disabled'
when (attributes_std -> 'encryption_config' -> 'resources') @> '["secrets"]' then ' encrypted with EKS secrets'
else ' not encrypted with EKS secrets'
end || '.' reason,
path || ':' || start_line
from
terraform_resource
where
type = 'aws_eks_cluster';

Controls

The query is being used by the following controls: