Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to attach IAM role in S3 bucket policy #117

Open
rajasekaran07 opened this issue Jan 31, 2017 · 1 comment
Open

Unable to attach IAM role in S3 bucket policy #117

rajasekaran07 opened this issue Jan 31, 2017 · 1 comment

Comments

@rajasekaran07
Copy link

rajasekaran07 commented Jan 31, 2017

Hi Team,

I am trying to provide my s3 bucket access to only specific IAM role instances. I applied below policy but it is not working.

{
"Version": "2008-10-17",
"Statement": [
{
"Sid": "Stmt1371012493903",
"Effect": "Deny",
"NotPrincipal": {
"AWS": "arn:aws:iam::(Account-no):role/(my-role)"
},
"Action": [
"s3:List*",
"s3:Get*"
],
"Resource": "arn:aws:s3:::my-bucket/*"
}
]
}

Also I configured aws using aws configure with my temporary access and secret access key using curl http://169.254.169.254/latest/meta-data/iam/security-credentials/ but still I am seeing

curl https://s3.amazonaws.com/my-bucket/myfile.json

AccessDeniedAccess Denied1C272502A24D780DYRP7gKyKfSQRzlKeOx/YpxHCjdh9AlBb80hcfwy9fjAAY9tlDNfmziRhfWzdIkDmgt/TWwT8Ink=

Regards,
Raja

@rajasekaran07
Copy link
Author

I followed the below link and modified my s3 policy as below I am unable to curl in both account.
https://aws.amazon.com/blogs/security/how-to-restrict-amazon-s3-bucket-access-to-a-specific-iam-role/

{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Deny",
"Principal": "",
"Action": "s3:
",
"Resource": [
"arn:aws:s3:::my-bucket",
"arn:aws:s3:::bucket/"
],
"Condition": {
"StringNotLike": {
"aws:userId": [
"AROAJZ45MYWZWL7SPA56W:
",
"27*******646"
]
}
}
}
]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants
@rajasekaran07 and others