Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Handle nil LastExecutionDate's in Kibana alerting rules. ([#508](https://github.com/elastic/terraform-provider-elasticstack/pull/508))
- Import all relevant attributes during `elasticstack_fleet_output` import ([#522](https://github.com/elastic/terraform-provider-elasticstack/pull/522))
- Fix issue when setting `override` in `elasticstack_kibana_data_view` resource ([#550](https://github.com/elastic/terraform-provider-elasticstack/pull/550))
- Fixup typos in `elasticstack_elasticsearch_transform` and `elasticstack_kibana_security_role` docs ([#551](https://github.com/elastic/terraform-provider-elasticstack/pull/551))

## [0.11.0] - 2023-12-12

Expand Down
2 changes: 1 addition & 1 deletion docs/resources/elasticsearch_transform.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,5 +166,5 @@ Optional:
Import is supported using the following syntax:

```shell
terraform import elasticstack_elasticsearch_tranform.my_new_transform <cluster_uuid>/<transform_name>
terraform import elasticstack_elasticsearch_transform.my_new_transform <cluster_uuid>/<transform_name>
```
2 changes: 1 addition & 1 deletion docs/resources/kibana_security_role.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ provider "elasticstack" {
kibana {}
}

resource "elasticstack_kibana_role" "example" {
resource "elasticstack_kibana_security_role" "example" {
name = "sample_role"
elasticsearch {
cluster = ["create_snapshot"]
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
terraform import elasticstack_elasticsearch_tranform.my_new_transform <cluster_uuid>/<transform_name>
terraform import elasticstack_elasticsearch_transform.my_new_transform <cluster_uuid>/<transform_name>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ provider "elasticstack" {
kibana {}
}

resource "elasticstack_kibana_role" "example" {
resource "elasticstack_kibana_security_role" "example" {
name = "sample_role"
elasticsearch {
cluster = ["create_snapshot"]
Expand Down