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>"
2323access_key = "<YOUR-KEY-HERE>"
2424secret_key = "<YOUR-SECRET-HERE>"
2525ssh_key_name = "<SSH-KEY-NAME>"
26+ instance_type = "t2.small"
2627vpc_id = "<VPC-ID>"
2728subnet_ids = ["<SUBNET-ID-1>", "<SUBNET-ID-2>"]
2829ssh_security_group_ids = []
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ variable "region" {}
44
55variable "vpc_id" {}
66variable "ssh_key_name" {}
7+ variable "instance_type" {}
78variable "subnet_ids" {
89 type = " list"
910}
@@ -30,6 +31,7 @@ module "rabbitmq" {
3031 region = " ${ var . region } "
3132 vpc_id = " ${ var . vpc_id } "
3233 ssh_key_name = " ${ var . ssh_key_name } "
34+ instance_type = " ${ var . instance_type } "
3335 subnet_ids = " ${ var . subnet_ids } "
3436 ssh_security_group_ids = " ${ var . ssh_security_group_ids } "
3537 elb_security_group_ids = " ${ var . elb_security_group_ids } "
You can’t perform that action at this time.
0 commit comments