forked from ulamlabs/terraform-aws-rabbitmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
56 lines (43 loc) · 880 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
55
variable "vpc_id" {
}
variable "ssh_key_name" {
}
variable "name" {
default = "main"
}
variable "min_size" {
description = "Minimum number of RabbitMQ nodes"
default = 2
}
variable "desired_size" {
description = "Desired number of RabbitMQ nodes"
default = 2
}
variable "max_size" {
description = "Maximum number of RabbitMQ nodes"
default = 2
}
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"
}