-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Description
I'm applying the following configuration.
module "cert_kye" {
source = "github.com/azavea/terraform-aws-acm-certificate?ref=1.0.0"
providers = {
aws.acm_account = "aws.certs"
aws.route53_account = "aws"
}
domain_name = "example.com"
subject_alternative_names = ["sub.example.com", "www.example.com"]
hosted_zone_id = "${data.aws_route53_zone.kye_dev.zone_id}"
validation_record_ttl = "60"
}
After succeeding, if I plan again immediately I get the following change on every cert
-/+ module.cert_kye.aws_route53_record.validation[1] (new resource required)
id: "Z1G38T8OFRJIAB__f26c4116acfd0fc3aceb0b36b055c68c.kye.dev._CNAME" => <computed> (forces new resource)
panovitch and xueshanf