-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
47 lines (40 loc) · 996 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
variable "create" {
description = "Controls if certificate should be generated"
type = bool
default = true
}
variable "domain_names" {
description = "Define Domain name"
type = list(string)
default = []
}
variable "validation_method" {
description = "Define Validation Method. `DNS` or `EMAIL`"
type = string
default = "DNS" ## DNS or EMAIL
}
variable "hosted_zone_name" {
description = "Define Hosted Zone Name"
type = string
default = ""
}
variable "private_zone" {
description = "Determine Zone Type. `false` leads to `public zone` and `true` for `private zone`"
type = bool
default = false
}
variable "tags" {
description = "Define Tags"
type = map(any)
default = {}
}
variable "allow_record_overwrite" {
description = "Determine Record Overwite"
type = bool
default = true
}
variable "ttl" {
description = "Define ttl"
type = number
default = 60
}