Net::Amazon::Config - Manage Amazon Web Services credentials


Net-Amazon-Config documentation  | view source Contained in the Net-Amazon-Config distribution.

Index


NAME

Top

Net::Amazon::Config - Manage Amazon Web Services credentials

VERSION

Top

This documentation describes version 0.001.

SYNOPSIS

Top

Example

     use Net::Amazon::Config;

     # default location and profile
     my $profile = Net::Amazon::Config->new->get_profile;

     # use access key ID and secret access key with S3 
     use Net::Amazon::S3;
     my $s3 = Net::Amazon::S3->new(
       aws_access_key_id     => $profile->access_key_id,
       aws_secret_access_key => $profile->secret_access_key,
     );

Config Format

   default = johndoe
   [johndoe]
   access_key_id = XXXXXXXXXXXXXXXXXXXX
   secret_access_key = XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
   certificate_file = my-cert.pem
   private_key_file = my-key.pem
   ec2_keypair_name = my-ec2-keypair
   ec2_keypair_file = ec2-private-key.pem
   aws_account_id = 0123-4567-8901
   canonical_user_id = <64-character string>

DESCRIPTION

Top

This module lets you keep Amazon Web Services credentials in a configuration file for use with different tools that need them.

USAGE

Top

new()

   my $config = Net::Amazon::Config->new( %params );

Valid %params entries include:

Returns an object or undef if no config file can be found.

config_path()

   my $path = $config->config_path;

Returns the absolute path to the configuration file.

get_profile()

   my $profile = $config->get_profile( $name );

If $name is omitted or undefined, returns the profile named in the top-level key default in the config file. If the profile does not exist, get profile returns undef or an empty list.

ENVIRONMENT

Top

BUGS

Top

Please report any bugs or feature requests using the CPAN Request Tracker web interface at http://rt.cpan.org/Dist/Display.html?Queue=Net-Amazon-Config

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

SEE ALSO

Top

AUTHOR

Top

David A. Golden (DAGOLDEN)

COPYRIGHT AND LICENSE

Top


Net-Amazon-Config documentation  | view source Contained in the Net-Amazon-Config distribution.