-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
44 lines (37 loc) · 1018 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
variable "vpc_id" {
type = string
description = "VPC ID"
}
variable "vpc_subnet_id" {
description = "This should refer to the subnet in which you want to spin up the CPM instance"
type = string
}
variable "newrelic_cpm_manager_instance_type" {
description = "The instance type to run per machine."
type = string
default = "t2.medium"
}
variable "newrelic_cpm_container" {
description = "The CPM docker container"
type = string
default = "quay.io/newrelic/synthetics-minion:latest"
}
variable "newrelic_private_location_key" {
type = string
description = "New Relic private location key."
}
variable "newrelic_cpm_manager_volume_size" {
type = number
description = "The EC2 volume size"
default = 20
}
variable "min_instances" {
description = "The minimum of instances"
type = number
default = 2
}
variable "max_instances" {
description = "The maximum of instances"
type = number
default = 3
}