-
Notifications
You must be signed in to change notification settings - Fork 6
/
variables.tf
66 lines (59 loc) · 1.31 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
variable "namespace" {
default = "terraforminaction"
type = string
}
variable "datacenter" {
default = "azure"
type = string
}
variable "join_wan" {
type = list(string)
default = []
}
variable "associate_public_ips" {
default = true
type = bool
}
variable "location" {
type = string
}
variable "admin" {
default = {
username = "azure"
password = "Passwword1234"
disable_password_authentication = false
}
type = object({
username = string
password = string
disable_password_authentication = bool
})
}
variable "consul" {
default = {
version = "1.5.2"
servers_count = 3
server_instance_size = "Standard_A1"
}
type = object({
version = string
servers_count = number
server_instance_size = string
})
}
variable "nomad" {
default = {
version = "0.9.3"
servers_count = 3
server_instance_size = "Standard_A1"
clients_count = 3
client_instance_size = "Standard_A1"
}
type = object({
version = string
servers_count = number
server_instance_size = string
clients_count = number
client_instance_size = string
})
}