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 cloudposse/acm-request-certificate/aws to v0.18.0 #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Dec 5, 2024

This PR contains the following updates:

Package Type Update Change
cloudposse/acm-request-certificate/aws (source) module minor 0.16.3 -> 0.18.0

Release Notes

cloudposse/terraform-aws-acm-request-certificate (cloudposse/acm-request-certificate/aws)

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner December 5, 2024 05:32
@mergify mergify bot added the auto-update This PR was automatically generated label Dec 5, 2024
Copy link

mergify bot commented Dec 5, 2024

/terratest

@mergify mergify bot added the needs-test Needs testing label Dec 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
auto-update This PR was automatically generated needs-test Needs testing
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants