terraform-aws-elasticsearch
terraform-aws-elasticsearch copied to clipboard
Terraform module to provision an Elasticsearch cluster with built-in integrations with Kibana and Logstash.
### Describe the Bug I am unable to setup auto_tune for ES using the provided [documentation](https://github.com/cloudposse/terraform-aws-elasticsearch/blob/master/README.md). Whenever I run `terraform plan` I get following error. `An input variable with the...
## Describe the Feature Would be great to have create/update/delete timeouts for `aws_elasticsearch_domain` so upgrades do not timeout when applying them with Terraform. ## Expected Behavior Terraform should complete when...
## what Adds a new parameter to be able to pass a json string with a custom access policy to set for the elasticsearch. ## why In my opinion, the...
### Describe the Bug ``` Terraform will perform the following actions: # module.elasticsearch.aws_elasticsearch_domain_policy.default[0] will be updated in-place ~ resource "aws_elasticsearch_domain_policy" "default" { ~ access_policies = jsonencode( ~ { ~ Statement...
### Describe the Feature Support override of Elasticsearch/Opensearch domain name. ```hcl resource "aws_elasticsearch_domain" "default" { count = local.elasticsearch_enabled ? 1 : 0 domain_name = module.this.id #
feat: support `multi_az_with_standby_enabled` for opensearch Note that this bumps the minimum `hashicorp/aws` provider version to 5.15.0, where this parameter was introduced [[1]]. The README diff was generated with `make init`...
### Describe the Feature I would like to use `multi_az_with_standby_enabled` for our opensearch cluster.  If I turn this on manually in AWS Console, then re-run `terraform plan`, I see...
### Describe the Bug If you use the module and pass the variable `create` with the value `false` you get a lot of errors regarding the coalesce function used inside...
### Describe the Bug availability_zone_count we are not able to set to 3.. Its just taking value as 2 .. Error: ValidationException: You must choose an even number of data...