scottslowe-learning-tools/terraform/aws/simple-ec2/variables.tf
Scott Lowe 5645144589
Update formatting
Update formatting of all Terraform configuration files per `terraform fmt`

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
2017-10-18 11:52:09 -06:00

19 lines
444 B
HCL

variable "user_region" {
type = "string"
description = "AWS region in which to create all resources"
}
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"
}
variable "sec-group" {
type = "string"
description = "AWS security group to apply to instances"
}