Skip to content

Commit

Permalink
Merge pull request #1014 from deepfire/route53-fix-casensitivity
Browse files Browse the repository at this point in the history
aws | route53:  normalise DNS hostname;  fix #1013
  • Loading branch information
AmineChikhaoui authored Jan 22, 2019
2 parents b611776 + 35cf7a0 commit 330094b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixops/backends/ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -1258,7 +1258,7 @@ def _update_route53(self, defn):
import boto.route53
import boto.route53.record

self.dns_hostname = defn.dns_hostname
self.dns_hostname = defn.dns_hostname.lower()
self.dns_ttl = defn.dns_ttl
self.route53_access_key_id = defn.route53_access_key_id or nixops.ec2_utils.get_access_key_id()
self.route53_use_public_dns_name = defn.route53_use_public_dns_name
Expand Down

0 comments on commit 330094b

Please sign in to comment.