Adding IAM IdC Group to Sagemaker Studio

0

I am using aws_sagemaker_domain to create a Sagemaker domain. I can also use aws_safemaker_user_profile to add individual users to the user profile list.

That is part is not really valuable because if we assign a group under the "Groups" tab in the Management Console, any user within that group has a user profile created at run time. Documentation followed to add the group via the Management Console

The problem: I can't find any way to add the group to the Sagemaker Domain other than through the Management Console. I need to use Terraform, but I cannot even find any of the documentation within CloudFormation.

1 Answer
0

You can use this here: https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ssoadmin_application_assignment

resource "aws_ssoadmin_application_assignment" "sagemaker_with_idc_group" { application_arn = var.value principal_id = var.sagemaker_sso_groupid principal_type = "GROUP" }

CS
answered 5 days ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions