我一直在尝试使用带有KMS密钥的服务器端加密时对AWS S3进行PutObject调用,但是该调用始终失败,并显示403代码,并且消息显示“ Access Denied”。
这是我正在使用的C#代码:
const string fileName = "test.txt";
using (var stream = new MemoryStream())
{
using (var sw = new StreamWriter(stream))
{
sw.AutoFlush = true;
sw.Write("letsseeifthisworks");
var por = new PutObjectRequest
{
BucketName = _bucketname,
Key = fileName,
InputStream = stream,
ServerSideEncryptionMethod = ServerSideEncryptionMethod.AWSKMS,
ServerSideEncryptionKeyManagementServiceKeyId = _kmsKeyId
};
var response = _s3Client.PutObject(por);
}
}
这是HTTP请求的样子:
PUT https://notarealcorp.s3.us-west-1.amazonaws.com/test.txt HTTP/1.1
Content-Type: text/plain
x-amz-server-side-encryption: aws:kms
x-amz-server-side-encryption-aws-kms-key-id: arn:aws:kms:us-west-1:<account>:key/<kms-key-guid>
User-Agent: aws-sdk-dotnet-45/3.3.16.2 aws-sdk-dotnet-core/3.3.21.6 .NET_Runtime/4.0 .NET_Framework/4.0 OS/Microsoft_Windows_NT_6.1.7601_Service_Pack_1 ClientSync
host: notarealcorp.s3.us-west-1.amazonaws.com
X-Amz-Date: 20180109T072431Z
X-Amz-Decoded-Content-Length: 18
X-Amz-Content-SHA256: STREAMING-AWS4-HMAC-SHA256-PAYLOAD
Authorization: AWS4-HMAC-SHA256 Credential=<access-key>/20180109/us-west-1/s3/aws4_request, SignedHeaders=content-length;content-type;host;user-agent;x-
amz-content-sha256;x-amz-date;x-amz-decoded-content-length;x-amz-server-side-encryption;x-amz-server-side-encryption-aws-kms-key-id, Signature=<signature>
Content-Length: 191
Expect: 100-continue
12;chunk-signature=<another-signature>
letsseeifthisworks
0;chunk-signature=<yet-another-signature>
这是响应:
HTTP/1.1 403 Forbidden
x-amz-request-id: <request-id>
x-amz-id-2: <host-id>
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Tue, 09 Jan 2018 07:24:31 GMT
Connection: close
Server: AmazonS3
f3
<?xml version="1.0" encoding="UTF-8"?>
<Error><Code>AccessDenied</Code><Message>Access Denied</Message>
<RequestId>request-id</RequestId><HostId>host-id</HostId></Error>
0
这些是我设置的IAM权限。首先,S3:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": "*"
}
]
}
然后是KMS:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": "kms:*",
"Resource": "*"
}
]
}
当我注释掉加密时,呼叫将继续进行,我可以看到正在创建的文件。
我不确定“拒绝访问”是什么意思。我被拒绝访问什么资源?任何帮助将不胜感激。
最佳答案
AWS不提供“拒绝访问”的详细信息。在出于安全目的精心设计的系统中,这是正常现象,但这对开发人员没有帮助。
使用AWS CLI验证您的KMS密钥是否有效。
aws s3 cp SourceFile s3://mybucket/DestinationFile --sse aws:kms --sse-kms-key-id <ReplaceWithYourKeyId>
如果CLI有效,则您的代码有问题(我看不到)。如果CLI也报告错误,则可能是KMS密钥用户问题。
创建KMS密钥时,请设置密钥的“使用权限”。转到AWS IAM控制台。仔细检查代码所在的IAM用户是否具有使用KMS密钥的权限。在“关键用户”下查看。
如果正确定义了关键用户,请转至S3控制台,并使用相同的KMS密钥测试上传文件,并确保该文件有效。
关于c# - 具有KMS加密的S3 PutObject失败,并显示403“访问被拒绝”错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48163519/