File tree 1 file changed +7
-8
lines changed
1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 22
22
|--------------------------------------------------------------------------
23
23
|
24
24
| In order to communicate with an AWS service, you must provide your AWS
25
- | credentials including your AWS Access Key ID and your AWS Secret Key. You
26
- | can obtain these keys by logging into your AWS account and visiting
27
- | https://console.aws.amazon.com/iam/home?#security_credential.
25
+ | credentials including your AWS Access Key ID and your AWS Secret Key.
28
26
|
29
- | To use credentials from your environment or to use IAM Instance Profile
30
- | credentials, please remove these config settings from your config. For
31
- | more information see http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/configuration.html
27
+ | To use credentials from your credentials file or environment or to use
28
+ | IAM Instance Profile credentials, please remove these config settings from
29
+ | your config or make sure they are null. For more information see:
30
+ | http://docs.aws.amazon.com/aws-sdk-php-2/guide/latest/configuration.html
32
31
|
33
32
*/
34
- 'key ' => ' YOUR_AWS_ACCESS_KEY_ID ' ,
35
- 'secret ' => ' YOUR_AWS_SECRET_KEY ' ,
33
+ 'key ' => null , // Your AWS Access Key ID
34
+ 'secret ' => null , // Your AWS Secret Access Key
36
35
37
36
/*
38
37
|--------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments