You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do not try to create the DNS records when aliases is specified.
Expected Behavior
I should be able to use aliases without creating them using this module.
Use Case
As of now, if you specify aliases, the module tries to find the R53 zone and create the record. In my case, my R53 zone is in a different account which is why fails with the below error
on .terraform/modules/waf.cdn.dns/main.tf line 1, in data "aws_route53_zone""default":
1: data"aws_route53_zone""default" {
Describe Ideal Solution
I would like to have one of these options
Use of aliases without creating the R53 record
Option to create an alias by using a different provider (with a different region). This would require to pass two was providers to the module
Alternatives Considered
Create the aliases manually or some script outside of the terraform module
The text was updated successfully, but these errors were encountered:
Describe the Feature
Do not try to create the DNS records when
aliases
is specified.Expected Behavior
I should be able to use
aliases
without creating them using this module.Use Case
As of now, if you specify
aliases
, the module tries to find the R53 zone and create the record. In my case, my R53 zone is in a different account which is why fails with the below errorDescribe Ideal Solution
I would like to have one of these options
aliases
without creating the R53 recordAlternatives Considered
Create the aliases manually or some script outside of the terraform module
The text was updated successfully, but these errors were encountered: