Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 2.29 KB

File metadata and controls

53 lines (35 loc) · 2.29 KB

terraform-provider-elasticsearch

CircleCI Go Report Card GoDoc codecov

This is a terraform provider that lets you provision elasticsearch resources, compatible with v6 , v7 and v8 of elasticsearch. For Elasticsearch 8, you need to use branch and release 8.x For Elasticsearch 7, you need to use branch and release 7.x For Elasticsearch 6, you need to use branch and release 6.x

We fork this project for the following items:

Installation

Go to terraform registry

Documentation

Read provider documentation

Development

Requirements

go build -o /path/to/binary/terraform-provider-elasticsearch

Licence

See LICENSE.

Contributing

  1. Fork it ( https://github.com/disaster37/terraform-provider-elasticsearch/fork )
  2. Go to the right branch (8.x for Elasticsearch 8, 7.x for Elasticsearch 7 or 6.x for Elasticsearch 6) (git checkout 8.x)
  3. Create your feature branch (git checkout -b my-new-feature)
  4. Add feature, add acceptance test and tets your code (ELASTICSEARCH_URLS=http://127.0.0.1:9200 ELASTICSEARCH_USERNAME=elastic ELASTICSEARCH_PASSWORD=changeme make testacc)
  5. Commit your changes (git commit -am 'Add some feature')
  6. Push to the branch (git push origin my-new-feature)
  7. Create a new Pull Request