Last active
January 5, 2025 17:17
-
-
Save nkchauhan003/3d421b982fa692aff591c67c933d8266 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
spring: | |
application: | |
# The name of the Spring Boot application. | |
name: spring-boot-opensearch | |
server: | |
# The port on which the server will run. | |
port: 8081 | |
opensearch: | |
# The URI of the AWS OpenSearch cluster. | |
uris: https://search-xxx-xxx.ap-south-1.es.amazonaws.com | |
# The username for accessing the AWS OpenSearch cluster. | |
username: your-username | |
# The password for accessing the AWS OpenSearch cluster. | |
password: your-password | |
# The name of the OpenSearch index. | |
index: books |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment