Skip to content

Commit

Permalink
add docs
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinGuillard committed Oct 17, 2024
1 parent fb8b7a5 commit 9b10b4c
Show file tree
Hide file tree
Showing 3 changed files with 101 additions and 1 deletion.
52 changes: 52 additions & 0 deletions docs/data-sources/application_security_exclusion_filters.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "datadog_application_security_exclusion_filters Data Source - terraform-provider-datadog"
subcategory: ""
description: |-
Retrieves Datadog Application Security Exclusion Filters.
---

# datadog_application_security_exclusion_filters (Data Source)

Retrieves Datadog Application Security Exclusion Filters.



<!-- schema generated by tfplugindocs -->
## Schema

### Read-Only

- `exclusion_filters` (List of Object) List of Application Security exclusion filters (see [below for nested schema](#nestedatt--exclusion_filters))
- `exclusion_filters_ids` (List of String) List of IDs for the Application Security exclusion filters.
- `id` (String) The ID of this resource.

<a id="nestedatt--exclusion_filters"></a>
### Nested Schema for `exclusion_filters`

Read-Only:

- `description` (String)
- `enabled` (Boolean)
- `id` (String)
- `parameters` (List of String)
- `path_glob` (String)
- `rules_target` (List of Object) (see [below for nested schema](#nestedobjatt--exclusion_filters--rules_target))
- `scope` (List of Object) (see [below for nested schema](#nestedobjatt--exclusion_filters--scope))

<a id="nestedobjatt--exclusion_filters--rules_target"></a>
### Nested Schema for `exclusion_filters.rules_target`

Read-Only:

- `category` (String)
- `type` (String)


<a id="nestedobjatt--exclusion_filters--scope"></a>
### Nested Schema for `exclusion_filters.scope`

Read-Only:

- `env` (String)
- `service` (String)
48 changes: 48 additions & 0 deletions docs/resources/application_security_exclusion_filters.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "datadog_application_security_exclusion_filters Resource - terraform-provider-datadog"
subcategory: ""
description: |-
Provides a Datadog Application Security Exclusion Filters API resource.
---

# datadog_application_security_exclusion_filters (Resource)

Provides a Datadog Application Security Exclusion Filters API resource.



<!-- schema generated by tfplugindocs -->
## Schema

### Required

- `description` (String) A description for the exclusion filter.
- `enabled` (Boolean) Indicates whether the exclusion filter is enabled.
- `path_glob` (String) The path glob for the exclusion filter.

### Optional

- `parameters` (List of String) List of parameters for the exclusion filters.
- `rules_target` (List of Object) The rules target of the exclusion filter with 'rule_id'. (see [below for nested schema](#nestedatt--rules_target))
- `scope` (List of Object) The scope of the exclusion filter. Each entry contains 'env' and 'service'. (see [below for nested schema](#nestedatt--scope))

### Read-Only

- `id` (String) The ID of this resource.

<a id="nestedatt--rules_target"></a>
### Nested Schema for `rules_target`

Optional:

- `rule_id` (String)


<a id="nestedatt--scope"></a>
### Nested Schema for `scope`

Optional:

- `env` (String)
- `service` (String)
2 changes: 1 addition & 1 deletion docs/resources/synthetics_test.md
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ resource "datadog_synthetics_test" "test_grpc_health" {
- `locations` (Set of String) Array of locations used to run the test. Refer to [the Datadog Synthetics location data source](https://registry.terraform.io/providers/DataDog/datadog/latest/docs/data-sources/synthetics_locations) to retrieve the list of locations.
- `name` (String) Name of Datadog synthetics test.
- `status` (String) Define whether you want to start (`live`) or pause (`paused`) a Synthetic test. Valid values are `live`, `paused`.
- `type` (String) Synthetics test type. Valid values are `api`, `browser`.
- `type` (String) Synthetics test type. Valid values are `api`, `browser`, `mobile`.

### Optional

Expand Down

0 comments on commit 9b10b4c

Please sign in to comment.