python-route53
python-route53 copied to clipboard
A simple Python 2.7/3.x compatible Route53 module. [UNMAINTAINED]
Executing this: conn = route53.connect(aws_access_key_id=config['AWS_ACCESS_KEY'], aws_secret_access_key=config['AWS_SECRET_KEY']) zone = conn.get_hosted_zone_by_id(zone_aws) zone.create_a_record(name=name, alias_hosted_zone_id=elb_hosted_zone_id, alias_dns_name=elb) and, no matter how many arguments I pass I always receive this: create_a_record() takes at least 3 arguments...
I have added an optional parameter aws_security_token to the Route53Connection class so EC2 profiles with sufficient permissions can use the library without storing credentials. I use the following snippet to...
Hi I'm unable to change a record, although no exception is raised. On the Route 53 Console, I also still see the old value. ``` import route53 conn = route53.connect(...