Skip to content

Commit

Permalink
Merge pull request #169 from turbot/release/v0.27
Browse files Browse the repository at this point in the history
Release/v0.27
  • Loading branch information
misraved authored Jan 22, 2024
2 parents 2bbfeb1 + 2518b76 commit 375338a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v0.27 [2024-01-22]

_Bug fixes_

- Fixed the `low_iops_ebs_volumes` control to now suggest converting `io1` and `io2` volumes to `GP3` volumes, when the base `IOPS` is less than `16,000` instead of `3000`. ([#167](https://github.com/turbot/steampipe-mod-aws-thrifty/pull/167))

## v0.26 [2023-11-03]

_Breaking changes_
Expand Down
6 changes: 3 additions & 3 deletions controls/ebs.sp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ control "high_iops_ebs_volumes" {

control "low_iops_ebs_volumes" {
title = "What provisioned IOPS volumes would be better as GP3?"
description = "GP3 provides 3k base IOPS performance, don't use more costly io1 & io2 volumes."
description = "GP3 provides 16k base IOPS performance, don't use more costly io1 & io2 volumes."
severity = "low"
tags = merge(local.ebs_common_tags, {
class = "management"
Expand All @@ -203,12 +203,12 @@ control "low_iops_ebs_volumes" {
arn as resource,
case
when volume_type not in ('io1', 'io2') then 'skip'
when iops <= 3000 then 'alarm'
when iops <= 16000 then 'alarm'
else 'ok'
end as status,
case
when volume_type not in ('io1', 'io2') then volume_id || ' type is ' || volume_type || '.'
when iops <= 3000 then volume_id || ' only has ' || iops || ' iops.'
when iops <= 16000 then volume_id || ' only has ' || iops || ' iops.'
else volume_id || ' has ' || iops || ' iops.'
end as reason
${local.tag_dimensions_sql}
Expand Down

0 comments on commit 375338a

Please sign in to comment.