How To Grant Access To Only One S3 Bucket Using AWS IAM Policy
How to restrict an IAM user’s access to a single S3 bucket
CPANEL alternate For S3 Bucket
How To Grant Access To Only One AWS resources Using AWS IAM Policy
######################################################################
To grant public read access for your website, copy the following bucket policy, and paste it in the Bucket policy editor.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicReadGetObject",
"Effect": "Allow",
"Principal": "*",
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::Bucket-Name/*"
]
}
]
}
####################################################
IAM Policy permission
Example policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetBucketLocation",
"s3:ListAllMyBuckets"
],
"Resource": "arn:aws:s3:::*"
},
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::mys3examplebucketvip",
"arn:aws:s3:::mys3examplebucketvip/*"
]
}
]
}
#####################################################
Thanks
easyaws2021@gmail.com
How To Grant Access To Only One S3 Bucket Using AWS IAM Policy
Теги
How to restrict an IAM user’s access to a single S3 bucketHow To Grant Access To Only One S3 Bucket Using AWS IAM PolicyCPANEL alternate For S3 BucketShare a single S3 bucket with IAM users3 bucket permission for IAM userAWS s3 bucketAWS s3 static wesite hostingAWS s3 static website hosting with IAM user permissionIAM policy for Grant Access To Only One S3 Buckets3buckets3 bucketHow To Grant Access To Only One AWS resources Using AWS IAM Policy