Skip to content

Commit 252397e

Browse files
committed
v1.64.0
1 parent a8448f9 commit 252397e

File tree

5 files changed

+43
-6
lines changed

5 files changed

+43
-6
lines changed

docs/resources/cloudapp_workloaddetection.md

+21-2
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,22 @@ resource "dynatrace_cloudapp_workloaddetection" "cloud_app_workload_detection" {
6262
- `cloud_foundry` (Block List, Min: 1, Max: 1) Enable this setting to get
6363
* Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application.
6464
* Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). (see [below for nested schema](#nestedblock--cloud_foundry))
65-
- `docker` (Block List, Min: 1, Max: 1) Enable this setting for plain Docker environments to get
66-
* Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). (see [below for nested schema](#nestedblock--docker))
65+
- `docker` (Block List, Min: 1, Max: 1) Enable this setting for plain Docker and Podman environments to get
66+
* Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups).
67+
* Docker support requires OneAgent 1.257+.
68+
* Podman support requires OneAgent 1.267+. (see [below for nested schema](#nestedblock--docker))
6769
- `kubernetes` (Block List, Min: 1, Max: 1) Enable this setting to get
6870
* Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities).
6971
* Container resource metrics (container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups).
7072
* Similar workloads merged into process groups based on defined rules (see below).
7173
* Version detection for services that run in Kubernetes workloads. (see [below for nested schema](#nestedblock--kubernetes))
7274

75+
### Optional
76+
77+
- `serverless` (Block List, Max: 1) Enable this setting to
78+
* Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, [and many more](https://dt-url.net/2m02q7b).
79+
* Container resource metrics (Container group instance entities) and [related screens](https://www.dynatrace.com/support/help/shortlink/container-groups). (see [below for nested schema](#nestedblock--serverless))
80+
7381
### Read-Only
7482

7583
- `id` (String) The ID of this resource.
@@ -141,4 +149,15 @@ Required:
141149
Optional:
142150

143151
- `namespace` (String) Namespace name
152+
153+
154+
155+
156+
157+
<a id="nestedblock--serverless"></a>
158+
### Nested Schema for `serverless`
159+
160+
Required:
161+
162+
- `enabled` (Boolean) This setting is enabled (`true`) or disabled (`false`)
144163

docs/resources/hub_permissions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ resource "dynatrace_hub_permissions" "#name#" {
3838

3939
### Required
4040

41-
- `description` (String) Description
42-
- `email` (String) Email
41+
- `description` (String) Name
42+
- `email` (String) Contact Email
4343

4444
### Read-Only
4545

docs/resources/log_timestamp.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ resource "dynatrace_log_timestamp" "#name#" {
5353

5454
### Optional
5555

56-
- `date_search_limit` (Number) (v1.275) Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
56+
- `date_search_limit` (Number) Defines the number of characters in every log line (starting from the first character in the line) where the timestamp is searched.
57+
- `entry_boundary` (Block List, Max: 1) Optional field. Enter a fragment of the line text that starts the entry. No support for wildcards - the text is treated literally. (see [below for nested schema](#nestedblock--entry_boundary))
5758
- `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
5859
- `matchers` (Block List, Max: 1) no documentation available (see [below for nested schema](#nestedblock--matchers))
5960
- `scope` (String) The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
@@ -62,6 +63,14 @@ resource "dynatrace_log_timestamp" "#name#" {
6263

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

66+
<a id="nestedblock--entry_boundary"></a>
67+
### Nested Schema for `entry_boundary`
68+
69+
Optional:
70+
71+
- `pattern` (String) no documentation available
72+
73+
6574
<a id="nestedblock--matchers"></a>
6675
### Nested Schema for `matchers`
6776

docs/resources/platform_bucket.md

+9
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,15 @@ provider "dynatrace" {
3939
```
4040
-> In order to handle credentials in a secure manner we recommend to use the environment variables `DYNATRACE_AUTOMATION_CLIENT_ID` and `DYNATRACE_AUTOMATION_CLIENT_SECRET` as an alternative.
4141

42+
## Environment Variables (Optional)
43+
44+
There may be a delay for this resource to be fully available as a dependency for a subsequent resource. E.g. Utilizing this resource and `dynatrace_log_buckets` together.
45+
46+
A default polling mechanism exists to validate the creation but may require tweaking due to load. The following environment variables can be used to fine tune these settings.
47+
48+
- `DT_BUCKETS_RETRIES` (Default: 180, Max: 360) configures the maximum attempts to confirm that the operation (create, update or delete) has succeeded and was completed on the server side. There is a two second delay between consecutive attempts, therefore the check completes with at most 720 seconds with the maximum setting.
49+
- `DT_BUCKETS_NUM_SUCCESSES` (Default: 10, Max: 50) configures the number of successful consecutive retries expected, this applies to creating the resource only.
50+
4251
## Resource Example Usage
4352

4453
```terraform

provider/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717

1818
package version
1919

20-
const Current = "1.63.0"
20+
const Current = "1.64.0"

0 commit comments

Comments
 (0)