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_volumesSnapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run aws_thrifty.control.io1_volumes --shareSteampipe 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_idfrom  aws_ebs_volume;