Update datadog provider
This commit is contained in:
parent
33483de62f
commit
e6784907d8
|
@ -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.
|
||||
|
||||
|
|
|
@ -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 = ["*"]
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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)"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue