Metadata-Version: 1.0
Name: ec2audit
Version: 0.1
Summary: Dump all EC2 information to a folder suitable for version control
Home-page: http://github.com/SimpleFinance/ec2audit
Author: Cosmin Stejerean
Author-email: cosmin@offbytwo.com
License: Apache License 2.0
Description: ec2audit
        ========
        
        Dump all EC2 information to a folder suitable for version control
        
        ec2audit can output either to ``stdout`` or to a directory, and can
        output in ``json`` and ``yaml`` formats. Identical data should produce
        identical output (suitable for ``diff``-ing).
        
        Types
        -----
        
        Currently ``ec2audit`` can dump:
        
        -  instances
        -  security groups
        -  volumes.
        
        Usage
        -----
        
        The most basic usage is:
        
        ::
        
            ec2audit <region>
        
        However the recommended usage is to output to a directory with one item
        per file.
        
        ::
        
            ec2audit <region> -o <output_dir>
        
        This will create ``instances``, ``security_groups``, and ``volumes``
        folders under the ``<output_dir>`` directory, with each instance,
        security group and volume represented in its own file.
        
        You can change the output format using ``-f json`` or ``-f yaml``. For
        convenience you can also do ``-fj`` or ``-fy``.
        
        For reference, the complete usage information is represented below:
        
        ::
        
            Usage:
              ec2audit [options] <region>
              ec2audit -h | --help
              ec2audit -v | --version
        
            Options:
              -h --help                               Show this screen.
              -v --version                            Show the version.
        
              -o --output=OUTPUT                      The output directory, stdout otherwise
              -f --format=FORMAT                      The output format: json or yaml [default: yaml]
        
              -I --access-key-id=ACCESS_KEY_ID        AWS access key to use (default: $AWS_ACCESS_KEY_ID)[.
              -S --secret-key=SECRET_KEY              AWS secret key to use (default: $AWS_SECRET_ACCESS_KEY).
              -K --secret-key-file=SECRET_KEY_FILE    File containing AWS secret key to use.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Utilities
