-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
237 lines (198 loc) · 4.51 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
# The MIT License (MIT)
# Copyright (c) 2014-2021 Avant, Sean Lingren
############################
## Global ##################
############################
variable "name_prefix" {
type = string
description = "A name to prefix every created resource with"
}
variable "tags" {
type = map(string)
description = "A map of tags to apply to all resources"
default = {}
}
variable "ami_owners" {
type = list(string)
default = [
"886701765425",
]
}
variable "ami_name_regex" {
type = string
default = null
}
variable "cfssl_version" {
default = "1.6.4"
}
variable "vpc_peering_enabled" {
default = true
}
variable "asg_defaults" {
type = any
default = {
desired_capacity = 3
min_size = 0
max_size = 3
key_name = null
disk_size = 20
instance_type = "t3a.micro"
vpc_zone_identifier = []
tags_as_map = {}
tags = {}
asg_associate_public_ip_address = false
}
}
variable "nlb_defaults" {
type = any
default = {
internal = false
listener_port = 443
subnets = []
ip_address_type = "dualstack"
}
}
variable "vault_api_address" {
type = string
description = "The address that vault will be accessible at"
}
variable "vault_dns_domain" {
type = string
description = "The DNS address that vault will be accessible at"
}
variable "vault_pki_ca_config" {
type = any
default = {}
}
variable "vault_pki_client_certs" {
type = any
default = {
"default" = {
usages = [
"client_auth",
"key_encipherement",
"digital_signature",
]
subject = {
common_name = "default-vault-client"
}
}
}
}
variable "vault_version" {
default = "1.14.2"
}
variable "vault_cert_dir" {
type = string
description = "The directory on the OS to store Vault certificates"
default = "/usr/local/etc/vault/tls"
}
variable "vault_config_dir" {
type = string
description = "The directory on the OS to store the Vault configuration"
default = "/usr/local/etc/vault"
}
variable "vault_additional_config" {
type = string
description = "Additional content to include in the vault configuration file"
default = ""
}
variable "vault_additional_userdata" {
type = string
description = "Additional content to include in the cloud-init userdata for the EC2 instances"
default = ""
}
variable "vault_routing_policy" {
default = "all"
validation {
condition = contains(["leader_only", "all"], var.vault_routing_policy)
error_message = "Values can only be \"leader_only\" or \"all\"."
}
}
variable "vault_tls_require_and_verify_client_cert" {
default = false
}
variable "vault_max_lease_ttl" {
default = "192h"
type = string
}
variable "vault_default_lease_ttl" {
default = "192h"
type = string
}
variable "vault_prometheus_retention_time" {
default = "6h"
type = string
}
variable "vault_tls_min_version" {
default = "tls12"
type = string
}
#############################
### VPC #####################
#############################
variable "vpc_id" {
type = string
description = "The ID of the VPC to use"
}
variable "vpc_secondary_id" {
type = string
description = "The ID of the VPC to use"
}
#############################
### EC2 #####################
#############################
variable "asg" {
type = any
}
variable "asg_secondary" {
type = any
}
#############################
### NLB #####################
#############################
variable "nlbs" {
type = any
default = {
"external" = {
}
"internal" = {
internal = true
}
}
}
variable "nlbs_secondary" {
type = any
default = {
"external" = {
}
"internal" = {
internal = true
}
}
}
#############################
### DNS #####################
#############################
variable "route53_zone_name" {
default = ""
}
variable "route53_private_zone_name" {
default = ""
}
variable "existing_dynamodb_tables" {
default = {}
type = object({
primary = optional(object({
name = string
}))
secondary = optional(object({
name = string
}))
})
description = "use exising dynamodbs tables (useful for recovery)"
}
variable "existing_kms_seal_key_id" {
default = ""
description = "use existing kms unseal key (useful for recovery)"
}