Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kjmkznr/terraform-provider-elasticsearch
Terraform Provider for Elasticsearch
https://github.com/kjmkznr/terraform-provider-elasticsearch
elasticsearch terraform terraform-provider
Last synced: 16 days ago
JSON representation
Terraform Provider for Elasticsearch
- Host: GitHub
- URL: https://github.com/kjmkznr/terraform-provider-elasticsearch
- Owner: kjmkznr
- License: mpl-2.0
- Created: 2016-12-10T12:29:51.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-22T14:11:43.000Z (almost 6 years ago)
- Last Synced: 2023-08-12T01:10:37.963Z (over 1 year ago)
- Topics: elasticsearch, terraform, terraform-provider
- Language: Go
- Homepage:
- Size: 24.4 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Terraform provider for elasticsearch
====================================A [Terraform](https://www.terraform.io/) plugin that provides resources for elasticsearch
[![Build Status](https://travis-ci.org/kjmkznr/terraform-provider-elasticsearch.svg?branch=master)](https://travis-ci.org/kjmkznr/terraform-provider-elasticsearch)
Install
-------* Download the latest release for your platform.
* Rename the executable to `terraform-provider-elasticsearch`Provider Configuration
----------------------### Example
```
provider "elasticsearch" {
url = "http://localhost:9200"
es_version = "v5"
}
```or
```
provider "elasticsearch" {}
```### Reference
* `url` - (Required) Endpoint of elasticsearch
* `es_version` - (Default v5) Version of elasticsearchResources
---------### `elasticsearch_index_template`
Configure a Elasticsearch index template.
#### Example
```
resource "elasticsearch_index_template" "foobar" {
name = "template1"
template = <