-
Notifications
You must be signed in to change notification settings - Fork 12
/
variables.tf
33 lines (28 loc) · 829 Bytes
/
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
variable "domain_name" {
description = "Domain name for the ACM certificate"
type = map(string)
}
variable "subject_alternative_names" {
description = "List of subject alternative names for the ACM certificate"
type = list(map(string))
}
variable "tags" {
description = "Key and value pair that will be added as tag"
type = map(string)
default = {}
}
variable "validate_certificate" {
description = "Whether to validate certificate"
type = bool
default = true
}
variable "validation_set_records" {
description = "Whether to configure Route53 records for validation"
type = bool
default = true
}
variable "validation_allow_overwrite_records" {
description = "Whether to allow overwrite of Route53 records"
type = bool
default = true
}