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

Missing content #3

Open
agriffit79 opened this issue Dec 21, 2020 · 1 comment
Open

Missing content #3

agriffit79 opened this issue Dec 21, 2020 · 1 comment

Comments

@agriffit79
Copy link

Hi,

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
}
@moosakhalidLA
Copy link
Contributor

moosakhalidLA commented Feb 19, 2021

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.

@tungbq tungbq mentioned this issue Mar 16, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants