-
Notifications
You must be signed in to change notification settings - Fork 5
/
variables.tf
54 lines (48 loc) · 1010 Bytes
/
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
variable "consul" {
default = {
version = "1.5.2"
servers_count = 3
server_instance_type = "t3.micro"
}
type = object({
version = string
servers_count = number
server_instance_type = string
})
}
variable "nomad" {
default = {
version = "0.9.3"
servers_count = 3
server_instance_type = "t3.micro"
clients_count = 3
client_instance_type = "t3.micro"
}
type = object({
version = string
servers_count = number
server_instance_type = string
clients_count = number
client_instance_type = string
})
}
variable "namespace" {
default = "terraforminaction"
type = string
}
variable "ssh_keypair" {
default = null
type = string
}
variable "datacenter" {
default = "aws"
type = string
}
variable "join_wan" {
type = list(string)
default = []
}
variable "associate_public_ips" {
default = true
type = bool
}