AWS SageMaker notebook instance configured with direct internet access feature
Description
We recommend that Direct Internet Access is enabled for an Amazon SageMaker Notebook Instances. TBA.
Code Example
go
resource "aws_sagemaker_notebook_instance" "test" {
name = "my-notebook-instance"
role_arn = aws_iam_role.role.arn
instance_type = "ml.t2.medium"
+ direct_internet_access = "Disabled"
tags = {
Name = "foo"
}
}Remediation
Terraform
- Resource: aws_sagemaker_notebook_instance
- Arguments: direct_internet_access
Rule Details
| Field | Value |
|---|---|
| ID | IAC-0175 |
| Severity | LOW |
| IaC Type | Terraform |
| Frameworks | Terraform, TerraformPlan |
| Checkov ID | CKV_AWS_122 |