Control: SageMaker training jobs should be enabled with inter-container traffic encryption
Description
Inter-container traffic encryption shoule be used to protect data that is transmitted between instances while performing distributed training. This control in compliant when inter-container traffic encryption is enabled.
Usage
Run the control in your terminal:
powerpipe control run aws_compliance.control.sagemaker_training_job_inter_container_traffic_encryption_enabled
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run aws_compliance.control.sagemaker_training_job_inter_container_traffic_encryption_enabled --share
SQL
This control uses a named query:
select arn as resource, case when enable_inter_container_traffic_encryption then 'ok' else 'alarm' end as status, case when enable_inter_container_traffic_encryption then title || ' inter-container traffic encryption enabled.' else title || ' inter-container traffic encryption disabled.' end as reason , region, account_idfrom aws_sagemaker_training_job;