Skip to content

Commit

Permalink
add instance type to example
Browse files Browse the repository at this point in the history
  • Loading branch information
krotkiewicz committed Jul 14, 2017
1 parent 762e2d0 commit 72a4e5e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ region = "<REGION-HERE>"
access_key = "<YOUR-KEY-HERE>"
secret_key = "<YOUR-SECRET-HERE>"
ssh_key_name = "<SSH-KEY-NAME>"
instance_type = "t2.small"
vpc_id = "<VPC-ID>"
subnet_ids = ["<SUBNET-ID-1>", "<SUBNET-ID-2>"]
ssh_security_group_ids = []
Expand Down
2 changes: 2 additions & 0 deletions example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ variable "region" {}

variable "vpc_id" {}
variable "ssh_key_name" {}
variable "instance_type" {}
variable "subnet_ids" {
type = "list"
}
Expand All @@ -30,6 +31,7 @@ module "rabbitmq" {
region = "${var.region}"
vpc_id = "${var.vpc_id}"
ssh_key_name = "${var.ssh_key_name}"
instance_type = "${var.instance_type}"
subnet_ids = "${var.subnet_ids}"
ssh_security_group_ids = "${var.ssh_security_group_ids}"
elb_security_group_ids = "${var.elb_security_group_ids}"
Expand Down

0 comments on commit 72a4e5e

Please sign in to comment.