File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
# Terraform AWS ACM Multiple Hosted Zone Example
2
2
3
- This provides example on how to use terraform-aws-acm-multiple-hosted-zone module.
3
+ This example provides guides on how to use terraform-aws-acm-multiple-hosted-zone module.
4
4
5
5
## Usage
6
6
@@ -13,7 +13,7 @@ terraform apply tfplan.out
13
13
```
14
14
15
15
Note that this example may create resources that cost money.
16
- Run ` terraform destroy ` when you don't need the resources anymore .
16
+ Run ` terraform destroy ` to clean up them .
17
17
18
18
## Requirements
19
19
@@ -35,4 +35,3 @@ No input.
35
35
| ------| -------------|
36
36
| certificate\_ arn | n/a |
37
37
| certificate\_ domains | n/a |
38
-
Original file line number Diff line number Diff line change 1
1
module "acm" {
2
2
source = " ../../"
3
3
4
- domains = [
5
- {
6
- zone = " example.com"
7
- domain = " example.com "
8
- },
4
+ domain_name = {
5
+ zone = " example.com "
6
+ domain = " example.com"
7
+ }
8
+ subject_alternative_names = [
9
9
{
10
10
zone = " example.com"
11
11
domain = " *.example.com"
@@ -21,6 +21,6 @@ module "acm" {
21
21
]
22
22
23
23
tags = {
24
- Name = " Test ACM request with multiple hosted zones"
24
+ Name = " ACM certificate with multiple hosted zones"
25
25
}
26
26
}
Original file line number Diff line number Diff line change 1
1
provider "aws" {
2
2
version = " ~> 2.61"
3
3
region = " us-west-2"
4
- }
4
+ }
5
+
You can’t perform that action at this time.
0 commit comments