Metadata-Version: 1.1
Name: ec2-meta-env
Version: 0.1.1
Summary: A simple package to manifest EC2 instance metadata as environment variables.
Home-page: https://github.com/tobiasmcnulty/ec2-meta-env
Author: Tobias McNulty
Author-email: tobias.mcnulty@gmail.com
License: MIT
Description: ec2-meta-env
        ============
        
        A simple wrapper script to manifest EC2 instance metadata as environment
        variables.
        
        Installing ec2-meta-env
        =======================
        
        Installing `ec2-meta-env` is as simple as::
        
            pip install ec2-meta-env --upgrade
        
        
        Using ec2-meta-env
        ==================
        
        To include EC2 instance meta data in your application's shell environment,
        wrap your shell command with the `ec2-meta-env` script and specify the
        environment variables you wish to use, e.g.::
        
            ec2-meta-env -e local-ipv4 /path/to/my/app
        
        In the above example, the value of `local-ipv4` will be accessible in the shell
        environment for `/path/to/my/app` under the variable name `EC2_LOCAL_IPV4`.
        Environment variable names are formed by prepending the meta API path with
        `EC2_`, uppercasing, and replacing all dashes and forward slashes with
        underscores.
        
        Other options
        =============
        
        A complete list of options can be found by running::
        
            ec2-meta-env --help
        
        Why ec2-meta-env?
        =================
        
        EC2 provides instance metadata via `http://169.254.169.254/latest/meta-data/`.
        Sometimes it's easier to use that information if it's available via environment
        variables, for example, if your application's running inside a Docker container
        on Amazon's Elastic Container Service (ECS). This project makes it possible to
        do that without calling the EC2 instance meta data API manually.
        
        
        Thanks and I hope you find ec2-meta-env helpful!
        
        ~Tobias McNulty
        
Keywords: Python,Python3
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
