mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-23 04:00:11 -04:00
16 lines
497 B
SQL
16 lines
497 B
SQL
select
|
|
-- Required Columns
|
|
'arn:' || partition || ':apigateway:' || region || '::/apis/' || rest_api_id || '/stages/' as resource,
|
|
case
|
|
when client_certificate_id is null then 'alarm'
|
|
else 'ok'
|
|
end as status,
|
|
case
|
|
when client_certificate_id is null then title || ' not uses SSL certificate.'
|
|
else title || ' uses SSL certificate.'
|
|
end as reason,
|
|
-- Additional Dimensions
|
|
region,
|
|
account_id
|
|
from
|
|
aws_api_gateway_stage; |