forked from ulamlabs/terraform-aws-rabbitmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
66 lines (51 loc) · 1.13 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 "vpc_id" {
}
variable "ssh_key_name" {
}
variable "name_prefix" {
description = "The full name of the created resources will be built as follows: {prefix}_{resource}_{postfix}"
}
variable "name_postfix" {
description = "The full name of the created resources will be built as follows: {prefix}_{resource}_{postfix}"
}
variable "size" {
description = "Number of RabbitMQ nodes"
default = 3
}
variable "subnet_ids" {
description = "Subnets for RabbitMQ nodes"
type = list(string)
}
variable "nodes_additional_security_group_ids" {
type = list(string)
default = []
}
variable "elb_additional_security_group_ids" {
type = list(string)
default = []
}
variable "instance_type" {
default = "m5.large"
}
variable "instance_volume_type" {
default = "standard"
}
variable "instance_volume_size" {
default = "0"
}
variable "instance_volume_iops" {
default = "0"
}
variable "instance_volume_throughput" {
default = "0"
}
variable "rabbitmq_version" {
default = "3.9.12-management"
}
variable "service_tag" {
}
variable "metric_host" {
}
variable "metricbeat_version" {
default = "7.17.1"
}