summaryrefslogtreecommitdiff
path: root/bin/route53
Commit message (Collapse)AuthorAgeFilesLines
* BF(PY3): use except ... as syntax instead of except ...,Yaroslav Halchenko2015-12-211-1/+1
| | | | | | was done via cmdline git grep -l 'except.*, [a-z]\+:' | xargs sed -ie 's|\(except.*\), \([a-z]*:\)|\1 as \2|g'
* Altered the Route53 bin script to UPSERT.Daniel Lindsley2014-03-071-3/+3
|
* Add examples of usage.Jim Browne2012-01-291-0/+28
|
* Re-write support for WRRs so they are just extentions to theJim Browne2012-01-281-76/+61
| | | | | | | | existing commands. Collapse common code from add/delete paths. Loop over RRsets to properly handle the NULL and WRR cases. This script could use a re-write to using options to make its use more clear and to allow catching edge cases.
* Add WRR support for Route53Francisco J Martin2012-01-261-3/+43
|
* Added a change_alias command to route53 script to match the change_record ↵Blake Maltby2011-11-171-0/+11
| | | | shortcut functionality for aliases
* Fix add_record and del_record to support multiple values, like change_record ↵Kenneth Falck2011-06-211-4/+6
| | | | does
* Fixed issue with:Chris Moyer2011-06-071-1/+6
| | | | https://github.com/boto/boto/commit/3ae689d3fef183d9625db35d21be871cf9cf367f#commitcomment-414946
* Fixed set_alias call in route53 binaryKenneth Falck2011-05-251-2/+2
|
* Added Alias Resource Record Sets support to Route 53Kenneth Falck2011-05-251-1/+17
|
* Setting max items doesn't correctly limit the records printed as the record ↵Michael Thompson2011-03-291-1/+1
| | | | set is truncated and the pagination feature results in an additional request to AWS to get the rest of the results.
* Add a change_record command to bin/route53Michael Thompson2011-03-291-0/+13
|
* Improve formatting when printing zone records and listing commandsMichael Thompson2011-03-291-3/+3
|
* Added "del_record" command to route53 command line utilityChris Moyer2011-02-161-0/+8
|
* Fixed up route53 command line script to include a delete method andChris Moyer2011-02-021-2/+11
| | | | properly print out zone info on creation
* Added paging support directly into the ResourceRecordSets objectChris Moyer2011-02-021-67/+67
|
* Added missing "help" function for the route53 command line scriptChris Moyer2011-02-021-44/+69
|
* Updated Route53 connections to use the same XML parsing used elsewhereChris Moyer2011-01-271-0/+63
in boto for RRsets. This is a backwards incompatible change to the get_rrsets call in route53 connection, but it makes everything more consistent with the other modules. Also added a route53 command line client to make workging with Route53 a little easier.