-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
66 lines (55 loc) · 1.42 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
66
variable "key_filename" {
description = "Absolute or relative path of the filename that will be generated"
type = string
default = "attribute_only"
}
variable "cert_filename" {
description = "Absolute or relative path of the filename that will be generated"
type = string
default = "attribute_only"
}
variable "validity_period" {
description = "Validity Period in hours of both the CA and the certificate"
type = number
default = 8760
}
variable "org" {
description = "Certificate Organization"
type = string
}
variable "cn" {
description = "Certificate Common Name"
type = string
}
variable "location" {
description = "Certificate Location"
type = string
}
variable "country" {
description = "Certificate Country"
type = string
}
variable "ou" {
description = "Certificate Organizational Unit"
type = string
}
variable "ca_key" {
type = string
description = "If default the module will create a new CA"
default = "generated"
}
variable "ca_cert" {
type = string
description = "If default the module will create a new CA"
default = "generated"
}
variable "dns_names" {
description = "List of ip, hostnames the certificate is for."
type = list
default = []
}
variable "ip_addresses" {
description = "List of ip_addresses for which the certificate will be valid (e.g. foo.example.com)."
type = list
default = []
}