Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update documentation of supported ES versions #2483

Merged
merged 1 commit into from
Mar 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions _docs/services/aws-elasticsearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,23 +51,23 @@ Note: AWS Elasticsearch creation times will vary and is outside of Cloud.gov's c
name | required | description | example
-----------------|----------|--------------------------|---------
`advanced_options` | false | map for advanced options | see below
`ElasticsearchVersion` | false | Specifies a supported major version in search (must be in "") | `OpenSearch_1.3`
`ElasticsearchVersion` | false | Specifies a supported major version in search (must be in "") | `OpenSearch_2.11`

These are the current supported major versions for Elasticsearch version:

- `Elasticsearch_7.4`
- `Elasticsearch_7.10`
- `OpenSearch_1.3`
- `OpenSearch_2.3`
- `OpenSearch_2.11`

If you don't specify any option, currently `Elasticsearch_7.4` is used by default.
If you don't specify any option, currently `Elasticsearch_7.10` is used by default.

If you want to specify the Elasticsearch version:

```sh
cf create-service aws-elasticsearch \
${SERVICE_PLAN_NAME} \
${SERVICE_NAME} \
-c '{"ElasticsearchVersion": "OpenSearch_2.3"}'
-c '{"ElasticsearchVersion": "OpenSearch_2.11"}'
```

### Advanced Options
Expand Down
Loading