forked from lnobach/nctalk-backend-cloud-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
32 lines (24 loc) · 801 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
variable "hcloud_token" {
description = "Hetzner Cloud token (can be obtained from the console)"
}
variable "frontend_domain" {
description = "The domain name used for frontend access. Required for ACME/Let's Encrypt"
}
variable "letsencrypt_mail" {
description = "E-Mail address passed to Let's Encrypt"
}
variable "location" {
description = "Location of VM and elastic IPs"
default = "fsn1"
}
variable "nc_endpoint" {}
variable "nc_sharedsecret" {}
variable "turn_sharedsecret" {}
variable "name" {
description = "Name (prefix) of the infrastructure components"
default = "vb"
}
variable "ssh_key_selector" {
description = "The SSH key selector which will be used for login - see https://docs.hetzner.cloud/#overview-label-selector"
default = "purpose=admin"
}