-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
71 lines (59 loc) · 1.71 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
variable "cloudflare_api_token" {
type = string
description = "Token for Terraform provider to work with the Cloudflare API"
sensitive = true
}
variable "github_access_token" {
type = string
description = "Personal access token for Terraform provider to act on user behalf"
sensitive = true
}
variable "gcp_project_id" {
type = string
description = "Project ID in Google Cloud"
}
variable "account_id" {
type = string
description = "The account identifier, the basic resource for working with Cloudflare zones, teams and users"
}
variable "ssh_host" {
type = string
description = "The hostname of the server"
}
variable "ssh_port" {
type = number
description = "The SSH port of the server"
}
variable "ssh_username" {
type = string
description = "The username used for authentication"
}
variable "ssh_private_key_filename" {
type = string
description = "The filename of the private key used for authentication"
}
variable "ssh_private_key_value" {
type = string
description = "The value of the private key used for authentication"
sensitive = true
}
variable "gluetun_private_key" {
type = string
description = "The private key used for gluetun VPN provider"
sensitive = true
}
variable "gluetun_preshared_key" {
type = string
description = "The preshared key used for gluetun VPN provider"
sensitive = true
}
variable "sudo_password" {
type = string
description = "The password of the permitted user, to execute a command as the superuser"
sensitive = true
}
variable "kopia_password" {
type = string
description = "The password used for Kopia"
sensitive = true
}