Advertisement
Guest User

Untitled

a guest
Jun 1st, 2015
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <?php
  2.  
  3. return array(
  4. // Bootstrap the configuration file with AWS specific features
  5. 'includes' => array('_aws'),
  6. 'services' => array(
  7. // All AWS clients extend from 'default_settings'. Here we are
  8. // overriding 'default_settings' with our default credentials and
  9. // providing a default region setting.
  10. 'default_settings' => array(
  11. 'params' => array(
  12. 'credentials' => array(
  13. 'key' => 'yourkey',
  14. 'secret' => 'yoursecret',
  15. ),
  16. 'region' => 'eu-west-1'
  17. )
  18. )
  19. )
  20. );
  21. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement