File tree 11 files changed +164
-5
lines changed
11 files changed +164
-5
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 4
4
![ Main Gameplay] ( /screenshots/main-gameplay.gif )
5
5
6
6
7
-
8
-
9
-
10
7
- - - -
11
8
12
9
## Getting Started
@@ -34,4 +31,16 @@ npm start
34
31
35
32
By default, the project will run on [ localhost:3000] ( http://localhost:3000/ )
36
33
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
+ ```
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ ]
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
1
+
2
+ terraform {
3
+ required_version = " >= 0.13"
4
+ }
You can’t perform that action at this time.
0 commit comments