diff --git a/.circleci/config.yml b/.circleci/config.yml index 4ffca85c..4cd264b6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,7 +13,7 @@ jobs: - ELASTICSEARCH_URLS: "http://es:9200" - ELASTICSEARCH_USERNAME: "elastic" - ELASTICSEARCH_PASSWORD: "changeme" - - image: docker.elastic.co/elasticsearch/elasticsearch:7.4.0 + - image: docker.elastic.co/elasticsearch/elasticsearch:7.5.1 name: es environment: - cluster.name: "test" diff --git a/README.md b/README.md index e3cff445..f9fec53a 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ We fork this project for the following items: ## Installation -[Download a binary](https://github.com/phillbaker/terraform-provider-elasticsearch/releases), and put it in a good spot on your system. Then update your `~/.terraformrc` to refer to the binary: +[Download a binary](https://github.com/disaster37/terraform-provider-elasticsearch/releases), and put it in a good spot on your system. Then update your `~/.terraformrc` to refer to the binary: ```hcl providers { @@ -66,7 +66,7 @@ You can see the API documentation: https://www.elastic.co/guide/en/elasticsearch ***Sample:*** ```tf -resource "elasticsearch_role" "test" { +resource elasticsearch_role "test" { name = "terraform-test" indices { names = ["logstash-*"] @@ -114,7 +114,7 @@ You can see the API documentation: https://www.elastic.co/guide/en/elasticsearch ***Sample***: ```tf -resource "elasticsearch_role_mapping" "test" { +resource elasticsearch_role_mapping "test" { name = "terraform-test" enabled = "true" roles = ["superuser"] @@ -149,7 +149,7 @@ You can see the API documenation: https://www.elastic.co/guide/en/elasticsearch/ ***Sample:*** ```tf -resource "elasticsearch_user" "test" { +resource elasticsearch_user "test" { username = "terraform-test" enabled = "true" email = "no@no.no" @@ -182,7 +182,7 @@ You can see the API documentation: https://www.elastic.co/guide/en/elasticsearch ***Sample:*** ```tf -resource "elasticsearch_index_lifecycle_policy" "test" { +resource elasticsearch_index_lifecycle_policy "test" { name = "terraform-test" policy = <