mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
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:
parent
c1c422b18a
commit
85ba80ace7
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,3 @@
|
|||
provider "aws" {
|
||||
region = "us-west-2"
|
||||
region = "${var.user_region}"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
Loading…
Reference in a new issue