This is a terraform provider that lets you provision kibana resources, compatible with v7 of kibana. For Kibana 7, you need to use branch and release 7.x
Download a binary, and put it in a good spot on your system. Then update your ~/.terraformrc
to refer to the binary:
providers {
kibana = "/path/to/terraform-provider-kibana"
}
See the docs for more information.
go build -o /path/to/binary/terraform-provider-kibana
See LICENSE.
- Fork it ( https://github.com/disaster37/terraform-provider-kibana/fork )
- Go to the right branch (7.x for Kibana 7) (
git checkout 7.x
) - Create your feature branch (
git checkout -b my-new-feature
) - Add feature, add acceptance test and tets your code (
KIBANA_URL=http://127.0.0.1:5601 KIBANA_USERNAME=elastic KIBANA_PASSWORD=changeme make testacc
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request