<?php /** * File: Configuration * Stores your AWS account information. Add your account information, then rename this file to 'config.inc.php'. * * Version: * 2008.12.02 * * Copyright: * 2006-2008 LifeNexus Digital, Inc., and contributors. * * License: * Simplified BSD License - http://opensource.org/licenses/bsd-license.php * * See Also: * Tarzan - http://tarzan-aws.com */ /** * Constant: AWS_KEY * Amazon Web Services Key. <http://aws-portal.amazon.com/gp/aws/developer/account/index.html?ie=UTF8&action=access-key> */ define('AWS_KEY', variable_get('creeper_aws_id_key','')); /** * Constant: AWS_SECRET_KEY * Amazon Web Services Secret Key. <http://aws-portal.amazon.com/gp/aws/developer/account/index.html?ie=UTF8&action=access-key> */ define('AWS_SECRET_KEY', variable_get('creeper_aws_secret_key','')); /** * Constant: AWS_ACCOUNT_ID * Amazon Account ID without dashes. Used for identification with Amazon EC2. <http://aws-portal.amazon.com/gp/aws/developer/account/index.html?ie=UTF8&action=edit-aws-profile> */ define('AWS_ACCOUNT_ID', variable_get('creeper_aws_account_id','')); /** * Constant: AWS_ASSOC_ID * Amazon Associates ID. Used for crediting referrals via Amazon AAWS. <http://affiliate-program.amazon.com/gp/associates/join/> */ define('AWS_ASSOC_ID', ''); /** * Constant: AWS_CANONICAL_ID * Your CanonicalUser ID. Used for setting access control settings in AmazonS3. Must be fetched from the server. Call print_r($s3->get_canonical_user_id()); to view. */ define('AWS_CANONICAL_ID', ''); /** * Constant: AWS_CANONICAL_NAME * Your CanonicalUser DisplayName. Used for setting access control settings in AmazonS3. Must be fetched from the server. Call print_r($s3->get_canonical_user_id()); to view. */ define('AWS_CANONICAL_NAME', ''); ?>