2014-07-24 17:18:00 +02:00
|
|
|
---
|
|
|
|
layout: "heroku"
|
|
|
|
page_title: "Heroku: heroku_app"
|
|
|
|
sidebar_current: "docs-heroku-resource-app"
|
|
|
|
---
|
|
|
|
|
|
|
|
# heroku\_app
|
|
|
|
|
|
|
|
Provides a Heroku App resource. This can be used to
|
|
|
|
create and manage applications on Heroku.
|
|
|
|
|
|
|
|
## Example Usage
|
|
|
|
|
|
|
|
```
|
|
|
|
# Create a new heroku app
|
|
|
|
resource "heroku_app" "default" {
|
|
|
|
name = "my-cool-app"
|
2014-07-25 05:30:59 +02:00
|
|
|
|
|
|
|
config_vars {
|
|
|
|
FOOBAR = "baz"
|
|
|
|
}
|
2014-07-24 17:18:00 +02:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Argument Reference
|
|
|
|
|
|
|
|
The following arguments are supported:
|
|
|
|
|
2014-08-28 00:50:38 +02:00
|
|
|
* `name` - (Required) The name of the application. In Heroku, this is also the
|
|
|
|
unique ID, so it must be unique and have a minimum of 3 characters.
|
|
|
|
* `region` - (Required) The region that the app should be deployed in.
|
2014-07-25 05:30:59 +02:00
|
|
|
* `stack` - (Optional) The application stack is what platform to run the application
|
|
|
|
in.
|
|
|
|
* `config_vars` - (Optional) Configuration variables for the application.
|
2014-08-28 01:26:03 +02:00
|
|
|
The config variables in this map are not the final set of configuration
|
|
|
|
variables, but rather variables you want present. That is, other
|
|
|
|
configuration variables set externally won't be removed by Terraform
|
|
|
|
if they aren't present in this list.
|
2014-07-24 17:18:00 +02:00
|
|
|
|
|
|
|
## Attributes Reference
|
|
|
|
|
|
|
|
The following attributes are exported:
|
|
|
|
|
2014-07-25 05:30:59 +02:00
|
|
|
* `id` - The ID of the app. This is also the name of the application.
|
|
|
|
* `name` - The name of the application. In Heroku, this is also the
|
|
|
|
unique ID.
|
|
|
|
* `stack` - The application stack is what platform to run the application
|
|
|
|
in.
|
|
|
|
* `region` - The region that the app should be deployed in.
|
2014-07-29 08:51:24 +02:00
|
|
|
* `git_url` - The Git URL for the application. This is used for
|
2014-07-25 05:30:59 +02:00
|
|
|
deploying new versions of the app.
|
|
|
|
* `web_url` - The web (HTTP) URL that the application can be accessed
|
|
|
|
at by default.
|
2014-08-07 09:19:56 +02:00
|
|
|
* `heroku_hostname` - A hostname for the Heroku application, suitable
|
2014-07-25 05:30:59 +02:00
|
|
|
for pointing DNS records.
|
2014-08-28 01:34:43 +02:00
|
|
|
* `all_config_vars` - A map of all of the configuration variables that
|
|
|
|
exist for the app, containing both those set by Terraform and those
|
|
|
|
set externally.
|