スキップしてコンテンツを表示

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回答
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" }

回答済み 1年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。