Update Route53 domains.
Project description
Route53 domain updates for humans named Matt. At least it works for him. You might find it useful too.
Installation
With pip:
$ pip install roadtrip
With setuptools:
$ easy_install roadtrip
Requirements
Roadtrip requires Python 2.7 and leans heavily on the shoulders of Boto 2.25.0+.
Using
You can use roadtrip to update a round-robin A record, adding a new value if it doesn’t already exist:
$ roadtrip --type A --zone example.com --name mycluster.example.com --value 1.2.3.4 --add
There is also a compact syntax for each option:
$ roadtrip -t A -z example.com -n mycluster.example.com -v 1.2.3.4 -a
You can also remove a value from a list:
$ roadtrip --type A --zone example.com --name mycluster.example.com --value 1.2.3.4 --delete
You can also get help:
$ roadtrip -h usage: roadtrip [-h] --type {A,AAAA,CNAME,MX,NS,PTR,SOA,SPF,SRV,TXT} --zone ZONE --name NAME --value VALUE [--ttl TTL] (--add | --delete) [--access-key ACCESS_KEY] [--secret-key SECRET_KEY] [--verbose] Update a Route53 record, adding or removing values. optional arguments: -h, --help show this help message and exit --type {A,AAAA,CNAME,MX,NS,PTR,SOA,SPF,SRV,TXT}, -t {A,AAAA,CNAME,MX,NS,PTR,SOA,SPF,SRV,TXT} The type of record to update. --zone ZONE, -z ZONE The domain name or zone ID. --name NAME, -n NAME The name to update. --value VALUE, -v VALUE The data to add or remove. --ttl TTL, -l TTL Non-default TTL value. --add, -a Add the value. --delete, -d Remove the value. --access-key ACCESS_KEY, -k ACCESS_KEY Your AWS access key. Will override the AWS_ACCESS_KEY_ID environment variable. --secret-key SECRET_KEY, -s SECRET_KEY Your AWS secret key. Will override the AWS_SECRET_ACCESS_KEY envionrment variable. --verbose, -vv Verbose output.
You can set a non-default TTL value with --ttl and enable verbose output with --verbose.
Roadtrip will use the AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY environment variables if they are set. You can provide these values yourself or override the environment variables by providing --access-key and --secret-key.
Under the hood
Roadtrip will do its best not to add an entry that already exists or delete an entry that doesn’t. It uses UPSERT to update the values based on the values that exist when you call it.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for roadtrip-0.2.1-cp27-none-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44879c6ca1f244636f0e495ce463e1b4ba492fee1a102977f0f2817dacb76913 |
|
MD5 | d0b4395378e427bfee11f2a1b9285ded |
|
BLAKE2b-256 | f000323c5f43194c7328173f799145230ebeccd2bf9061e6161aed72bea66d1e |