-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathvars.tf
50 lines (39 loc) · 959 Bytes
/
vars.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
variable "aws_access_key" {
description = "Access key for AWS account"
}
variable "aws_secret_key" {
description = "Secret for AWS account"
}
variable "aws_region" {
description = "The region name to deploy into"
}
variable "aws_key_fingerprint" {
description = "Fingrprint of your SSH key"
}
variable "aws_key_name" {
description = "SSH key name"
}
variable "nomad_node_instance_size" {
description = "EC2 instance type/size for Nomad nodes"
}
variable "nomad_node_ami_id" {
description = "AMI ID to use for Nomad nodes"
}
variable "nomad_node_count" {
description = "The number of server nodes (should be 3 or 5)"
type = number
}
variable "allowed_ip_network" {
description = "Networks allowed in security group for ingress rules"
}
variable "new_relic_key" {
description = "New Relic key if needed for automatic add of EC2 nodes to monitoring"
}
variable "az_map" {
type = map
default = {
0 = "a"
1 = "b"
2 = "c"
}
}