-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
49 lines (40 loc) · 1.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
variable "do_token" {
description = "DigitalOcean access token. https://developers.digitalocean.com/documentation/v2/#authentication"
default = ""
}
variable "droplet_name" {
description = "Droplet name in DigitalOcean"
default = "VPN-Proxy-droplet"
}
variable "region" {
description = "A datacenter where droplet will be depoyed. https://developers.digitalocean.com/documentation/v2/#regions"
default = "nyc3"
}
variable "ssh_key_path" {
description = "Absolute path to ssh key"
default = ""
}
variable "proxy_user" {
description = "Username to authenticate in SOCKS5 proxy"
default = ""
}
variable "proxy_password" {
description = "Password to authenticate in SOCKS5 proxy"
default = ""
}
variable "proxy_port" {
description = "Network port for SOCKS5 proxy"
default = "1080"
}
variable "vpn_user" {
description = "VPN username. DO NOT use these special characters within values: \\ \" '"
default = "vpnuser"
}
variable "vpn_password" {
description = "VPN password. DO NOT use these special characters within values: \\ \" ' "
default = ""
}
variable "vpn_ipsec_psk" {
description = "IPsec pre-shared key. DO NOT use these special characters within values: \\ \" ' "
default = ""
}