You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,10 @@
13
13
- Migrate `elasticstack_kibana_action_connector` to the Terraform plugin framework ([#1269](https://github.com/elastic/terraform-provider-elasticstack/pull/1269))
14
14
- Migrate `elasticstack_elasticsearch_security_role_mapping` resource and data source to Terraform Plugin Framework ([#1279](https://github.com/elastic/terraform-provider-elasticstack/pull/1279))
15
15
- Add support for `inactivity_timeout` in `elasticstack_fleet_agent_policy` ([#641](https://github.com/elastic/terraform-provider-elasticstack/issues/641))
16
+
- Add support for `prevent_initial_backfill` to `elasticstack_kibana_slo` ([#1071](https://github.com/elastic/terraform-provider-elasticstack/pull/1071))
17
+
-[Refactor] Regenerate the SLO client using the current OpenAPI spec ([#1303](https://github.com/elastic/terraform-provider-elasticstack/pull/1303))
18
+
- Add support for `data_view_id` in the `elasticstack_kibana_slo` resource ([#1305](https://github.com/elastic/terraform-provider-elasticstack/pull/1305))
19
+
- Add support for `unenrollment_timeout` in `elasticstack_fleet_agent_policy` ([#1169](https://github.com/elastic/terraform-provider-elasticstack/issues/1169))
-`skip_destroy` (Boolean) Set to true if you do not wish the agent policy to be deleted at destroy time, and instead just remove the agent policy from the Terraform state.
60
60
-`supports_agentless` (Boolean) Set to true to enable agentless data collection.
61
61
-`sys_monitoring` (Boolean) Enable collection of system logs and metrics.
62
+
-`unenrollment_timeout` (String) The unenrollment timeout for the agent policy. If an agent is inactive for this period, it will be automatically unenrolled. Supports duration strings (e.g., '30s', '2m', '1h').
Copy file name to clipboardExpand all lines: docs/resources/kibana_slo.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -323,6 +323,7 @@ Required:
323
323
324
324
Optional:
325
325
326
+
-`data_view_id` (String) Optional data view id to use for this indicator.
326
327
-`filter` (String)
327
328
-`timestamp_field` (String)
328
329
@@ -366,6 +367,7 @@ Required:
366
367
367
368
Optional:
368
369
370
+
-`data_view_id` (String) Optional data view id to use for this indicator.
369
371
-`filter` (String)
370
372
-`good` (String)
371
373
-`timestamp_field` (String)
@@ -383,6 +385,7 @@ Required:
383
385
384
386
Optional:
385
387
388
+
-`data_view_id` (String) Optional data view id to use for this indicator.
386
389
-`filter` (String)
387
390
-`timestamp_field` (String)
388
391
@@ -439,6 +442,7 @@ Optional:
439
442
Optional:
440
443
441
444
-`frequency` (String)
445
+
-`prevent_initial_backfill` (Boolean) Prevents the underlying ES transform from attempting to backfill data on start, which can sometimes be resource-intensive or time-consuming and unnecessary
442
446
-`sync_delay` (String)
443
447
444
448
@@ -453,6 +457,7 @@ Required:
453
457
454
458
Optional:
455
459
460
+
-`data_view_id` (String) Optional data view id to use for this indicator.
Description: "The unenrollment timeout for the agent policy. If an agent is inactive for this period, it will be automatically unenrolled. Supports duration strings (e.g., '30s', '2m', '1h').",
109
+
Computed: true,
110
+
Optional: true,
111
+
CustomType: customtypes.DurationType{},
112
+
},
107
113
"global_data_tags": schema.MapNestedAttribute{
108
114
Description: "User-defined data tags to apply to all inputs. Values can be strings (string_value) or numbers (number_value) but not both. Example -- key1 = {string_value = value1}, key2 = {number_value = 42}",
0 commit comments