-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkspace.tfvars.example
42 lines (42 loc) · 977 Bytes
/
workspace.tfvars.example
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
env = "myworkspace"
server_plan = "DEV-1xCPU-1GB-10GB"
server_hostname = "myhost"
server_domain_name = "example.com"
storage_uuid = "01000000-0000-4000-8000-000020070100"
utility_network = []
public_network = ["IPv4", "IPv6"]
public_ssh_key_path = "~/.ssh/id_rsa.pub"
init_command = ["apt-get update", "apt-get -y upgrade", "apt-get -y install vim"]
firewall = true
firewall_allow = [
{
name = "SSH"
port_start = "22"
family = "IPv4"
protocol = "tcp"
},
{
name = "HTTPS"
port_start = "443"
family = "IPv4"
protocol = "tcp"
},
{
name = "HTTPS"
port_start = "443"
family = "IPv6"
protocol = "tcp"
},
{
name = "HTTP"
port_start = "80"
family = "IPv6"
protocol = "tcp"
},
{
name = "HTTP"
port_start = "80"
family = "IPv4"
protocol = "tcp"
}
]