Terraform-provider-aws: AWS ElasticSearch Custom endpoint support

Created on 5 Nov 2020  路  2Comments  路  Source: hashicorp/terraform-provider-aws

Community Note

  • Please vote on this issue by adding a 馃憤 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment


Add support for AWS ElasticSearch custom endpoint

New or Affected Resource(s)

  • aws_elasticsearch_domain

Potential Terraform Configuration

References

https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-customendpoint.html

  • #0000
enhancement servicelasticsearch

Most helpful comment

Hi @ewbankkit. I can try to implement it. :smiley:

All 2 comments

Announcement.

Requires AWS SDK v1.35.22:

Potential syntax:

resource "aws_elasticsearch_domain" "example" {
  domain_endpoint_options {
    custom_endpoint_enabled         = true
    custom_endpoint                 = "example.com"
    custom_endpoint_certificate_arn = aws_acm_certificate.example.arn
  }
}

Hi @ewbankkit. I can try to implement it. :smiley:

Was this page helpful?
0 / 5 - 0 ratings