-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
48 lines (40 loc) · 1.09 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
variable "name" {
description = "Name of the environment"
type = string
default = "dev"
}
variable "consul_version" {
description = "Consul version used for the environment"
default = "1.20.1"
}
variable "nomad_version" {
description = "Nomad version used for the environment"
default = "1.9.3"
}
variable "worker_count" {
description = "Number of worker for the environment"
default = 1
}
variable "hcloud_token" {
description = "Hetzner Cloud API token"
sensitive = true
}
variable "hcloud_server_type" {
description = "Hetzner Cloud Server Type used for the environment"
default = "cx22"
}
variable "hcloud_labels" {
description = "Additional labels that are added to all Hetzner Cloud resources"
type = map(string)
default = {}
}
variable "hcloud_location" {
description = "Hetzner Cloud Location used for the environment"
type = string
default = "hel1"
}
variable "hcloud_network_zone" {
description = "Hetzner Cloud network zone used for the environment"
type = string
default = "eu-central"
}