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>
This commit is contained in:
Scott Lowe 2017-05-25 09:50:48 -06:00
parent c1c422b18a
commit 85ba80ace7
No known key found for this signature in database
GPG key ID: 949F43F6E6C11780
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,3 @@
provider "aws" {
region = "us-west-2"
region = "${var.user_region}"
}

View file

@ -1,3 +1,8 @@
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"