ruby_route_53 icon indicating copy to clipboard operation
ruby_route_53 copied to clipboard

Ruby gem and command line tool for Amazon's Route 53 service.

Results 12 ruby_route_53 issues
Sort by recently updated
recently updated
newest added

Current implementation of `update` method is `DELETE` and `CREATE` (https://github.com/pcorliss/ruby_route_53/blob/f96fab52931f069ba4b5fddb291aa53c7412aa52/lib/route53/dns_record.rb#L66-L77). I suggest to change it to action `UPSERT`, which AWS describe as update of record set (see https://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html) This change...

Currently you can't change a record from being a hosted zone to not in a single transaction. My first patch allows you to pass '--hosted-zone' with no argument to disable...

I tried this and it was sucessful but the issue is when i tried to update that i could not find a way how to fix it.: route53 --zone testdomain.com...

support

It would be very nice to have the ability to import a BIND Zone file like cli53 can do.

Wishlist

I've received a lot of such messages when tried to upload a bunch of changes in a single loop: ``` ERROR: Amazon returned an error for the request. ERROR: RAW_XML:...

Wishlist

ERROR: Amazon returned an error for the request. ERROR: RAW_XML: \SenderAccessDeniedUser: arn:aws:iam::123456789012:user/MyUser is not authorized to perform: route53:ListHostedZonesc87e019b-1c5e-11e1-9388-b50d1a7693b8 ERROR: AccessDenied: User: arn:aws:iam::123456789012:user/MyUser is not authorized to perform: route53:ListHostedZones What now?...

Wishlist

Given a DNSRecord object that represents a zone apex virtual A record, it isn't possible to update it to be a regular A record (with IP address) using update: record.update(nil,nil,nil,ip_address,nil,nil)...

Wishlist

Should be updated to show that you can delete a zone by the hostedzone id as well, because Route53 allows multiple hosted zones for the same domain. route53 --zone '/hostedzone/XXXXXXXXXXXXXXX'...

Wishlist

When multiple records are updated by different processes at almost the same time, AWS can respond with a PriorRequestNotComplete error message. This condition doesn't appear to be handled and instead...

Wishlist