turbot/steampipe-mod-terraform-gcp-compliance

Control: Compute instance boot disk encryption should be enabled

Description

This control checks whether Compute instance boot disk encryption is enabled.

Usage

Run the control in your terminal:

powerpipe control run terraform_gcp_compliance.control.compute_instance_boot_disk_encryption_enabled

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run terraform_gcp_compliance.control.compute_instance_boot_disk_encryption_enabled --share

SQL

This control uses a named query:

select
address as resource,
case
when (attributes_std -> 'boot_disk' -> 'disk_encryption_key_raw') is not null or (attributes_std -> 'boot_disk' -> 'kms_key_self_link') is not null then 'ok'
else 'alarm'
end status,
split_part(address, '.', 2) || case
when (attributes_std -> 'boot_disk' -> 'disk_encryption_key_raw') is not null or (attributes_std -> 'boot_disk' -> 'kms_key_self_link') is not null then ' boot disk encryption enabled'
else ' boot disk encryption disabled'
end || '.' reason
, path || ':' || start_line
from
terraform_resource
where
type = 'google_compute_instance';

Tags