scottslowe-learning-tools/terraform-aws/simple-ec2/vars.tf
Scott S. Lowe 3279b2e390 Add Terraform configuration for simple EC2 instance
Add a simple Terraform configuration to spin up an Ubuntu 14.04 EC2 instance in the default VPC using the default security group.

Signed-off-by: Scott S. Lowe <scott.lowe@scottlowe.org>
2016-10-21 15:29:32 -06:00

17 lines
538 B
HCL

variable "keypair" {
type = "string"
description = "AWS SSH keypair to use to connect to instances"
default = "aws_rsa"
}
variable "flavor" {
type = "string"
description = "AWS type to use when creating instances"
default = "t2.micro"
}
variable "sec-group" {
type = "string"
description = "AWS security group to apply to instances"
default = "sg-7099b514"
}