Skip to content
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

aws_route53_record is modified with every apply #9675

Closed
adamgotterer opened this issue Oct 27, 2016 · 2 comments
Closed

aws_route53_record is modified with every apply #9675

adamgotterer opened this issue Oct 27, 2016 · 2 comments

Comments

@adamgotterer
Copy link

Terraform Version

0.7.5 and 0.7.7

Affected Resource(s)

Please list the resources as a list, for example:

  • aws_route53_record

If this issue appears to affect multiple resources, it may be an issue with Terraform's core, so please mention this.

Terraform Configuration Files

resource "aws_route53_record" "letmein" {
  zone_id = "${aws_route53_zone.internal.zone_id}"
  name = "letmein"
  type = "A"

  alias {
    name = "${aws_elb.bastion.dns_name}"
    zone_id = "${aws_elb.bastion.zone_id}"
    evaluate_target_health = true
  }
}

Expected Behavior

It correctly sets route53 record, but every apply causes a modification from terraform.

Actual Behavior

~ module.vpc.aws_route53_record.letmein
    alias.1189324327.evaluate_target_health: "true" => "false"
    alias.1189324327.name:                   "bastion-XXXXXX.us-east-1.elb.amazonaws.com" => ""
    alias.1189324327.zone_id:                "XXXXXXXXX" => ""
    alias.4023677436.evaluate_target_health: "" => "true"
    alias.4023677436.name:                   "" => "Bastion-XXXXXX.us-east-1.elb.amazonaws.com"
    alias.4023677436.zone_id:                "" => "XXXXXXXXX"
@stack72
Copy link
Contributor

stack72 commented Oct 28, 2016

Hi @adamgotterer

thanks for the issue report here - I am actively working on fixing this now - I am going to close this as a dupe of #9628 - please keep an eye on that issue for updates

Thanks

Paul

@ghost
Copy link

ghost commented Apr 21, 2020

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 ghost locked and limited conversation to collaborators Apr 21, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants