Skip to content

Releases: idealo/terraform-aws-opensearch

v2.2.0

19 Jan 18:37
d175d3b
Compare
Choose a tag to compare

2.2.0 (2024-01-19)

Bug Fixes

  • readme: update module and opensearch version (961c12f)

Features

  • make hot_instance_type support or1 instance type (#61) (d175d3b)

v2.1.0

05 Dec 13:04
43c7233
Compare
Choose a tag to compare

2.1.0 (2023-12-05)

Features

  • index: extend opensearch_index resource capabilities (#39) (43c7233)

v2.0.0

05 Dec 10:30
0388438
Compare
Choose a tag to compare

2.0.0 (2023-12-05)

Features

  • provider: migrate to dedicated OpenSearch provider (#59) (0388438)

BREAKING CHANGES

  • All elasticsearch_* resources have been renamed to opensearch_*.
  • Unfortunately, terraform state mv and moved blocks are not working.
  • All affected elasticsearch_* resources must be migrated manually after the upgrade...
    terraform state pull > elasticsearch-provider.tfstate
    jq '.resources[].type |= sub("^elasticsearch_(opensearch_)?"; "opensearch_")' elasticsearch-provider.tfstate > opensearch-provider.tfstate
    terraform state replace-provider -state=opensearch-provider.tfstate -auto-approve phillbaker/elasticsearch opensearch-project/opensearch
    terraform state push opensearch-provider.tfstate
    
  • Additionally, you have to migrate all legacy index templates to the new format. Actually the aliases, mappings, and settings configs are now nested underneath template: https://opensearch.org/docs/latest/im-plugin/index-templates/

v1.7.1

05 Dec 10:03
c58cef1
Compare
Choose a tag to compare

1.7.1 (2023-12-05)

Bug Fixes

  • depends_on: add missing role mapping dependencies (#60) (c58cef1)

v1.7.0

04 Dec 08:09
2226228
Compare
Choose a tag to compare

1.7.0 (2023-12-04)

Features

  • support composable index templates (#55) (2226228)

v1.6.1

20 Sep 07:34
bd4e4ee
Compare
Choose a tag to compare

1.6.1 (2023-09-20)

Bug Fixes

  • auto-tune: add missing configuration options (#52) (bd4e4ee)

v1.6.0

01 Sep 14:21
396366f
Compare
Choose a tag to compare

1.6.0 (2023-09-01)

Features

  • logging: add support for publishing logs to CloudWatch (#45) (396366f)

v1.5.0

01 Sep 13:51
8e4afdc
Compare
Choose a tag to compare

1.5.0 (2023-09-01)

Features

  • auto-tune: improve cluster speed and stability (#44) (8e4afdc)

v1.4.3

01 Sep 07:25
0346090
Compare
Choose a tag to compare

1.4.3 (2023-09-01)

Bug Fixes

v1.4.2

23 May 12:56
7253458
Compare
Choose a tag to compare

1.4.2 (2023-05-23)

Bug Fixes

  • role_mapping: ensure role mappings exists when using internal_user_database (#36) (7253458)