File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ region = "<REGION-HERE>"
23
23
access_key = "<YOUR-KEY-HERE>"
24
24
secret_key = "<YOUR-SECRET-HERE>"
25
25
ssh_key_name = "<SSH-KEY-NAME>"
26
+ instance_type = "t2.small"
26
27
vpc_id = "<VPC-ID>"
27
28
subnet_ids = ["<SUBNET-ID-1>", "<SUBNET-ID-2>"]
28
29
ssh_security_group_ids = []
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ variable "region" {}
4
4
5
5
variable "vpc_id" {}
6
6
variable "ssh_key_name" {}
7
+ variable "instance_type" {}
7
8
variable "subnet_ids" {
8
9
type = " list"
9
10
}
@@ -30,6 +31,7 @@ module "rabbitmq" {
30
31
region = " ${ var . region } "
31
32
vpc_id = " ${ var . vpc_id } "
32
33
ssh_key_name = " ${ var . ssh_key_name } "
34
+ instance_type = " ${ var . instance_type } "
33
35
subnet_ids = " ${ var . subnet_ids } "
34
36
ssh_security_group_ids = " ${ var . ssh_security_group_ids } "
35
37
elb_security_group_ids = " ${ var . elb_security_group_ids } "
You can’t perform that action at this time.
0 commit comments