Resource: aws_sagemaker_project

Provides a SageMaker Project resource.

-> Note: If you are trying to use SageMaker projects with SageMaker studio you will need to add a tag with the key sagemaker:studio-visibility with value true. For more on requirements to use projects and permission needed see AWS Docs.

Example Usage

resource "aws_sagemaker_project" "example" {
  project_name = "example"

  service_catalog_provisioning_details {
    product_id = aws_servicecatalog_product.example.id
  }
}

Argument Reference

This resource supports the following arguments:

Service Catalog Provisioning Details

Provisioning Parameter

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import SageMaker Projects using the project_name. For example:

import {
  to = aws_sagemaker_project.example
  id = "example"
}

Using terraform import, import SageMaker Projects using the project_name. For example:

% terraform import aws_sagemaker_project.example example