turbot/steampipe-mod-aws-compliance

Query: sagemaker_notebook_instance_supported_platform_version

Usage

powerpipe query aws_compliance.query.sagemaker_notebook_instance_supported_platform_version

SQL

select
arn as resource,
case
when platform_identifier like any ($1) then 'ok'
else 'alarm'
end as status,
case
when platform_identifier like any ($1) then title || ' runs on supported platform version(' || platform_identifier || ').'
else title || ' does not run on supported platform version(' || platform_identifier || ').'
end as reason
, region, account_id
from
aws_sagemaker_notebook_instance;

Params

ArgsNameDefaultDescriptionVariable
$1sagemaker_notebook_instance_supported_platform_version
["notebook-al2-v3"]
A list of supported platform versions for SageMaker notebook instance.

Controls

The query is being used by the following controls: