Control: SageMaker training jobs should be in a VPC
Description
This control checks whether SageMaker training jobs are deployed in a VPC.
Usage
Run the control in your terminal:
powerpipe control run aws_perimeter.control.sagemaker_training_job_in_vpc
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run aws_perimeter.control.sagemaker_training_job_in_vpc --share
Steampipe Tables
SQL
select arn as resource, case when vpc_config is not null then 'ok' else 'alarm' end status, case when vpc_config is not null then title || ' in VPC.' else title || ' not in VPC.' end reason , region, account_idfrom aws_sagemaker_training_job;