AWS Glue - Cannot create Jupyter notebook

0

Hi, when I try to create a Jupyter notebook job with AWS Glue, I get the following error: AWSGlueError However, as you can see, the role already has those permissions: AWSGlueRolePermissions Please, could you tell me how to fix this?

preguntada hace un año486 visualizaciones
1 Respuesta
1

The error message indicates that the IAM role cannot be assigned.
Are the following policies set for IAM role trust relationships?

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Principal": {
                "Service": "glue.amazonaws.com"
            },
            "Action": "sts:AssumeRole"
        }
    ]
}

Also, check with them to see if there are solutions to the following problems.
https://stackoverflow.com/a/48772179

profile picture
EXPERTO
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.

Pautas para responder preguntas