github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/website/source/docs/providers/heroku/r/app_feature.html.markdown (about)

     1  ---
     2  layout: "heroku"
     3  page_title: "Heroku: heroku_app_feature"
     4  sidebar_current: "docs-heroku-resource-app-feature"
     5  description: |-
     6    Provides a Heroku App Feature resource. This can be used to create and manage App Features on Heroku.
     7  ---
     8  
     9  # heroku\_app\_feature
    10  
    11  Provides a Heroku App Feature resource. This can be used to create and manage App Features on Heroku.
    12  
    13  ## Example Usage
    14  
    15  ```hcl
    16  resource "heroku_app_feature" "log_runtime_metrics" {
    17    app = "test-app"
    18    name = "log-runtime-metrics"
    19  }
    20  ```
    21  
    22  ## Argument Reference
    23  
    24  The following arguments are supported:
    25  
    26  * `app` - (Required) The Heroku app to link to.
    27  * `name` - (Required) The name of the App Feature to manage.
    28  * `enabled` - (Optional) Whether to enable or disable the App Feature. The default value is true.