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,13 @@
### Variables
variable "environment" {
description = "The short name of this deployed environment. For example: 'dev' or 'prod'. This short name will be used to name resources (CloudFront distributions, etc.)"
}
variable "artifact_bucket" {
description = "The aws_s3_bucket object representing the artifact bucket where deployed artifacts, logs, etc. live."
}
variable "cloudfront_ssl_certificate_arn" {
description = "ARN of the managed SSL certificate to use for this environment."
}