Add Terraform Variable for AWS instance type

Details:
* Adds an input variable to the consul terraform template module to
  allow a user of the module to specify a different
  AWS instance type to launch.
* The default is still "m1.small".
* The module input variable is named "instance_type".
This commit is contained in:
Benjamin Yu 2015-03-14 11:00:22 -07:00
parent d969655cfa
commit 4c0ecc3b6f
2 changed files with 6 additions and 1 deletions

View File

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

View File

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