turbot/aws_thrifty
Loading controls...

Control: Still using io1 EBS volumes? Should use io2 instead.

Description

io1 Volumes are less reliable than io2 for same cost.

Usage

Run the control in your terminal:

powerpipe control run aws_thrifty.control.io1_volumes

Snapshot and share results via Turbot Pipes:

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

Steampipe Tables

SQL

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

Tags