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
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
-
# aws-acm-certificate Terraform Module
1
+
# dflook/acm-certificate/aws Terraform Module
2
2
3
3
This module creates an ACM issued DNS validated certificate.
4
4
It supports automatically creating the required validation records where the zone is hosted by Route53.
5
5
6
-
The [validation submodule](modules/validation) can be used with this resource to create the validation records in a Route53 Hosted Zone in another AWS account.
6
+
The [validation submodule](https://registry.terraform.io/modules/dflook/acm-certificate/aws/latest/submodules/validation) can be used with this resource to create the validation records in a Route53 Hosted Zone in another AWS account.
7
7
8
8
This module can also be used to create certificates that include names that can't have their validation records automatically created.
9
9
@@ -69,7 +69,7 @@ The `domain_validation_options` attribute could also be used to create validatio
69
69
70
70
## Examples
71
71
72
-
See the full [examples](examples/) for more.
72
+
See the full [examples](https://github.com/dflook/terraform-aws-acm-certificate/tree/main/examples) for more.
73
73
74
74
### A single name
75
75
@@ -119,7 +119,7 @@ module "certificate" {
119
119
This creates a certificate that includes a name that belongs to a Hosted Zone in another AWS account.
120
120
The additional name must be in the `names` input variable with the zone id set to `null`, which prevents the module from trying to create the validation record itself.
121
121
122
-
You can use the `validation` submodule to create the validation records in the other account by passing in an aws provider configured for the correct account.
122
+
You can use the [validation submodule](https://registry.terraform.io/modules/dflook/acm-certificate/aws/latest/submodules/validation) to create the validation records in the other account by passing in an aws provider configured for the correct account.
Copy file name to clipboardExpand all lines: examples/non_automated/README.md
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,3 +3,27 @@ Perhaps the DNS zone is controlled by a third party.
3
3
4
4
The `wait_for_issuance` input variable is set to `false` so the certificate resource is created and the ARN made available through the `arn` output before the certificate is issued.
5
5
The `domain_validation_options` output contains the validation records that still need to be created for the certificate to be issued.
0 commit comments