FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

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"
    region = "us"

    config_vars {
        FOOBAR = "baz"
    }
}

Argument Reference

The following arguments are supported:

The organization block supports:

Attributes Reference

The following attributes are exported:


See the source of this document at Terraform.io