mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 01:00:50 -04:00
772 B
772 B
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| heroku | Heroku: heroku_app_feature | docs-heroku-resource-app-feature | Provides a Heroku App Feature resource. This can be used to create and manage App Features on Heroku. |
heroku_app_feature
Provides a Heroku App Feature resource. This can be used to create and manage App Features on Heroku.
Example Usage
resource "heroku_app_feature" "log_runtime_metrics" {
app = "test-app"
name = "log-runtime-metrics"
}
Argument Reference
The following arguments are supported:
app- (Required) The Heroku app to link to.name- (Required) The name of the App Feature to manage.enabled- (Optional) Whether to enable or disable the App Feature. The default value is true.