scottslowe-learning-tools/terraform/aws/ic-module/variables.tf
Scott Lowe e260eb828e
Add files for instance-cluster environment
Commit files to show use of 2 separate Terraform modules, including the "instance-cluster" module to spin up a cluster of instances

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
2017-09-24 22:04:11 -06:00

14 lines
394 B
HCL

variable "user_region" {
type = "string"
description = "AWS region to use for all resources"
}
variable "node_type" {
type = "string"
description = "Type of instance to use"
}
variable "key_pair" {
type = "string"
description = "SSH keypair to use for accessing instances"
}