heroku_account_feature

This resource is used to create and manage User Features on Heroku.

Available Features

For a list of available features, use the heroku labs command to fetch them for the current authenticated user.

The output will contain User Features that may be managed with this resource.

Example Usage

resource "heroku_account_feature" "example_metrics" {
  name = "metrics-request-volume"
  enabled = true
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Import

Existing account features can be imported using a combination of the account email (the email address tied to the Heroku API key) and the feature name.

For example:

$ terraform import heroku_account_feature.example_metrics name@example.com:metrics-request-volume