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
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,34 @@ module "acm" {
25
25
}
26
26
```
27
27
28
+
## [Usage with CloudFront](https://aws.amazon.com/premiumsupport/knowledge-center/install-ssl-cloudfront/)
29
+
30
+
```hcl
31
+
# CloudFront supports US East (N. Virginia) Region only.
32
+
provider "aws" {
33
+
alias = "us-east-1"
34
+
region = "us-east-1"
35
+
}
36
+
37
+
module "acm" {
38
+
source = "terraform-aws-modules/acm/aws"
39
+
40
+
providers = {
41
+
aws = aws.us-east-1
42
+
}
43
+
44
+
domain_name = "my-domain.com"
45
+
zone_id = "Z266PL4W4W6MSG"
46
+
47
+
wait_for_validation = true
48
+
49
+
tags = {
50
+
Name = "my-domain.com"
51
+
}
52
+
}
53
+
54
+
```
55
+
28
56
## Examples
29
57
30
58
-[Complete example with DNS validation (recommended)](https://github.com/terraform-aws-modules/terraform-aws-acm/tree/master/examples/complete-dns-validation)
0 commit comments