FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

heroku_addon

Provides a Heroku Add-On resource. These can be attach services to a Heroku app.

Example Usage

# Create a new Heroku app
resource "heroku_app" "default" {
    name = "test-app"
}

# Create a database, and configure the app to use it
resource "heroku_addon" "database" {
  app = "${heroku_app.default.name}"
  plan = "heroku-postgresql:hobby-basic"
}

# Add a web-hook addon for the app
resource "heroku_addon" "webhook" {
    app = "${heroku_app.default.name}"
    plan = "deployhooks:http"
    config {
        url = "http://google.com"
    }
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:


See the source of this document at Terraform.io