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
We have the following Route 53 DNS record created with Terraform:
resource "aws_route53_record" "test" {
zone_id = "${aws_route53_zone.test.zone_id}"
name = "www"
type = "A"
alias {
name = "${aws_elb.test.dns_name}"
zone_id = "${var.aws_elb_route53_hosted_zone_ids[var.region]}"
evaluate_target_health = true
}
}
The aws_elb.test resource contains a combination of uppercase and lowercase characters and, as a result, Terraform always wants to apply changes. It seems that the normalization for Route 53 DNS records should lowercase the values before comparing them to those returned from the AWS API.
The text was updated successfully, but these errors were encountered:
I'm going to lock this issue 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 similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
ghost
locked and limited conversation to collaborators
Apr 19, 2020
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
We have the following Route 53 DNS record created with Terraform:
The
aws_elb.test
resource contains a combination of uppercase and lowercase characters and, as a result, Terraform always wants to apply changes. It seems that the normalization for Route 53 DNS records should lowercase the values before comparing them to those returned from the AWS API.The text was updated successfully, but these errors were encountered: