Skip to content

Commit

Permalink
v1.73.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kishikawa12 committed Jan 29, 2025
1 parent 59b57ec commit d616ae9
Show file tree
Hide file tree
Showing 7 changed files with 59 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/resources/automation_workflow_aws_connections.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "dynatrace_automation_workflow_aws_connections" "#name#" {
name = "#name#"
type = "webIdentity"
web_identity {
role_arn = "arn:aws:iam::helloworld:role.helloworld"
role_arn = "arn:aws:iam::123456789012:role/helloworld"
}
}
```
Expand Down
53 changes: 53 additions & 0 deletions docs/resources/business_events_capturing_variants.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
layout: ""
page_title: dynatrace_business_events_capturing_variants Resource - terraform-provider-dynatrace"
subcategory: "Business Events"
description: |-
The resource `dynatrace_business_events_capturing_variants` covers configuration for OneAgent business event capturing variants
---

# dynatrace_business_events_capturing_variants (Resource)

-> This resource requires the API token scopes **Read settings** (`settings.read`) and **Write settings** (`settings.write`)

## Dynatrace Documentation

- Business event capture - https://docs.dynatrace.com/docs/observe/business-analytics/ba-events-capturing

- Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId: `builtin:bizevents.http.capturing-variants`)

## Export Example Usage

- `terraform-provider-dynatrace -export dynatrace_business_events_capturing_variants` downloads all existing OneAgent business event capturing variants configuration

The full documentation of the export feature is available [here](https://dt-url.net/h203qmc).

## Resource Example Usage

```terraform
resource "dynatrace_business_events_capturing_variants" "#name#" {
content_type_matcher = "EQUALS"
content_type_value = "#name#"
parser = "Text"
scope = "environment"
}
```

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

### Required

- `content_type_matcher` (String) Possible Values: `CONTAINS`, `ENDS_WITH`, `EQUALS`, `STARTS_WITH`
- `content_type_value` (String) Content-type match value
- `parser` (String) Possible Values: `JSON`, `Raw`, `Text`, `URLencoded`, `XML`

### Optional

- `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
- `scope` (String) The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.

### Read-Only

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

2 changes: 1 addition & 1 deletion docs/resources/business_events_oneagent_outgoing.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ description: |-

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

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

## Export Example Usage

Expand Down
1 change: 1 addition & 0 deletions docs/resources/davis_anomaly_detectors.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,5 +172,6 @@ Required:

Optional:

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

1 change: 1 addition & 0 deletions docs/resources/discovery_default_rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ Required:

Optional:

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

<a id="nestedblock--rule--actions--action--parameters"></a>
Expand Down
1 change: 1 addition & 0 deletions docs/resources/log_custom_source.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ Required:
Optional:

- `accept_binary` (Boolean) Accept binary content
- `encoding` (String) no documentation available
- `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.
- `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))

Expand Down
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.6"
const Current = "1.73.0"

0 comments on commit d616ae9

Please sign in to comment.