AWS - IAM & Policy Management

Sample AWS s3 bucket access policy to a user :
{
"Version" : "2012-10-17",
"Statement" : [
{
"Sid" : "Statement1",
"Effect" : "Allow",
"Action" : "s3:*",
"Resource" : "*"
}
]
}Level -1 : Creating User Account
POC :








Level -2 Assigning S3 Rights to the test-user
AWS IAM Documentation - Level 2: Assigning S3 Rights to the Test User
POC :





Level 3 : Attaching permissions to the user
POC :




Last updated