Metadata-Version: 1.0
Name: ec2yaml
Version: 0.0.4
Summary: Materialize a YAML configuration into AWS EC2
Home-page: https://github.com/aventurella/ec2yaml
Author: Adam Venturella <aventurella@gmail.com>, Dino Petrone <dinopetrone@gmail.com>
Author-email: aventurella@gmail.com
License: BSD
Description: ec2yaml
        ========
        
        
        Take a yaml file like this ::
        
            app:
              name: foo
              owner: adam venturella
              location: us-west-2
              key: <optional>
              secret: <optional>
        
            instances:
              app_server:
                key_name: aventurella
                image: ami-6ac2a85a
                size: m3.medium
                zone: us-west-2c
        
                ip_address: foo
        
                security_groups:
                  - ssh
                  - http
                  - https
                  - foo-salt
                  - foo-ssh
        
                volumes:
                  - foo-volume: /dev/sdh
        
            elastic_ips:
              - foo
        
            volumes:
                foo-volume:
                    size: 1
                    zone: us-west-2c
        
            security_groups:
              foo-ssh:
                ip_protocol: tcp
                from_port: 1022
                to_port: 1022
                cidr_ip: '0.0.0.0/0'
        
              foo-salt:
                ip_protocol: tcp
                from_port: 2000
                to_port: 65535
                cidr_ip: '0.0.0.0/0'
        
        
        And materialize it into AWS EC2 accordingly.
        
        Command line tool ::
        
            Usage:
              ec2yaml <conf> [(--key=<key> --secret=<secret>)] [--loglevel=<level>]
        
            Options:
              -h --help              Show this screen.
              -v --version           Show version.
              -k --key=<key>         AWS access key ID
              -s --secret=<secret>   AWS secret access key
              -l --loglevel=<level>  Log level to display [default: info]
        
        
        
        
        
        
        Release History
        ---------------
        
        0.0.1 (2014-01-20)
        ++++++++++++++++++
        
        **API Changes**
        **Bugfixes**
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
