Skip to content

Commit 36c452e

Browse files
committed
Update config.php to work with env credentials.
1 parent 9d8f9cd commit 36c452e

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

src/config/config.php

+7-8
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,16 @@
2222
|--------------------------------------------------------------------------
2323
|
2424
| 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.
2826
|
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
3231
|
3332
*/
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
3635

3736
/*
3837
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)