Example of how connect elastic cloud with SpringData
- ELASTICSEARCH_CLOUD_CREDENTIALS = user:password
- ELASTICSEARCH_CLOUD_HOST = your cluster elastic.co host name
- ELASTICSEARCH_CLOUD_PORT = 9343
./gradlew bootRun
./gradlew -x test buildMyAppImage
-p 8080:8080 \
-e ELASTICSEARCH_CLOUD_CREDENTIALS='elastic:password' \
-e ELASTICSEARCH_CLOUD_HOST='your host' \
-e ELASTICSEARCH_CLOUD_PORT=9343 \
elastic-example-springboot```