mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-22 19:00:13 -04:00
14 lines
392 B
SQL
14 lines
392 B
SQL
-- Required Columns
|
|
select arn as resource,
|
|
case
|
|
when users is null then 'alarm'
|
|
else 'ok'
|
|
end as status,
|
|
case
|
|
when users is null then title || ' not associated with any IAM user.'
|
|
else title || ' associated with IAM user.'
|
|
end as reason,
|
|
-- Additional Dimensions
|
|
account_id
|
|
from
|
|
aws_iam_group; |