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
It seems the definition of aws_route53_record.cert_validation is missing from dns.tf?
resource "aws_route53_record" "cert_validation" {
provider = aws.region-master
for_each = {
for val in aws_acm_certificate.jenkins-lb-https.domain_validation_options : val.domain_name => {
name = val.resource_record_name
record = val.resource_record_value
type = val.resource_record_type
}
}
name = each.value.name
records = [each.value.record]
ttl = 60
type = each.value.type
zone_id = data.aws_route53_zone.dns.zone_id
}
The text was updated successfully, but these errors were encountered:
Hi @agriffit79 ,
I'm afraid I don't follow what you mean here. the cert validation resource is present inside the dns.tf file. Did you mean to refer to some other resource? Are you getting an error? Please feel free to paste it here.
Hi,
It seems the definition of
aws_route53_record.cert_validation
is missing fromdns.tf
?The text was updated successfully, but these errors were encountered: