Skip to content

Commit 33e4bbd

Browse files
committed
merge conflicts
2 parents 0ee86fd + e26e8c5 commit 33e4bbd

File tree

17 files changed

+52
-17
lines changed

17 files changed

+52
-17
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/antonbabenko/pre-commit-terraform
3-
rev: v1.96.1
3+
rev: v1.99.4
44
hooks:
55
- id: terraform_fmt
66
- id: terraform_wrapper_module_for_each

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [6.0.0](https://github.com/terraform-aws-modules/terraform-aws-acm/compare/v5.2.0...v6.0.0) (2025-06-23)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* Handle new region parameter introduced in terraform-aws 6.0 (#156)
11+
12+
### Features
13+
14+
* Handle new region parameter introduced in terraform-aws 6.0 ([#156](https://github.com/terraform-aws-modules/terraform-aws-acm/issues/156)) ([e503ecd](https://github.com/terraform-aws-modules/terraform-aws-acm/commit/e503ecd3925729b0291f7052416f053a952bb0a9))
15+
16+
## [5.2.0](https://github.com/terraform-aws-modules/terraform-aws-acm/compare/v5.1.1...v5.2.0) (2025-06-05)
17+
18+
19+
### Features
20+
21+
* Add support for private CA certificates ([#155](https://github.com/terraform-aws-modules/terraform-aws-acm/issues/155)) ([f5dffc6](https://github.com/terraform-aws-modules/terraform-aws-acm/commit/f5dffc6bb65f783661685585cc6d0b9799a8c7c1))
22+
523
## [5.1.1](https://github.com/terraform-aws-modules/terraform-aws-acm/compare/v5.1.0...v5.1.1) (2024-10-11)
624

725

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ module "acm" {
179179

180180
| Name | Version |
181181
|------|---------|
182-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
182+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.10 |
183183
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.4 |
184184

185185
## Providers
@@ -214,8 +214,9 @@ No modules.
214214
| <a name="input_domain_name"></a> [domain\_name](#input\_domain\_name) | A domain name for which the certificate should be issued | `string` | `""` | no |
215215
| <a name="input_export"></a> [export](#input\_export) | Whether the certificate can be exported. Valid values are ENABLED or DISABLED (default). Note Issuing an exportable certificate is subject to additional charges | `string` | `null` | no |
216216
| <a name="input_key_algorithm"></a> [key\_algorithm](#input\_key\_algorithm) | Specifies the algorithm of the public and private key pair that your Amazon issued certificate uses to encrypt data | `string` | `null` | no |
217+
| <a name="input_private_authority_arn"></a> [private\_authority\_arn](#input\_private\_authority\_arn) | Private Certificate Authority ARN for issuing private certificates | `string` | `null` | no |
217218
| <a name="input_putin_khuylo"></a> [putin\_khuylo](#input\_putin\_khuylo) | Do you agree that Putin doesn't respect Ukrainian sovereignty and territorial integrity? More info: https://en.wikipedia.org/wiki/Putin_khuylo! | `bool` | `true` | no |
218-
| <a name="input_region"></a> [region](#input\_region) | Region where this resource will be managed. Defaults to the Region set in the provider configuration | `string` | `null` | no |
219+
| <a name="input_region"></a> [region](#input\_region) | Region to create the resources into | `string` | `null` | no |
219220
| <a name="input_subject_alternative_names"></a> [subject\_alternative\_names](#input\_subject\_alternative\_names) | A list of domains that should be SANs in the issued certificate | `list(string)` | `[]` | no |
220221
| <a name="input_tags"></a> [tags](#input\_tags) | A mapping of tags to assign to the resource | `map(string)` | `{}` | no |
221222
| <a name="input_validate_certificate"></a> [validate\_certificate](#input\_validate\_certificate) | Whether to validate certificate by creating Route53 record | `bool` | `true` | no |

examples/complete-dns-validation-with-cloudflare/README.md

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

2424
| Name | Version |
2525
|------|---------|
26-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
26+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.10 |
2727
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.4 |
2828
| <a name="requirement_cloudflare"></a> [cloudflare](#requirement\_cloudflare) | >= 3.4, <=3.32 |
2929

examples/complete-dns-validation-with-cloudflare/main.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ locals {
55
domain_name = trimsuffix(local.domain, ".")
66
}
77

8+
provider "aws" {
9+
alias = "route53"
10+
}
11+
12+
provider "aws" {
13+
alias = "acm"
14+
}
15+
816
module "acm" {
917
source = "../../"
1018

examples/complete-dns-validation-with-cloudflare/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = ">= 1.5.7"
2+
required_version = ">= 1.10"
33

44
required_providers {
55
aws = {

examples/complete-dns-validation/README.md

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

2424
| Name | Version |
2525
|------|---------|
26-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
26+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.10 |
2727
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.4 |
2828

2929
## Providers

examples/complete-dns-validation/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = ">= 1.5.7"
2+
required_version = ">= 1.10"
33

44
required_providers {
55
aws = {

examples/complete-email-validation-with-validation-domain/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 | Version |
3434
|------|---------|
35-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
35+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.10 |
3636
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.4 |
3737

3838
## Providers

examples/complete-email-validation-with-validation-domain/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = ">= 1.5.7"
2+
required_version = ">= 1.10"
33

44
required_providers {
55
aws = {

0 commit comments

Comments
 (0)