Skip to content

Commit df72da5

Browse files
authored
Add more details about the breaking change in 0.11.18 (#1364)
1 parent 838da2b commit df72da5

File tree

1 file changed

+30
-2
lines changed

1 file changed

+30
-2
lines changed

CHANGELOG.md

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
## [Unreleased]
22

33
- Fix provider crash with `elasticstack_kibana_action_connector` when `config` or `secrets` was unset in 0.11.17 ([#1355](https://github.com/elastic/terraform-provider-elasticstack/pull/1355))
4-
- Fixes provider crash with `elasticstack_kibana_slo` when using `kql_custom_indicator` with no `filter` set.
5-
- Updates for Security Detection Rules
4+
- Fixes provider crash with `elasticstack_kibana_slo` when using `kql_custom_indicator` with no `filter` set. ([#1354](https://github.com/elastic/terraform-provider-elasticstack/pull/1354))
5+
- Updates for Security Detection Rules ([#1361](https://github.com/elastic/terraform-provider-elasticstack/pull/1361)
66
- Add support for `threat` property
77
- Gracefully support `query` property not being set
88
- Add esql specific validations to reject unsupported fields `index` and `filters`
@@ -13,6 +13,34 @@
1313

1414
## [0.11.18] - 2025-10-10
1515

16+
### Breaking changes
17+
18+
The `ssl` field on the `elasticstack_fleet_output` resource has been changes from a block to an attribute. This change ensures ongoing consistency within the resource schema for this resource, and aligns with Terraform best practices.
19+
20+
Existing `elasticstack_fleet_output` resources defining `ssl` will have to update the declaration to an attribute style. For example:
21+
22+
```hcl
23+
resource "elasticstack_fleet_output" "output" {
24+
...
25+
ssl {
26+
...
27+
}
28+
}
29+
```
30+
31+
becomes
32+
33+
```hcl
34+
resource "elasticstack_fleet_output" "output" {
35+
...
36+
ssl = { # Note the equals sign here.
37+
...
38+
}
39+
}
40+
```
41+
42+
### Changes
43+
1644
- Create `elasticstack_kibana_security_detection_rule` resource. ([#1290](https://github.com/elastic/terraform-provider-elasticstack/pull/1290))
1745
- Add `elasticstack_kibana_export_saved_objects` data source ([#1293](https://github.com/elastic/terraform-provider-elasticstack/pull/1293))
1846
- Create `elasticstack_kibana_maintenance_window` resource. ([#1224](https://github.com/elastic/terraform-provider-elasticstack/pull/1224))

0 commit comments

Comments
 (0)