terraform/website/source/docs/providers/heroku/r/addon.html.markdown

49 lines
1010 B
Markdown
Raw Normal View History

2014-07-24 17:05:33 +02:00
---
layout: "heroku"
page_title: "Heroku: heroku_addon"
sidebar_current: "docs-heroku-resource-addon"
2014-10-22 05:21:56 +02:00
description: |-
Provides a Heroku Add-On resource. These can be attach services to a Heroku app.
2014-07-24 17:05:33 +02:00
---
# heroku\_addon
Provides a Heroku Add-On resource. These can be attach
services to a Heroku app.
## Example Usage
```
# Create a new Heroku app
2014-07-24 17:18:00 +02:00
resource "heroku_app" "default" {
name = "test-app"
}
2014-07-24 17:05:33 +02:00
# Add a web-hook addon for the app
resource "heroku_addon" "webhook" {
2014-07-24 17:18:00 +02:00
app = "${heroku_app.default.name}"
2014-07-24 17:05:33 +02:00
plan = "deployhooks:http"
config {
url = "http://google.com"
}
}
```
## Argument Reference
The following arguments are supported:
* `app` - (Required) The Heroku app to add to.
2014-07-24 17:18:00 +02:00
* `plan` - (Required) The addon to add.
2014-07-24 17:05:33 +02:00
* `config` - (Optional) Optional plan configuration.
## Attributes Reference
The following attributes are exported:
* `id` - The ID of the add-on
* `name` - The add-on name
* `plan` - The plan name
* `provider_id` - The ID of the plan provider