-
-
Notifications
You must be signed in to change notification settings - Fork 223
feat!: Add support for geoproximity routing policy. Upgraded TF version to 1.3.2 #105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat!: Add support for geoproximity routing policy. Upgraded TF version to 1.3.2 #105
Conversation
Hi @antonbabenko, Is there any chance we could get this approved and merged? Thx! |
examples/complete/main.tf
Outdated
set_identifier = "nyc" | ||
geoproximity_routing_policy = { | ||
coordinates = { | ||
latitude = "40.7128" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Value 40.7128
produced an error:
│ Error: creating Route53 Record: operation error Route 53: ChangeResourceRecordSets, https response error StatusCode: 400, RequestID: 54c0a63c-e5b4-4fda-864b-a10e3cc928a7, InvalidInput: Invalid XML ; javax.xml.stream.XMLStreamException: org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 237; cvc-pattern-valid: Value '40.7128' is not facet-valid with respect to pattern '[-+]?(90|[0-8]{0,1}[0-9](\.[0-9]{0,2})?)' for type 'Latitude'.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm odd, it worked for me locally when I tested. Thank you for catching and fixing it!
This PR is included in version 3.0.0 🎉 |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Description
This change extends the route53 records module by adding support for geoproximity routing policy.
Motivation and Context
AWS recently added support for geopriximity routing and this change will allow creation of records using that new policy. The module currently does not support it.
Breaking Changes
How Has This Been Tested?
examples/*
to demonstrate and validate my change(s)examples/*
projectspre-commit run -a
on my pull request