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

chore(deps): update terraform github.com/cloudposse/terraform-aws-acm-request-certificate to v0.18.0 #2

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Mar 20, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/cloudposse/terraform-aws-acm-request-certificate module minor 0.16.3 -> 0.18.0

Release Notes

cloudposse/terraform-aws-acm-request-certificate (github.com/cloudposse/terraform-aws-acm-request-certificate)

v0.18.0

Compare Source

v0.17.0

Compare Source

This is a pre-release due to https://github.com/cloudposse/terraform-aws-acm-request-certificate/issues/62

Allow management of ACM certs with SANs in multiple zones @​nitrocode (#​61)

NOTE: This feature requires that the zone to use for validation is the immediate parent of the name in the SAN. See #​62.

what

  • Allow management of ACM certs with SANs in multiple zones
  • Add versions.tf to examples/complete

why

  • This is useful for more complex certificates and validation of those certificates
  • Workaround without this is to set process_domain_validation_options = false and manage validation records outside of the module
resource "aws_route53_record" "default" {
  for_each = {
    for dvo in module.acm_certificate.domain_validation_options[0] : dvo.domain_name => {
      name   = dvo.resource_record_name
      record = dvo.resource_record_value
      type   = dvo.resource_record_type
    }
  }

  name    = each.value.name
  records = [each.value.record]
  type    = each.value.type
  zone_id = data.aws_route53_zone.default[local.domain_to_zone[each.key]].id
  ttl     = 300
}

references


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/github.com-cloudposse-terraform-aws-acm-request-certificate-0.x branch 2 times, most recently from 6bdc5fb to fd1df04 Compare April 3, 2024 23:54
@renovate renovate bot force-pushed the renovate/github.com-cloudposse-terraform-aws-acm-request-certificate-0.x branch 2 times, most recently from 1da3a58 to 2c56d58 Compare April 4, 2024 00:09
@renovate renovate bot force-pushed the renovate/github.com-cloudposse-terraform-aws-acm-request-certificate-0.x branch from 2c56d58 to cb5e6e5 Compare April 4, 2024 22:01
@venkatamutyala
Copy link
Contributor

skipping

@venkatamutyala venkatamutyala deleted the renovate/github.com-cloudposse-terraform-aws-acm-request-certificate-0.x branch April 5, 2024 03:13
Copy link
Author

renovate bot commented Apr 5, 2024

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (0.18.0). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant