Skip to content

Commit 0a8ad80

Browse files
Copilottobio
andcommitted
Update documentation and changelog for solution field support
Co-authored-by: tobio <[email protected]>
1 parent 99bb02a commit 0a8ad80

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## [Unreleased]
22

3+
- Add support for `solution` field in `elasticstack_kibana_space` resource and data source ([#1102](https://github.com/elastic/terraform-provider-elasticstack/issues/1102))
34
- Add support for `timeslice_metric_indicator` in `elasticstack_kibana_slo` ([#1195](https://github.com/elastic/terraform-provider-elasticstack/pull/1195))
45
- Add `elasticstack_elasticsearch_ingest_processor_reroute` data source ([#678](https://github.com/elastic/terraform-provider-elasticstack/issues/678))
56
- Add support for `supports_agentless` to `elasticstack_fleet_agent_policy` ([#1197](https://github.com/elastic/terraform-provider-elasticstack/pull/1197))

docs/data-sources/kibana_spaces.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ Optional:
4343
- `description` (String) The description for the space.
4444
- `disabled_features` (List of String) The list of disabled features for the space. To get a list of available feature IDs, use the Features API (https://www.elastic.co/guide/en/kibana/master/features-api-get.html).
4545
- `image_url` (String) The data-URL encoded image to display in the space avatar.
46+
- `solution` (String) The solution view for the space. Valid options are `security`, `oblt`, `es`, or `classic`.
4647

4748
Read-Only:
4849

docs/resources/kibana_space.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ resource "elasticstack_kibana_space" "example" {
2323
description = "A fresh space for testing visualisations"
2424
disabled_features = ["ingestManager", "enterpriseSearch"]
2525
initials = "ts"
26+
solution = "security"
2627
}
2728
```
2829

@@ -41,6 +42,7 @@ resource "elasticstack_kibana_space" "example" {
4142
- `disabled_features` (Set of String) The list of disabled features for the space. To get a list of available feature IDs, use the Features API (https://www.elastic.co/guide/en/kibana/master/features-api-get.html).
4243
- `image_url` (String) The data-URL encoded image to display in the space avatar.
4344
- `initials` (String) The initials shown in the space avatar. By default, the initials are automatically generated from the space name. Initials must be 1 or 2 characters.
45+
- `solution` (String) The solution view for the space. Valid options are `security`, `oblt`, `es`, or `classic`.
4446

4547
### Read-Only
4648

0 commit comments

Comments
 (0)