turbot/terraform_aws_compliance

Query: lambda_function_url_auth_type_configured

Usage

powerpipe query terraform_aws_compliance.query.lambda_function_url_auth_type_configured

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std ->> 'authorization_type') = 'NONE' then 'alarm'
else 'ok'
end as status,
split_part(address, '.', 2) || case
when (attributes_std ->> 'authorization_type') = 'NONE' then ' URLs AuthType is not configured'
else ' URLs AuthType is configured'
end || '.' as reason
, path || ':' || start_line
from
terraform_resource
where
type = 'aws_lambda_function_url';

Controls

The query is being used by the following controls: