forked from amazonwebservices/aws-sdk-for-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-sample.inc.php
66 lines (56 loc) · 2.24 KB
/
config-sample.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php if (!class_exists('CFRuntime')) die('No direct access allowed.');
/**
* Stores your AWS account information. Add your account information, and then rename this file
* to 'config.inc.php'.
*
* @version 2011.01.20
* @license See the included NOTICE.md file for more information.
* @copyright See the included NOTICE.md file for more information.
* @link http://aws.amazon.com/php/ PHP Developer Center
* @link http://aws.amazon.com/security-credentials AWS Security Credentials
*/
/**
* Amazon Web Services Key. Found in the AWS Security Credentials. You can also pass this value as the first
* parameter to a service constructor.
*/
define('AWS_KEY', '');
/**
* Amazon Web Services Secret Key. Found in the AWS Security Credentials. You can also pass this value as
* the second parameter to a service constructor.
*/
define('AWS_SECRET_KEY', '');
/**
* Amazon Account ID without dashes. Used for identification with Amazon EC2. Found in the AWS Security
* Credentials.
*/
define('AWS_ACCOUNT_ID', '');
/**
* Your CanonicalUser ID. Used for setting access control settings in AmazonS3. Found in the AWS Security
* Credentials.
*/
define('AWS_CANONICAL_ID', '');
/**
* Your CanonicalUser DisplayName. Used for setting access control settings in AmazonS3. Found in the AWS
* Security Credentials (i.e. "Welcome, AWS_CANONICAL_NAME").
*/
define('AWS_CANONICAL_NAME', '');
/**
* 12-digit serial number taken from the Gemalto device used for Multi-Factor Authentication. Ignore this
* if you're not using MFA.
*/
define('AWS_MFA_SERIAL', '');
/**
* Amazon CloudFront key-pair to use for signing private URLs. Found in the AWS Security Credentials. This
* can be set programmatically with <AmazonCloudFront::set_keypair_id()>.
*/
define('AWS_CLOUDFRONT_KEYPAIR_ID', '');
/**
* The contents of the *.pem private key that matches with the CloudFront key-pair ID. Found in the AWS
* Security Credentials. This can be set programmatically with <AmazonCloudFront::set_private_key()>.
*/
define('AWS_CLOUDFRONT_PRIVATE_KEY_PEM', '');
/**
* Set the value to true to enable autoloading for classes not prefixed with "Amazon" or "CF". If enabled,
* load `sdk.class.php` last to avoid clobbering any other autoloaders.
*/
define('AWS_ENABLE_EXTENSIONS', 'false');