Skip to content

Instantly share code, notes, and snippets.

@ssemichev
Last active November 15, 2022 00:46
Show Gist options
  • Save ssemichev/d1a876f38f82f9cfdb46eea3ccb13bb6 to your computer and use it in GitHub Desktop.
Save ssemichev/d1a876f38f82f9cfdb46eea3ccb13bb6 to your computer and use it in GitHub Desktop.
==IAM Roles:
1) AWSGlueServiceRoleDefault
-AWSGlueServiceRole
-SecretsManagerReadWrite
-AWSGlueKMS
-AWSGlueS3
2) AWSGlueServiceNotebookRoleDefault
-AWSGlueServiceNotebookRole
-SecretsManagerReadWrite
-AWSGlueS3
-AWSGlueKMS
==IAM Policies:
1) AWSGlueKMS
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"kms:Encrypt",
"kms:Decrypt"
],
"Resource": [
"*"
],
"Effect": "Allow"
}
]
}
2) AWSGlueS3
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:*",
"s3-object-lambda:*"
],
"Resource": [
"arn:aws:s3:::aws-glue-*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment