-
Notifications
You must be signed in to change notification settings - Fork 34
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
1 parent
42a3291
commit 144edb4
Showing
2 changed files
with
41 additions
and
1 deletion.
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,40 @@ | ||
--- | ||
layout: "" | ||
page_title: "dynatrace_application_detection_rules Data Source - terraform-provider-dynatrace" | ||
subcategory: "Web Applications" | ||
description: |- | ||
The data source `dynatrace_application_detection_rules` covers queries for application detection rules | ||
--- | ||
|
||
# dynatrace_application_detection_rules (Data Source) | ||
|
||
The application detection rules data source allows retrieval of all existing rules. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "dynatrace_application_detection_rules" "test" { | ||
} | ||
output "application_detection_rules" { | ||
value = data.dynatrace_application_detection_rules.test | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. | ||
- `values` (List of Object) (see [below for nested schema](#nestedatt--values)) | ||
|
||
<a id="nestedatt--values"></a> | ||
### Nested Schema for `values` | ||
|
||
Read-Only: | ||
|
||
- `application_id` (String) | ||
- `id` (String) | ||
- `matcher` (String) | ||
- `pattern` (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 |
---|---|---|
|
@@ -17,4 +17,4 @@ | |
|
||
package version | ||
|
||
const Current = "1.72.2" | ||
const Current = "1.72.3" |