Skip to content

Commit

Permalink
providers/heroku: add heroku_app_feature resource (hashicorp#14035)
Browse files Browse the repository at this point in the history
  • Loading branch information
danp authored and catsby committed Apr 27, 2017
1 parent 090b12f commit 62d20db
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions r/app_feature.html.markdown
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.

0 comments on commit 62d20db

Please sign in to comment.