consolodating to single folder

This commit is contained in:
Jonathan Simon
2019-11-17 22:49:51 -08:00
parent 90e4015ddf
commit 41f9618aa8
3 changed files with 2 additions and 0 deletions

17
terraform/aws/provider.tf Normal file
View File

@@ -0,0 +1,17 @@
provider "aws" {
version = "~> 2.0"
region = "us-west-2"
access_key = "${var.aws_access_key}"
secret_key = "${var.aws_secret_key}"
}
terraform {
backend "remote" {
hostname = "app.terraform.io"
organization = "jibakurei"
workspaces {
prefix = "kthw-"
}
}
}