turbot/terraform_aws_compliance

Query: mq_broker_currect_broker_version

Usage

powerpipe query terraform_aws_compliance.query.mq_broker_currect_broker_version

Steampipe Tables

SQL

select
address as resource,
case
when ((attributes_std ->> 'engine_type') = 'ActiveMQ' and (regexp_split_to_array(attributes_std ->> 'engine_version', '\.')::int[] >= regexp_split_to_array('5.16', '\.')::int[])) then 'ok'
when ((attributes_std ->> 'engine_type') = 'RabbitMQ' and (regexp_split_to_array(attributes_std ->> 'engine_version', '\.')::int[] >= regexp_split_to_array('3.8', '\.')::int[])) then 'ok'
else 'alarm'
end as status,
split_part(address, '.', 2) || case
when ((attributes_std ->> 'engine_type') = 'ActiveMQ' and (regexp_split_to_array(attributes_std ->> 'engine_version', '\.')::int[] >= regexp_split_to_array('5.16', '\.')::int[])) then ' uses current broker version'
when ((attributes_std ->> 'engine_type') = 'RabbitMQ' and (regexp_split_to_array(attributes_std ->> 'engine_version', '\.')::int[] >= regexp_split_to_array('3.8', '\.')::int[])) then ' uses current broker version'
else ' does not use current broker version'
end || '.' as reason
, path || ':' || start_line
from
terraform_resource
where
type = 'aws_mq_broker';

Controls

The query is being used by the following controls: