Skip to content

Commit 7d60797

Browse files
authored
Merge pull request #146 from elastic/v0.4.0
v0.4.0
2 parents 56e69bc + 101c2c5 commit 7d60797

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

CHANGELOG.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,26 @@
11
## [Unreleased]
2+
3+
## [0.4.0] - 2022-10-07
24
### Added
5+
36
- Add ca_data field to provider schema ([#145](https://github.com/elastic/terraform-provider-elasticstack/pull/145))
47
- Add individual setting fields ([#137](https://github.com/elastic/terraform-provider-elasticstack/pull/137))
58
- Allow use of `api_key` instead of `username`/`password` for authentication ([#130](https://github.com/elastic/terraform-provider-elasticstack/pull/130))
9+
- Add `allow_restricted_indices` setting to security role ([#125](https://github.com/elastic/terraform-provider-elasticstack/issues/125))
10+
- Add conditional to only set `password` and `password_hash` when a new value is defined ([#127](https://github.com/elastic/terraform-provider-elasticstack/pull/128))
11+
- Add support for ELASTICSEARCH_INSECURE environment variable as the default of the `insecure` config value ([#127](https://github.com/elastic/terraform-provider-elasticstack/pull/128))
12+
- Add elasticstack_elasticsearch_security_role_mapping resource ([148](https://github.com/elastic/terraform-provider-elasticstack/pull/148))
13+
614
### Fixed
715
- Refactor main function not to use deprecated debug method ([#149](https://github.com/elastic/terraform-provider-elasticstack/pull/149))
816
- Expose provider package ([#142](https://github.com/elastic/terraform-provider-elasticstack/pull/142))
917
- Upgrade Go version to 1.19 and sdk version to v2.22.0 ([#139](https://github.com/elastic/terraform-provider-elasticstack/pull/139))
1018
- Make API calls context aware to be able to handle timeouts ([#138](https://github.com/elastic/terraform-provider-elasticstack/pull/138))
1119
- Correctly identify a missing security user ([#101](https://github.com/elastic/terraform-provider-elasticstack/issues/101))
1220
- Support **7.x** Elasticsearch < **7.15** by removing the default `media_type` attribute in the Append processor ([#118](https://github.com/elastic/terraform-provider-elasticstack/pull/118))
13-
- Add `allow_restricted_indices` setting to security role ([#125](https://github.com/elastic/terraform-provider-elasticstack/issues/125))
14-
- Add conditional to only set `password` and `password_hash` when a new value is defined ([#127](https://github.com/elastic/terraform-provider-elasticstack/pull/128))
15-
- Add support for ELASTICSEARCH_INSECURE environment variable as the default of the `insecure` config value ([#127](https://github.com/elastic/terraform-provider-elasticstack/pull/128))
16-
- Add elasticstack_elasticsearch_security_role_mapping resource ([148](https://github.com/elastic/terraform-provider-elasticstack/pull/148))
1721

18-
## [0.3.3] - 2023-03-22
22+
23+
## [0.3.3] - 2022-03-22
1924
### Fixed
2025
- Make sure it is possible to set priority to `0` in ILM template ([#88](https://github.com/elastic/terraform-provider-elasticstack/issues/88))
2126
- Set the ILM name on read operation ([#87](https://github.com/elastic/terraform-provider-elasticstack/issues/87))

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.DEFAULT_GOAL = help
22
SHELL := /bin/bash
33

4-
VERSION ?= 0.3.3
4+
VERSION ?= 0.4.0
55

66
NAME = elasticstack
77
BINARY = terraform-provider-${NAME}
@@ -113,7 +113,7 @@ endif
113113

114114
.PHONY: release-notes
115115
release-notes: ## greps UNRELEASED notes from the CHANGELOG
116-
@ awk '/## \[Unreleased\]/{flag=1;next}/## \[.*\] - /{flag=0}flag' CHANGELOG.md
116+
@ awk '/## \[Unreleased\]/{flag=1;next}/## \[.*\] - /{flag=0}flag' CHANGELOG.md
117117

118118

119119
.PHONY: help

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ terraform {
2222
required_providers {
2323
elasticstack = {
2424
source = "elastic/elasticstack"
25-
version = "~> 0.3.3"
25+
version = "~> 0.4.0"
2626
}
2727
}
2828
}

docs/guides/elasticstack-and-cloud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ terraform {
2222
}
2323
elasticstack = {
2424
source = "elastic/elasticstack"
25-
version = "~>0.3.3"
25+
version = "~>0.4.0"
2626
}
2727
}
2828
}

examples/cloud/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ terraform {
88
}
99
elasticstack = {
1010
source = "elastic/elasticstack"
11-
version = "~>0.3.3"
11+
version = "~>0.4.0"
1212
}
1313
}
1414
}

0 commit comments

Comments
 (0)