Skip to content

Terraform module to set up a Heroku app for hosting a web application with a Postgres database

License

Notifications You must be signed in to change notification settings

aqche/terraform-heroku-app-postgres

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

terraform-heroku-app-postgres

A Terraform module to set up a Heroku app for hosting a web application with a PostgreSQL database.

Features

  • A Heroku application created with a specified buildpack (Defaults to Python) and region (Defaults to US).
  • A Heroku Postgres database provisioned for the application (Defaults to Hobby tier).
  • The ability to provide configuration variables for the provisioned Heroku application.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development. See local usage for notes on how to deploy the project.

Prerequisites

To run this module you need Terraform.

Local Usage

Clone the project.

git clone https://github.com/aqche/terraform-heroku-app-postgres.git

Use init to install the project dependencies.

cd terraform-heroku-app-postgres
terraform init

Set the HEROKU_EMAIL and HEROKU_API_KEY environment variables using your Heroku credentials.

export HEROKU_EMAIL="ops@company.com"
export HEROKU_API_KEY="heroku_api_key"

Run a plan and pass in the desired variables to view the Terraform execution plan. For more information on each variable, view the variables.tf file.

terraform plan -var 'name=heroku-app-name'

When you are ready to deploy the Heroku infrastructure, run apply.

terraform apply -var 'name=heroku-app-name'

Module Usage

To use this module in your own Terraform code, simply source this repository and pass in the desired name of your Heroku application.

module "terraform-heroku-app-postgres" {
  source = "github.com/aqche/terraform-heroku-app-postgres.git"
  name   = "heroku-app-name"
}

Built With

Contributing

Feel free to submit a pull request!

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE file for more details.

About

Terraform module to set up a Heroku app for hosting a web application with a Postgres database

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages