Skip to content

Commit d616ae9

Browse files
committed
v1.73.0
1 parent 59b57ec commit d616ae9

File tree

7 files changed

+59
-3
lines changed

7 files changed

+59
-3
lines changed

docs/resources/automation_workflow_aws_connections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ resource "dynatrace_automation_workflow_aws_connections" "#name#" {
2929
name = "#name#"
3030
type = "webIdentity"
3131
web_identity {
32-
role_arn = "arn:aws:iam::helloworld:role.helloworld"
32+
role_arn = "arn:aws:iam::123456789012:role/helloworld"
3333
}
3434
}
3535
```
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
layout: ""
3+
page_title: dynatrace_business_events_capturing_variants Resource - terraform-provider-dynatrace"
4+
subcategory: "Business Events"
5+
description: |-
6+
The resource `dynatrace_business_events_capturing_variants` covers configuration for OneAgent business event capturing variants
7+
---
8+
9+
# dynatrace_business_events_capturing_variants (Resource)
10+
11+
-> This resource requires the API token scopes **Read settings** (`settings.read`) and **Write settings** (`settings.write`)
12+
13+
## Dynatrace Documentation
14+
15+
- Business event capture - https://docs.dynatrace.com/docs/observe/business-analytics/ba-events-capturing
16+
17+
- Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId: `builtin:bizevents.http.capturing-variants`)
18+
19+
## Export Example Usage
20+
21+
- `terraform-provider-dynatrace -export dynatrace_business_events_capturing_variants` downloads all existing OneAgent business event capturing variants configuration
22+
23+
The full documentation of the export feature is available [here](https://dt-url.net/h203qmc).
24+
25+
## Resource Example Usage
26+
27+
```terraform
28+
resource "dynatrace_business_events_capturing_variants" "#name#" {
29+
content_type_matcher = "EQUALS"
30+
content_type_value = "#name#"
31+
parser = "Text"
32+
scope = "environment"
33+
}
34+
```
35+
36+
<!-- schema generated by tfplugindocs -->
37+
## Schema
38+
39+
### Required
40+
41+
- `content_type_matcher` (String) Possible Values: `CONTAINS`, `ENDS_WITH`, `EQUALS`, `STARTS_WITH`
42+
- `content_type_value` (String) Content-type match value
43+
- `parser` (String) Possible Values: `JSON`, `Raw`, `Text`, `URLencoded`, `XML`
44+
45+
### Optional
46+
47+
- `insert_after` (String) Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
48+
- `scope` (String) The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
49+
50+
### Read-Only
51+
52+
- `id` (String) The ID of this resource.
53+

docs/resources/business_events_oneagent_outgoing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ description: |-
1414

1515
- Business event capture - https://www.dynatrace.com/support/help/platform-modules/business-analytics/ba-events-capturing#report-business-event-oneagent
1616

17-
- Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId: `builtin:bizevents.http.outgoingg`)
17+
- Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId: `builtin:bizevents.http.outgoing`)
1818

1919
## Export Example Usage
2020

docs/resources/davis_anomaly_detectors.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,5 +172,6 @@ Required:
172172

173173
Optional:
174174

175+
- `actor` (String) UUID of a service user. Queries will be executed on behalf of the service user.
175176
- `query_offset` (Number) Minute offset of sliding evaluation window for metrics with latency
176177

docs/resources/discovery_default_rules.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ Required:
103103

104104
Optional:
105105

106+
- `instant_action` (Boolean) Instant action
106107
- `parameters` (Block List, Max: 1) no documentation available (see [below for nested schema](#nestedblock--rule--actions--action--parameters))
107108

108109
<a id="nestedblock--rule--actions--action--parameters"></a>

docs/resources/log_custom_source.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ Required:
8080
Optional:
8181

8282
- `accept_binary` (Boolean) Accept binary content
83+
- `encoding` (String) no documentation available
8384
- `values` (Set of String) (Required attribute for cluster v1.291 and under) It might be either an absolute path to log(s) with optional wildcards or Windows Event Log name.
8485
- `values_and_enrichment` (Block List, Max: 1) (Required attribute for cluster v1.292+) It might be either an absolute path to log(s) with optional wildcards or Windows Event Log name. (see [below for nested schema](#nestedblock--custom_log_source--values_and_enrichment))
8586

provider/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717

1818
package version
1919

20-
const Current = "1.72.6"
20+
const Current = "1.73.0"

0 commit comments

Comments
 (0)