https://github.com/nthings/terraform-heroku-free-stack
Terraform module to create a basic free application
https://github.com/nthings/terraform-heroku-free-stack
heroku terraform terraform-module
Last synced: 2 months ago
JSON representation
Terraform module to create a basic free application
- Host: GitHub
- URL: https://github.com/nthings/terraform-heroku-free-stack
- Owner: nthings
- License: mit
- Created: 2019-08-06T14:21:24.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-06T15:04:10.000Z (almost 7 years ago)
- Last Synced: 2025-03-22T10:25:59.157Z (over 1 year ago)
- Topics: heroku, terraform, terraform-module
- Language: HCL
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terraform Heroku Free Stack
Terraform module to create a basic free application. I use it to create ephemeral test environments in NodeJS.
## Usage
See https://www.terraform.io/docs/providers/heroku/index.html#authentication for configuring your credentials for Heroku.
See https://github.com/NTHINGs/Debts/tree/master/infrastructure for an example implementation of a Angular + NodeJS application deployed with this module.
## Inputs
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|----------|
| config_vars | Environment variables set in the app. | map | `{}` | no |
| name | Heroku App Name (Should be unique). | string | - | `yes` |
| region | Heroku region to deploy the app. | string | `us` | no |
| sensitive_config_vars | Sensitive environment variables set in the app. For example db password. | map | `{}` | no |
| tar_build_path | Relative path to a tar file containing the code. | string | - | `yes` |
## Outputs
| Name | Description |
|------|-------------|
| url | Url of the deployed app in heroku |