-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
152 lines (126 loc) · 3.24 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
variable "instance_type" {
description = "The instance type to use"
type = string
default = "t2.medium"
}
variable "volume_size" {
description = "The volume size to use in GB"
type = number
default = 50
}
variable "user_groups" {
description = "User groups to assign to cluster"
type = list(string)
}
variable "user" {
description = "LDAP user to use for connections"
type = string
}
variable "agent" {
description = "Use SSH agent for authentication"
type = bool
default = false
}
variable "private_key" {
description = "Private key for SSH access (should not have a passphrase)"
type = string
default = ""
}
variable "org_name" {
description = "Cloudfoundry ORG name to use for reverse proxy"
type = string
}
variable "space_name" {
description = "Cloudfoundry SPACE name to use for reverse proxy"
type = string
}
variable "superset_image" {
description = "The Temporal server image to use"
type = string
default = "apache/superset:latest-dev"
}
variable "fluent_bit_image" {
description = "Fluent-bit image"
type = string
default = "philipssoftware/fluent-bit-out-hsdp:latest"
}
variable "postgres_plan" {
description = "The HSDP-RDS PostgreSQL plan to use"
type = string
default = "postgres-medium-dev"
}
variable "redis_plan" {
description = "The Redis plan to use"
type = string
default = "redis-standalone"
}
variable "workers" {
description = "Number of worker nodes to spin up"
type = number
default = 1
}
variable "worker_instance_type" {
description = "Instance type of worker nodes"
type = string
default = "m5.xlarge"
}
variable "hsdp_shared_key" {
description = "HSDP Logging shared key"
type = string
default = ""
}
variable "hsdp_secret_key" {
description = "HSDP Logging secret key"
type = string
default = ""
}
variable "hsdp_product_key" {
description = "HSDP Logging product key"
type = string
default = ""
}
variable "hsdp_custom_field" {
description = "Post structured JSON message to HSDP Logging custom field"
type = string
default = "true"
}
variable "hsdp_region" {
description = "The HSDP region of the deployment"
type = string
default = "us-east"
}
variable "hsdp_environment" {
description = "The HSDP environment of the deployment"
type = string
default = "client-test"
}
variable "cartel_token" {
description = "The Cartel token to use for autoscaling"
type = string
default = ""
}
variable "cartel_secret" {
description = "The Cartel secret to use for autoscaling"
type = string
default = ""
}
variable "name_postfix" {
type = string
description = "The postfix string to append to the hostname, prevents namespace clashes"
default = ""
}
variable "docker_username" {
type = string
description = "Docker registry username"
default = ""
}
variable "docker_password" {
type = string
description = "Docker registry password"
default = ""
}
variable "caddy_image" {
type = string
description = "Caddy server image to use"
default = "caddy:2.4.5"
}