-
Notifications
You must be signed in to change notification settings - Fork 389
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "datadog_security_monitoring_suppressions Data Source - terraform-provider-datadog" | ||
subcategory: "" | ||
description: |- | ||
Use this data source to retrieve information about existing suppression rules, and use them in other resources. | ||
--- | ||
|
||
# datadog_security_monitoring_suppressions (Data Source) | ||
|
||
Use this data source to retrieve information about existing suppression rules, and use them in other resources. | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. | ||
- `suppression_ids` (List of String) List of IDs of suppressions | ||
- `suppressions` (List of Object) List of suppressions (see [below for nested schema](#nestedatt--suppressions)) | ||
|
||
<a id="nestedatt--suppressions"></a> | ||
### Nested Schema for `suppressions` | ||
|
||
Read-Only: | ||
|
||
- `description` (String) | ||
- `enabled` (Boolean) | ||
- `expiration_date` (String) | ||
- `name` (String) | ||
- `rule_query` (String) | ||
- `suppression_query` (String) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "datadog_security_monitoring_suppression Resource - terraform-provider-datadog" | ||
subcategory: "" | ||
description: |- | ||
Provides a Datadog Security Monitoring Suppression API resource. It can be used to create and manage Datadog security monitoring suppression rules. | ||
--- | ||
|
||
# datadog_security_monitoring_suppression (Resource) | ||
|
||
Provides a Datadog Security Monitoring Suppression API resource. It can be used to create and manage Datadog security monitoring suppression rules. | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `enabled` (Boolean) Whether the suppression rule is enabled. | ||
- `name` (String) The name of the suppression rule. | ||
- `rule_query` (String) The rule query of the suppression rule, with the same syntax as the search bar for detection rules. | ||
- `suppression_query` (String) The suppression query of the suppression rule. If a signal matches this query, it is suppressed and is not triggered. Same syntax as the queries to search signals in the signal explorer. | ||
|
||
### Optional | ||
|
||
- `description` (String) A description for the suppression rule. | ||
- `expiration_date` (String) A RFC3339 timestamp giving an expiration date for the suppression rule. After this date, it won't suppress signals anymore. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. |