-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
66 lines (50 loc) · 927 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
variable "key_name" {
default = ""
}
variable "volume_size" {
default = 30
}
variable "image_id" {
default = "packer-vault"
}
variable "instance_type" {
default = "t2.small"
}
variable "asg_min_size" {
default = 0
}
variable "asg_max_size" {
default = 5
}
variable "vault_instance_count" {
default = 2
}
variable "wait_for_capacity_timeout" {
default = "10m"
}
variable "vpc_id" {
}
variable "deregistration_delay" {
default = 20
}
variable "terraform_state_bucket" {
}
variable "zone" {
default = "gastrollc.com"
}
variable "zone_name" {
default = ""
}
variable "deletion_window_in_days" {
default = 10
}
variable "pgp_operator_keys" {
description = "list of public PGP keys then will be used as recovery keys in Vault"
type = list(string)
}
variable "lambda_path" {
default = "/lambda.zip"
}
variable "offload_tls" {
default = false
}