Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add platform_identifier to r/aws_sagemaker_notebook_instance #20711

Merged
merged 5 commits into from
Aug 30, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions aws/resource_aws_sagemaker_notebook_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"context"
"fmt"
"log"
"regexp"
"time"

"github.com/aws/aws-sdk-go/aws"
Expand Down Expand Up @@ -56,6 +57,15 @@ func resourceAwsSagemakerNotebookInstance() *schema.Resource {
Required: true,
ValidateFunc: validation.StringInSlice(sagemaker.InstanceType_Values(), false),
},

"platform_identifier": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
ValidateFunc: validation.StringMatch(regexp.MustCompile(`^(notebook-al1-v1|notebook-al2-v1)$`), ""),
},

"additional_code_repositories": {
Type: schema.TypeSet,
Optional: true,
Expand Down Expand Up @@ -147,6 +157,10 @@ func resourceAwsSagemakerNotebookInstanceCreate(d *schema.ResourceData, meta int
createOpts.RootAccess = aws.String(v.(string))
}

if v, ok := d.GetOk("platform_identifier"); ok {
createOpts.PlatformIdentifier = aws.String(v.(string))
}

if v, ok := d.GetOk("direct_internet_access"); ok {
createOpts.DirectInternetAccess = aws.String(v.(string))
}
Expand Down Expand Up @@ -226,6 +240,11 @@ func resourceAwsSagemakerNotebookInstanceRead(d *schema.ResourceData, meta inter
if err := d.Set("instance_type", notebookInstance.InstanceType); err != nil {
return fmt.Errorf("error setting instance_type for sagemaker notebook instance (%s): %s", d.Id(), err)
}

if err := d.Set("platform_identifier", notebookInstance.PlatformIdentifier); err != nil {
return fmt.Errorf("error setting platform_identifier for sagemaker notebook instance (%s): %s", d.Id(), err)
}

if err := d.Set("subnet_id", notebookInstance.SubnetId); err != nil {
return fmt.Errorf("error setting subnet_id for sagemaker notebook instance (%s): %s", d.Id(), err)
}
Expand Down
45 changes: 45 additions & 0 deletions aws/resource_aws_sagemaker_notebook_instance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ func TestAccAWSSagemakerNotebookInstance_basic(t *testing.T) {
testAccCheckAWSSagemakerNotebookInstanceExists(resourceName, &notebook),
resource.TestCheckResourceAttr(resourceName, "name", rName),
resource.TestCheckResourceAttr(resourceName, "instance_type", "ml.t2.medium"),
resource.TestCheckResourceAttr(resourceName, "platform_identifier", "notebook-al1-v1"),
resource.TestCheckResourceAttrPair(resourceName, "role_arn", "aws_iam_role.test", "arn"),
resource.TestCheckResourceAttr(resourceName, "direct_internet_access", "Enabled"),
resource.TestCheckResourceAttr(resourceName, "root_access", "Enabled"),
Expand Down Expand Up @@ -435,6 +436,40 @@ func TestAccAWSSagemakerNotebookInstance_root_access(t *testing.T) {
})
}

func TestAccAWSSagemakerNotebookInstance_platform_identifier(t *testing.T) {
var notebook sagemaker.DescribeNotebookInstanceOutput
rName := acctest.RandomWithPrefix("tf-acc-test")
resourceName := "aws_sagemaker_notebook_instance.test"

resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ErrorCheck: testAccErrorCheck(t, sagemaker.EndpointsID),
Providers: testAccProviders,
CheckDestroy: testAccCheckAWSSagemakerNotebookInstanceDestroy,
Steps: []resource.TestStep{
{
Config: testAccAWSSagemakerNotebookInstanceConfigPlatformIdentifier(rName, "notebook-al2-v1"),
Check: resource.ComposeTestCheckFunc(
testAccCheckAWSSagemakerNotebookInstanceExists(resourceName, &notebook),
resource.TestCheckResourceAttr(resourceName, "platform_identifier", "notebook-al2-v1"),
),
},
{
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
},
{
Config: testAccAWSSagemakerNotebookInstanceConfigPlatformIdentifier(rName, "notebook-al1-v1"),
Check: resource.ComposeTestCheckFunc(
testAccCheckAWSSagemakerNotebookInstanceExists(resourceName, &notebook),
resource.TestCheckResourceAttr(resourceName, "platform_identifier", "notebook-al1-v1"),
),
},
},
})
}

func TestAccAWSSagemakerNotebookInstance_direct_internet_access(t *testing.T) {
var notebook sagemaker.DescribeNotebookInstanceOutput
rName := acctest.RandomWithPrefix("tf-acc-test")
Expand Down Expand Up @@ -701,6 +736,16 @@ resource "aws_sagemaker_notebook_instance" "test" {
`, rName, rootAccess)
}

func testAccAWSSagemakerNotebookInstanceConfigPlatformIdentifier(rName string, platformIdentifier string) string {
return testAccAWSSagemakerNotebookInstanceBaseConfig(rName) + fmt.Sprintf(`
resource "aws_sagemaker_notebook_instance" "test" {
name = %[1]q
role_arn = aws_iam_role.test.arn
instance_type = "ml.t2.medium"
platform_identifier = %[2]q
}
`, rName, platformIdentifier)
}
func testAccAWSSagemakerNotebookInstanceConfigDirectInternetAccess(rName string, directInternetAccess string) string {
return testAccAWSSagemakerNotebookInstanceBaseConfig(rName) +
fmt.Sprintf(`
Expand Down