forked from hashicorp/terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
providers/heroku: add heroku_app_feature resource (hashicorp#14035)
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
layout: "heroku" | ||
page_title: "Heroku: heroku_app_feature" | ||
sidebar_current: "docs-heroku-resource-app-feature" | ||
description: |- | ||
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 | ||
|
||
```hcl | ||
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. |