The Heroku provider is used to interact with the resources supported by Heroku. The provider needs to be configured with the proper credentials before it can be used.
Use the navigation to the left to read about the available resources.
# Configure the Heroku provider provider "heroku" { email = "[email protected]" api_key = "${var.heroku_api_key}" } # Create a new application resource "heroku_app" "default" { # ... }
The following arguments are supported:
api_key
- (Required) Heroku API token. It must be provided, but it can also be sourced from the HEROKU_API_KEY
environment variable. email
- (Required) Email to be notified by Heroku. It must be provided, but it can also be sourced from the HEROKU_EMAIL
environment variable. headers
- (Optional) Additional Headers to be sent to Heroku. If not provided, it can also be sourced from the HEROKU_HEADERS
environment variable.
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/heroku/index.html