turbot/aws_thrifty
Loading controls...

Control: Still using gp2 EBS volumes? Should use gp3 instead.

Description

EBS gp2 volumes are more costly and lower performance than gp3.

Usage

Run the control in your terminal:

powerpipe control run aws_thrifty.control.gp2_volumes

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run aws_thrifty.control.gp2_volumes --share

Steampipe Tables

SQL

select
arn as resource,
case
when volume_type = 'gp2' then 'alarm'
when volume_type = 'gp3' then 'ok'
else 'skip'
end as status,
volume_id || ' type is ' || volume_type || '.' as reason,
region,
account_id
from
aws_ebs_volume;

Tags