You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+17
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,23 @@ Terraform module to create an ACM resource that contains domains from multiple R
4
4
ACM validation is using Route53 only.
5
5
This module supports terraform version 0.12 only.
6
6
7
+
## Module versions
8
+
9
+
- Module version 1.x is in the `master` branch.
10
+
- Module version 2.x is in the `v2xx` branch.
11
+
12
+
Module version 2 introduces breaking change. You can't use version 1.x configuration with module 2.x and vice versa.
13
+
To upgrade your existing Terraform project to module version 2, I suggest to provision a new certificate with the same domain name and subject alternatives name. Here is the step would look like:
14
+
15
+
1. Instantiate `acm-multiple-hosted-zone` version 2 in your existing terraform project.
16
+
1. Provision a new ACM certificate using `acm-multiple-hosted-zone` version 2.
17
+
18
+
1. Run `terraform plan -out=tfplan.out`.
19
+
1. Run `terraform apply tfplan.out`.
20
+
1. Write down ARN of the newly created ACM certificate.
21
+
22
+
1. On the consumer side of ACM certificate (For example, ALB), replace old certificate with the new one. This will guarantee a graceful upgrade without downtime.
23
+
7
24
## Usage
8
25
9
26
The `domain_name` and `subject_alternative_names` variables consist of map (object) of string and list of map of string. Each object must consist **zone** and **domain** keys.
0 commit comments