Created terraform configuration to manage AWS infrastructure.

This commit is contained in:
2019-09-24 22:40:08 -05:00
parent a4b798cec4
commit 0a8f701c3c
11 changed files with 994 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
### Variables
variable "aws_region" {
description = "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
default = "us-west-2" # Oregon
}
variable "deploy_bucket_name" {
description = "Name of the S3 bucket to store deployed artifacts, logs, etc."
default = "pm.jdb-labs.com"
}
#### Provider Configuration
provider "aws" {
region = var.aws_region
}