Hi.
I’m trying to use IAM with W3TC.
If I insert Access Key and Secret Key generated by first AWS access, all it’s ok.
But if I want to create a user in IAM with only full access to S3 and Cloud Front the plugin send me.
Error: Unable to list buckets (S3::listBuckets(): [SignatureDoesNotMatch] The request signature we calculated does not match the signature you provided. Check your key and signing method.)
Why?
Here my IAM policy
{
“Statement”: [
{
“Effect”: “Allow”,
“Action”: “s3:*”,
“Resource”: “*”
}
]
}
{
“Statement”: [
{
“Action”: [
“s3:ListAllMyBuckets”
],
“Effect”: “Allow”,
“Resource”: “arn:aws:s3:::*”
},
{
“Action”: [
“cloudfront:*”
],
“Effect”: “Allow”,
“Resource”: “*”
}
]
}