Skip to content

Commit 7aae878

Browse files
committed
fix: Lower ACM module version to avoid needing Terraform 1.10
1 parent 293714d commit 7aae878

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

examples/complete-alb/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ Note that this example may create resources which cost money. Run `terraform des
3636

3737
| Name | Source | Version |
3838
|------|--------|---------|
39-
| <a name="module_acm"></a> [acm](#module\_acm) | terraform-aws-modules/acm/aws | ~> 6.0 |
39+
| <a name="module_acm"></a> [acm](#module\_acm) | terraform-aws-modules/acm/aws | ~> 5.0 |
4040
| <a name="module_alb"></a> [alb](#module\_alb) | ../../ | n/a |
4141
| <a name="module_alb_disabled"></a> [alb\_disabled](#module\_alb\_disabled) | ../../ | n/a |
4242
| <a name="module_lambda_with_allowed_triggers"></a> [lambda\_with\_allowed\_triggers](#module\_lambda\_with\_allowed\_triggers) | terraform-aws-modules/lambda/aws | ~> 8.0 |
4343
| <a name="module_lambda_without_allowed_triggers"></a> [lambda\_without\_allowed\_triggers](#module\_lambda\_without\_allowed\_triggers) | terraform-aws-modules/lambda/aws | ~> 8.0 |
4444
| <a name="module_log_bucket"></a> [log\_bucket](#module\_log\_bucket) | terraform-aws-modules/s3-bucket/aws | ~> 5.0 |
4545
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |
46-
| <a name="module_wildcard_cert"></a> [wildcard\_cert](#module\_wildcard\_cert) | terraform-aws-modules/acm/aws | ~> 6.0 |
46+
| <a name="module_wildcard_cert"></a> [wildcard\_cert](#module\_wildcard\_cert) | terraform-aws-modules/acm/aws | ~> 5.0 |
4747

4848
## Resources
4949

examples/complete-alb/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ data "aws_route53_zone" "this" {
545545

546546
module "acm" {
547547
source = "terraform-aws-modules/acm/aws"
548-
version = "~> 6.0"
548+
version = "~> 5.0"
549549

550550
domain_name = var.domain_name
551551
zone_id = data.aws_route53_zone.this.id
@@ -556,7 +556,7 @@ module "acm" {
556556

557557
module "wildcard_cert" {
558558
source = "terraform-aws-modules/acm/aws"
559-
version = "~> 6.0"
559+
version = "~> 5.0"
560560

561561
domain_name = "*.${var.domain_name}"
562562
zone_id = data.aws_route53_zone.this.id

examples/complete-nlb/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Note that this example may create resources which cost money. Run `terraform des
3232

3333
| Name | Source | Version |
3434
|------|--------|---------|
35-
| <a name="module_acm"></a> [acm](#module\_acm) | terraform-aws-modules/acm/aws | ~> 6.0 |
35+
| <a name="module_acm"></a> [acm](#module\_acm) | terraform-aws-modules/acm/aws | ~> 5.0 |
3636
| <a name="module_log_bucket"></a> [log\_bucket](#module\_log\_bucket) | terraform-aws-modules/s3-bucket/aws | ~> 5.0 |
3737
| <a name="module_nlb"></a> [nlb](#module\_nlb) | ../../ | n/a |
3838
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |

examples/complete-nlb/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ data "aws_route53_zone" "this" {
195195

196196
module "acm" {
197197
source = "terraform-aws-modules/acm/aws"
198-
version = "~> 6.0"
198+
version = "~> 5.0"
199199

200200
domain_name = var.domain_name
201201
zone_id = data.aws_route53_zone.this.id

examples/mutual-auth-alb/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Note that this example may create resources which cost money. Run `terraform des
3737

3838
| Name | Source | Version |
3939
|------|--------|---------|
40-
| <a name="module_acm"></a> [acm](#module\_acm) | terraform-aws-modules/acm/aws | ~> 6.0 |
40+
| <a name="module_acm"></a> [acm](#module\_acm) | terraform-aws-modules/acm/aws | ~> 5.0 |
4141
| <a name="module_alb"></a> [alb](#module\_alb) | ../../ | n/a |
4242
| <a name="module_ca_cert_object"></a> [ca\_cert\_object](#module\_ca\_cert\_object) | terraform-aws-modules/s3-bucket/aws//modules/object | ~> 5.0 |
4343
| <a name="module_certificate_bucket"></a> [certificate\_bucket](#module\_certificate\_bucket) | terraform-aws-modules/s3-bucket/aws | ~> 5.0 |

examples/mutual-auth-alb/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ data "aws_route53_zone" "this" {
235235

236236
module "acm" {
237237
source = "terraform-aws-modules/acm/aws"
238-
version = "~> 6.0"
238+
version = "~> 5.0"
239239

240240
domain_name = "*.${var.domain_name}"
241241
zone_id = data.aws_route53_zone.this.id

0 commit comments

Comments
 (0)