We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3392557 commit 6d7d59bCopy full SHA for 6d7d59b
_example/generate-certificate-dns/example.tf
@@ -12,7 +12,5 @@ module "acm" {
12
environment = "test"
13
14
domain_name = "clouddrove.com"
15
- subject_alternative_names = ["www.clouddrove.com"]
16
- validation_method = "DNS"
17
- enable_dns_validation = false
+ subject_alternative_names = ["*.${var.domain}", "www.${var.domain}"]
18
}
variables.tf
@@ -46,7 +46,7 @@ variable "subject_alternative_names" {
46
47
variable "validation_method" {
48
type = string
49
- default = ""
+ default = "DNS"
50
description = "Which method to use for validation, DNS or EMAIL."
51
52
0 commit comments