Metadata-Version: 1.0
Name: route53-transfer
Version: 0.1
Summary: Backup and restore Route53 zones, or transfer between AWS accounts.
Home-page: http://github.com/RisingOak/route53-transfer
Author: Cosmin Stejerean
Author-email: cosmin@offbytwo.com
License: Apache License 2.0
Description: route53-transfer
        ================
        
        Backup and restore Route53 zones, or transfer between AWS accounts.
        
        Installation
        ------------
        
        ::
        
            pip install route53-transfer
        
        Usage
        -----
        
        Backup a zone
        ~~~~~~~~~~~~~
        
        Backup the ``example.com`` zone to a ``CSV`` file.
        
        ::
        
            route53-transfer backup example.com backup.csv
        
        Use STDOUT instead of a file
        
        ::
        
            route53-transfer backup example.com -
        
        Restore a zone
        ~~~~~~~~~~~~~~
        
        Restore the ``example.com`` zone from a ``CSV`` file.
        
        ::
        
            route53-transfer load example.com backup.csv
        
        Use ``-`` to load from STDIN instead.
        
        Migrate between accounts
        ~~~~~~~~~~~~~~~~~~~~~~~~
        
        Use the command line switches to override the access and secret keys.
        Dump from one account, load into another.
        
        ::
        
            route53-transfer --access-key-id=ACCOUNT1 --secret-key=SECRET dump example.com
            route53-transfer --access-key-id=ACCOUNT2 --secret-key=SECRET load example.com
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Utilities
