Merge pull request #11635 from ohadbenita/patch-1

Specify expected encoding for access/secret key
This commit is contained in:
Carl Bergquist 2018-04-18 10:06:12 +02:00 committed by GitHub
commit 54b7846eb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -188,8 +188,8 @@ Authorization: Bearer eyJrIjoiT0tTcG1pUlY2RnVKZTFVaDFsNFZXdE9ZWmNrMkZYbk
"defaultRegion": "us-west-1" "defaultRegion": "us-west-1"
}, },
"secureJsonData": { "secureJsonData": {
"accessKey": "Ol4pIDpeKSA6XikgOl4p", "accessKey": "Ol4pIDpeKSA6XikgOl4p", //should not be encoded
"secretKey": "dGVzdCBrZXkgYmxlYXNlIGRvbid0IHN0ZWFs" "secretKey": "dGVzdCBrZXkgYmxlYXNlIGRvbid0IHN0ZWFs" //should be Base-64 encoded
} }
} }
``` ```