Saltar al contenido

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 Respuesta
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" }

respondido hace un año

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.