-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
30 lines (25 loc) · 758 Bytes
/
Copy pathvariables.tf
File metadata and controls
30 lines (25 loc) · 758 Bytes
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
variable "region" {
description = "AWS region"
default = "ap-south-1"
}
variable "instance_type" {
description = "EC2 instance type"
default = "t2.medium"
}
variable "retry_join" {
description = "Used by Consul to automatically form a cluster."
type = string
default = "provider=aws tag_key=ConsulAutoJoin tag_value=auto-join"
}
variable "name_prefix" {
description = "Prefix used to name various infrastructure components. Alphanumeric characters only."
default = "minion"
}
variable "response_service_count" {
description = "Number of response service instances to create"
default = 2
}
variable "hello_service_count" {
description = "Number of hello service instances to create"
default = 2
}