Update datadog provider

This commit is contained in:
Seth Vargo 2017-04-10 12:20:16 -04:00
parent 33483de62f
commit e6784907d8
No known key found for this signature in database
GPG Key ID: C921994F9C27E0FF
5 changed files with 9 additions and 10 deletions

View File

@ -16,7 +16,7 @@ Use the navigation to the left to read about the available resources.
## Example Usage
```
```hcl
# Configure the Datadog provider
provider "datadog" {
api_key = "${var.datadog_api_key}"
@ -40,4 +40,3 @@ The following arguments are supported:
* `api_key` - (Required) Datadog API key. This can also be set via the `DATADOG_API_KEY` environment variable.
* `app_key` - (Required) Datadog APP key. This can also be set via the `DATADOG_APP_KEY` environment variable.

View File

@ -6,13 +6,13 @@ description: |-
Provides a Datadog downtime resource. This can be used to create and manage downtimes.
---
# datadog\_downtime
# datadog_downtime
Provides a Datadog downtime resource. This can be used to create and manage Datadog downtimes.
## Example Usage
```
```hcl
# Create a new daily 1700-0900 Datadog downtime
resource "datadog_downtime" "foo" {
scope = ["*"]

View File

@ -6,13 +6,13 @@ description: |-
Provides a Datadog monitor resource. This can be used to create and manage monitors.
---
# datadog\_monitor
# datadog_monitor
Provides a Datadog monitor resource. This can be used to create and manage Datadog monitors.
## Example Usage
```
```hcl
# Create a new Datadog monitor
resource "datadog_monitor" "foo" {
name = "Name for monitor foo"

View File

@ -6,13 +6,13 @@ description: |-
Provides a Datadog timeboard resource. This can be used to create and manage timeboards.
---
# datadog\_timeboard
# datadog_timeboard
Provides a Datadog timeboard resource. This can be used to create and manage Datadog timeboards.
## Example Usage
```
```hcl
# Create a new Datadog timeboard
resource "datadog_timeboard" "redis" {
title = "Redis Timeboard (created via Terraform)"

View File

@ -6,13 +6,13 @@ description: |-
Provides a Datadog user resource. This can be used to create and manage users.
---
# datadog\_user
# datadog_user
Provides a Datadog user resource. This can be used to create and manage Datadog users.
## Example Usage
```
```hcl
# Create a new Datadog user
resource "datadog_user" "foo" {
email = "new@example.com"