mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-24 20:00:27 -05:00
12 lines
275 B
SQL
12 lines
275 B
SQL
select
|
|
-- required columns
|
|
'arn:' || partition || ':::' || account_id as resource,
|
|
'info' as status,
|
|
'This is a manual control, you must verify compliance manually.' as reason,
|
|
-- extra columns (annotations?)
|
|
account_id,
|
|
partition,
|
|
region
|
|
from
|
|
aws_account;
|