Resource: aws_sagemaker_user_profile

Provides a SageMaker User Profile resource.

Example Usage

Basic usage

resource "aws_sagemaker_user_profile" "example" {
  domain_id         = aws_sagemaker_domain.test.id
  user_profile_name = "example"
}

Argument Reference

This resource supports the following arguments:

user_settings

space_storage_settings

sharing_settings

code_editor_app_settings

tensor_board_app_settings

kernel_gateway_app_settings

jupyter_server_app_settings

jupyter_lab_app_settings

code_editor_app_settings

r_session_app_settings

r_studio_server_pro_domain_settings

r_studio_server_pro_app_settings

code_repository
default_resource_spec
custom_image

canvas_app_settings

identity_provider_oauth_settings
direct_deploy_settings
kendra_settings
model_register_settings
time_series_forecasting_settings
workspace_settings
default_ebs_storage_settings

custom_file_system_config

efs_file_system_config

custom_posix_user_config

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 User Profiles using the arn. For example:

import {
  to = aws_sagemaker_user_profile.test_user_profile
  id = "arn:aws:sagemaker:us-west-2:123456789012:user-profile/domain-id/profile-name"
}

Using terraform import, import SageMaker User Profiles using the arn. For example:

% terraform import aws_sagemaker_user_profile.test_user_profile arn:aws:sagemaker:us-west-2:123456789012:user-profile/domain-id/profile-name