scottslowe-learning-tools/terraform/aws/bastion-aws/variables.tf
Scott Lowe 85ba80ace7
Clean up SSH bastion environment
Clean up Terraform+AWS SSH bastion environment. This is part of #80.

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
2017-05-25 09:50:48 -06:00

14 lines
424 B
HCL

variable "user_region" {
type = "string"
description = "AWS region in which all resources will be created"
}
variable "keypair" {
type = "string"
description = "AWS SSH keypair to use to connect to instances"
}
variable "flavor" {
type = "string"
description = "AWS type to use when creating instances"
}