-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
77 lines (63 loc) · 1.33 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
variable do_token {
type = string
}
variable region {
type = string
default = "ams3"
}
variable server_droplet_count {
type = number
default = 3
}
variable client_droplet_count {
type = number
default = 2
}
variable server_droplet_size {
type = string
default = "s-1vcpu-1gb"
}
variable client_droplet_size {
type = string
default = "s-1vcpu-1gb"
}
variable bastion_droplet_size {
type = string
default = "s-1vcpu-1gb"
}
variable ssh_key {
type = string
description = "Name of SSH Key as it appears in the DigitalOcean dashboard"
}
variable ssh_private_key {
type = string
description = "PRIVATE key"
}
variable subdomain {
type = string
description = "The first part of my URL. Ex: the www in www.solublecode.dev"
default = "apollo"
}
variable domain_name {
type = string
description = "Domain you have registered and manged by DigitalOcean"
default = "solublecode.dev"
}
variable name {
type = string
default = "mapesa"
description = "Name of your project. Will be prepended to most resources"
}
# https://slugs.do-api.dev/
variable ubuntu-image {
type = string
default = "ubuntu-20-04-x64"
}
variable fedora-image {
type = string
default = "fedora-31-x64"
}
variable centos-image {
type = string
default = "centos-8-x64"
}