Metadata-Version: 1.1
Name: route53-to-cloudformation
Version: 1.0.0
Summary: Dump an existing Route53 Hosted Zone as a CloudFormation YAML template
Home-page: https://github.com/timeoutdigital/route53-to-cloudformation
Author: Adam Johnson
Author-email: me@adamj.eu
License: ISC License
Description: =========================
        route53-to-cloudformation
        =========================
        
        .. image:: https://img.shields.io/pypi/v/route53-to-cloudformation.svg
            :target: https://pypi.python.org/pypi/route53-to-cloudformation
        
        .. image:: https://travis-ci.org/timeoutdigital/route53-to-cloudformation.svg?branch=master
            :target: https://travis-ci.org/timeoutdigital/route53-to-cloudformation
        
        
        A tool for dumping an existing Route53 Hosted Zone out as a CloudFormation
        YAML template. This can be useful for migrating the hosted zone into control
        under CloudFormation.
        
        Installation
        ------------
        
        From pip:
        
        .. code-block:: bash
        
            pip install route53-to-cloudformation
        
        Usage
        -----
        
        Call the tool with the ID of the hosted zone you wish to convert into a fresh
        CloudFormation template. It will output it on stdout, so you can inspect it,
        or pipe it into a file.
        
        .. code-block:: bash
        
            $ route53-to-cloudformation ABC123 | head -n 3
            AWSTemplateFormatVersion: 2010-09-09
            Description: DNS for example.com
            Resources:
            $ route53-to-cloudformation ABC123 > mytemplate.yml
        
        
        History
        =======
        
        Pending
        -------
        
        * Next version release notes here
        
Keywords: aws,cloudformation,route53
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
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.6
Classifier: Topic :: Utilities
