forked from terraform-aws-modules/terraform-aws-acm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
65 lines (55 loc) · 1.73 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
variable "create_certificate" {
description = "Whether to create ACM certificate"
type = bool
default = true
}
variable "validate_certificate" {
description = "Whether to validate certificate by creating Route53 record"
type = bool
default = true
}
variable "validation_allow_overwrite_records" {
description = "Whether to allow overwrite of Route53 records"
type = bool
default = true
}
variable "wait_for_validation" {
description = "Whether to wait for the validation to complete"
type = bool
default = true
}
variable "certificate_transparency_logging_preference" {
description = "Specifies whether certificate details should be added to a certificate transparency log"
type = bool
default = true
}
variable "domain_name" {
description = "A domain name for which the certificate should be issued"
type = string
default = ""
}
variable "subject_alternative_names" {
description = "A list of domains that should be SANs in the issued certificate"
type = list(string)
default = []
}
variable "validation_method" {
description = "Which method to use for validation. DNS or EMAIL are valid, NONE can be used for certificates that were imported into ACM and then into Terraform."
type = string
default = "DNS"
}
variable "zone_id" {
description = "The ID of the hosted zone to contain this record."
type = string
default = ""
}
variable "tags" {
description = "A mapping of tags to assign to the resource"
type = map(string)
default = {}
}
variable "dns_ttl" {
description = "The TTL of DNS recursive resolvers to cache information about this record."
type = number
default = 60
}