Skip to content

Commit

Permalink
v1.72.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinhard-Pilz-Dynatrace committed Jan 17, 2025
1 parent 42a3291 commit 144edb4
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
40 changes: 40 additions & 0 deletions docs/data-sources/application_detection_rules.md
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)
2 changes: 1 addition & 1 deletion provider/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@

package version

const Current = "1.72.2"
const Current = "1.72.3"

0 comments on commit 144edb4

Please sign in to comment.