Replies: 6 comments 1 reply
-
@demimike thanks for the feedback. Can you also provide some context around why you'd like this functionality, perhaps what scenario is leading you to want to take this approach? |
Beta Was this translation helpful? Give feedback.
-
Hi @demimike could you please share the exact error you're getting? Which version of the service catalog are you using? We'd also love to see the exact inputs you're configuring and how. Thanks |
Beta Was this translation helpful? Give feedback.
-
We [image: alias.png]
are hosting many vanity domains for customers, and we would like to route
the all through cloudfront
…On Fri, Feb 3, 2023 at 2:40 PM gitsstewart ***@***.***> wrote:
@demimike <https://github.com/demimike> thanks for the feedback. Can you
also provide some context around why you'd like this functionality, perhaps
what scenario is leading you to want to take this approach?
—
Reply to this email directly, view it on GitHub
<#656 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AXRSTJ23EQ5ACLB5GJPISYTWVVUL5ANCNFSM6AAAAAAUQUVP2Y>
.
You are receiving this because you were mentioned.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
It doesn't generate errors, I just can't configure A records as an alias.
We are currently using ver 99.2
…On Mon, Feb 6, 2023 at 9:14 AM Zack Proser ***@***.***> wrote:
Hi @demimike <https://github.com/demimike> could you please share the
exact error you're getting? Which version of the service catalog are you
using?
Thanks
—
Reply to this email directly, view it on GitHub
<#656 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AXRSTJ6CJ7N5CMGA4JON3NLWWEINRANCNFSM6AAAAAAUQUVP2Y>
.
You are receiving this because you were mentioned.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
Hey @demimike we are currently missing that feature in the Route53 Service Catalog service but have filed an issue to see if we can get it added sooner rather than later. I obviously can't commit to a specific date, but I can commit to discussing this with our team and getting a ball park answer. |
Beta Was this translation helpful? Give feedback.
-
PR for this is currently under review: https://github.com/gruntwork-io/terraform-aws-service-catalog/pull/1829 |
Beta Was this translation helpful? Give feedback.
-
[terraform-aws-service-catalog/modules/networking
](https://github.com/gruntwork-io/terraform-aws-service-catalog/tree/master/modules/networking/route53)
Route53 module does not support adding an A record as an alias
In terraform it looks like:
resource "aws_route53_record" "www" {
zone_id = aws_route53_zone.primary.zone_id
name = "example.com"
type = "A"
alias {
name = aws_elb.main.dns_name
zone_id = aws_elb.main.zone_id
evaluate_target_health = true
}
Tracked in ticket #109863
Beta Was this translation helpful? Give feedback.
All reactions