Merge pull request #784 from byu/master

Add Terraform Variable for AWS instance type
This commit is contained in:
Armon Dadgar 2015-04-10 10:43:36 -07:00
commit d50a2894c1
2 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,6 @@
resource "aws_instance" "server" { resource "aws_instance" "server" {
ami = "${lookup(var.ami, var.region)}" ami = "${lookup(var.ami, var.region)}"
instance_type = "m1.small" instance_type = "${var.instance_type}"
key_name = "${var.key_name}" key_name = "${var.key_name}"
count = "${var.servers}" count = "${var.servers}"
security_groups = ["${aws_security_group.consul.name}"] security_groups = ["${aws_security_group.consul.name}"]

View File

@ -22,3 +22,8 @@ variable "servers" {
default = "3" default = "3"
description = "The number of Consul servers to launch." description = "The number of Consul servers to launch."
} }
variable "instance_type" {
default = "m1.small"
description = "The instance type to launch."
}