-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
45 lines (37 loc) · 1.01 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
variable "domain" {
description = "Domain name of the certificate"
}
variable "hostname" {
description = "Hostname of the certificate"
default = ""
}
variable "validation_method" {
description = "Which method to use for validation. DNS or EMAIL are valid."
default = "DNS"
}
variable "subject_alternative_names" {
description = "A list of domains that should be SANs in the issued certificate"
type = list(string)
default = []
}
variable "tags" {
description = "A mapping of tags to be supplied to resources where supported"
type = map(string)
default = {}
}
variable "skip_route53_validation" {
description = "Set to true for zones not hosted in Route53"
type = bool
default = false
}
variable "create_route53_record" {
description = "Set to false if Route53 record already exists"
type = bool
default = true
}
# Debugging.
variable "_debug" {
description = "Produce debug output (boolean)"
type = bool
default = false
}