Skip to content

Commit 8eba516

Browse files
build(deps): update terraform-aws-modules/acm/aws requirement from ~> 4.3.1 to ~> 5.0.0 (#54)
* build(deps): update terraform-aws-modules/acm/aws requirement from ~> 4.3.1 to ~> 5.0.0 Updates the requirements on [terraform-aws-modules/acm/aws](https://github.com/terraform-aws-modules/terraform-aws-acm) to permit the latest version. - [Release notes](https://github.com/terraform-aws-modules/terraform-aws-acm/releases) - [Changelog](https://github.com/terraform-aws-modules/terraform-aws-acm/blob/master/CHANGELOG.md) - [Commits](terraform-aws-modules/terraform-aws-acm@v4.3.1...v5.0.0) --- updated-dependencies: - dependency-name: terraform-aws-modules/acm/aws dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * build(deps): use DNS as validation method for ACM --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steve Teuber <[email protected]>
1 parent 2226228 commit 8eba516

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ moved {
66
module "acm" {
77
count = (var.custom_endpoint_certificate_arn != "") ? 0 : 1
88
source = "terraform-aws-modules/acm/aws"
9-
version = "~> 4.3.1"
9+
version = "~> 5.0.0"
1010

1111
domain_name = local.custom_endpoint
1212
zone_id = data.aws_route53_zone.opensearch.id
1313

14+
validation_method = "DNS"
1415
wait_for_validation = true
1516

1617
tags = var.tags

0 commit comments

Comments
 (0)