Merge pull request #81 from lowescott/bastion-cleanup

Clean up SSH bastion environment
This commit is contained in:
Scott S. Lowe 2017-05-25 09:54:58 -06:00 committed by GitHub
commit 9fa36f70bf
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"