Rupa Lahiri
Rupa Lahiri
@prudhvigodithi I would like to work on this.
This would be helpful.
This video details out the steps to setup a role for OpenSearch https://youtu.be/KeUBwm-aalU?si=KylHKZFaonoIwvWF Once the steps are followed, the Terraform provider OpenSearch works as expected.
In aws.Config, MaxRetries is currently set to 1 https://github.com/opensearch-project/terraform-provider-opensearch/blob/3e845644d46f3c6f290b2a571635f7cfa195f355/provider/provider.go#L458
Static settings such as mapping to be only be defined at the index creation time. https://aws.amazon.com/blogs/big-data/patterns-for-updating-amazon-opensearch-service-index-settings-and-mappings/
From the documentation - https://registry.terraform.io/providers/opensearch-project/opensearch/latest/docs/resources/index [mappings](https://registry.terraform.io/providers/opensearch-project/opensearch/latest/docs/resources/index#mappings-1) (String) A JSON string defining how documents in the index, and the fields they contain, are stored and indexed. To avoid the complexities of...
@JAEJUNKIM1229 Could you please share a complete sample Terraform code with the provider version and configuration?
The following terraform code works for me ``` terraform { required_providers { opensearch = { source = "opensearch-project/opensearch" version = "2.3.0" } } } provider "opensearch" { url = "url"...
The following works for me ``` terraform { required_providers { opensearch = { source = "opensearch-project/opensearch" version = "2.3.0" } } } provider "opensearch" { url = "url" healthcheck =...
@PhilippReinke Would it be possible for you to look into the query above regarding tenant permission?