-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
80 lines (64 loc) · 1.05 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
variable "hcloud_token" {
type = string
default = ""
}
variable "hcloud_location" {
default = "nbg1"
}
variable "hcloud_server_type" {
default = "cx21"
}
variable "hcloud_os_type" {
default = "ubuntu-22.04"
}
variable "hcloud_disk_size" {
default = "40"
}
variable "hcloud_ip_range" {
default = "10.0.1.0/24"
}
variable "hcloud_ssh_key" {
type = string
default = "~/.ssh/id_rsa"
}
variable "aws_access_key" {
type = string
default = ""
}
variable "aws_secret_key" {
type = string
default = ""
sensitive = true
}
variable "database_password" {
type = string
default = ""
}
variable "public_keys" {
type = list(string)
default = []
}
variable "sudo_user" {
type = string
default = "devops"
}
variable "admin_user" {
type = string
default = ""
}
variable "install_dir" {
type = string
default = "/opt/firezone"
}
variable "external_url" {
type = string
default = ""
}
variable "app_version" {
type = string
default = "latest"
}
variable "telemetry" {
type = bool
default = false
}