Skip to content

Commit 6364334

Browse files
IAC: Terraform for Heroku Deployment
1 parent 75c0337 commit 6364334

11 files changed

+164
-5
lines changed

.eslintcache

+1-1
Large diffs are not rendered by default.

README.md

+13-4
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
![Main Gameplay](/screenshots/main-gameplay.gif)
55

66

7-
8-
9-
107
- - - -
118

129
## Getting Started
@@ -34,4 +31,16 @@ npm start
3431

3532
By default, the project will run on [localhost:3000](http://localhost:3000/)
3633

37-
- - - -
34+
- - - -
35+
36+
## Deploying Infrastructure
37+
The cloud resources can be provisioned automatically using Terraform
38+
39+
### You will need:
40+
* [Terraform (v0.13.0)](https://www.terraform.io/downloads.html)
41+
```
42+
cd infrastructure/heroku
43+
terraform init -var-file="secret.tfvars"
44+
terraform plan -var-file="secret.tfvars"
45+
terraform apply -var-file="secret.tfvars"
46+
```

infrastructure/heroku/.gitignore

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Local .terraform directories
2+
**/.terraform/*
3+
4+
# .tfstate files
5+
*.tfstate
6+
*.tfstate.*
7+
8+
# Crash log files
9+
crash.log
10+
11+
# Exclude all .tfvars files, which are likely to contain sentitive data, such as
12+
# password, private keys, and other secrets. These should not be part of version
13+
# control as they are data points which are potentially sensitive and subject
14+
# to change depending on the environment.
15+
#
16+
secret.tfvars
17+
18+
# Ignore override files as they are usually used to override resources locally and so
19+
# are not checked in
20+
override.tf
21+
override.tf.json
22+
*_override.tf
23+
*_override.tf.json
24+
25+
# Include override files you do wish to add to version control using negated pattern
26+
#
27+
# !example_override.tf
28+
29+
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
30+
# example: *tfplan*
31+
32+
# Ignore CLI configuration files
33+
.terraformrc
34+
terraform.rc

infrastructure/heroku/apps.tf

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
resource "heroku_app" "testing" {
3+
name = "${var.heroku_testing_app}"
4+
region = "${var.heroku_region}"
5+
6+
config_vars = {
7+
APP_ENV = "testing"
8+
NODE_ENV = "testing"
9+
}
10+
11+
buildpacks = "${var.heroku_app_buildpacks}"
12+
}
13+
14+
resource "heroku_app" "production" {
15+
name = "${var.heroku_production_app}"
16+
region = "${var.heroku_region}"
17+
18+
config_vars = {
19+
APP_ENV = "production"
20+
NODE_ENV = "production"
21+
}
22+
23+
buildpacks = "${var.heroku_app_buildpacks}"
24+
}

infrastructure/heroku/deployment.tf

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Build code & release to the app
2+
resource "heroku_build" "example" {
3+
app = "${heroku_app.testing.name}"
4+
source {
5+
url = "https://github.com/josephmfaulkner/stack-em-blocks/archive/refs/tags/0.0.1.tar.gz"
6+
}
7+
}
8+
9+
# Launch the app's web process by scaling-up
10+
resource "heroku_formation" "example" {
11+
app = "${heroku_app.testing.name}"
12+
type = "web"
13+
quantity = 1
14+
size = "free"
15+
depends_on = [heroku_build.example]
16+
}
17+
18+
output "testing_app_url" {
19+
value = "https://${heroku_app.testing.name}.herokuapp.com"
20+
}

infrastructure/heroku/main.tf

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
terraform {
2+
required_providers {
3+
heroku = {
4+
source = "terraform-providers/heroku"
5+
version = ">= 4.0"
6+
}
7+
}
8+
}
9+
10+
provider "heroku" {
11+
email = "${var.heroku_account_email}"
12+
api_key = "${var.heroku_api_key}"
13+
}

infrastructure/heroku/outputs.tf

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
output "testing_git_url" {
3+
value = "${heroku_app.testing.git_url}"
4+
}
5+
6+
output "production_git_url" {
7+
value = "${heroku_app.production.git_url}"
8+
}

infrastructure/heroku/pipeline.tf

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
resource "heroku_pipeline" "pipeline" {
2+
name = "${var.heroku_pipeline_name}"
3+
}
4+
5+
resource "heroku_pipeline_coupling" "testing" {
6+
app = "${heroku_app.testing.name}"
7+
pipeline = "${heroku_pipeline.pipeline.id}"
8+
stage = "staging"
9+
}
10+
11+
resource "heroku_pipeline_coupling" "production" {
12+
app = "${heroku_app.production.name}"
13+
pipeline = "${heroku_pipeline.pipeline.id}"
14+
stage = "production"
15+
}
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
heroku_pipeline_name = "stack-em-blocks-pipeline"
3+
4+
heroku_region = "us"
5+
6+
heroku_testing_app = "stack-em-blocks-test"
7+
heroku_production_app = "stack-em-blocks-heroku-prod"
8+
9+
heroku_app_buildpacks = [
10+
"mars/create-react-app"
11+
]

infrastructure/heroku/variables.tf

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
variable "heroku_account_email" {
2+
description = "Email for Heroku Account"
3+
type = string
4+
}
5+
6+
variable "heroku_api_key" {
7+
description = "API Key from Heroku Account"
8+
type = string
9+
}
10+
11+
variable "heroku_pipeline_name" {}
12+
13+
variable "heroku_region" {}
14+
15+
variable "heroku_testing_app" {}
16+
17+
variable "heroku_production_app" {}
18+
19+
variable "heroku_app_buildpacks" {
20+
type = "list"
21+
}

infrastructure/heroku/versions.tf

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
terraform {
3+
required_version = ">= 0.13"
4+
}

0 commit comments

Comments
 (0)