compatible_elasticsearch_versions
Creates, updates, deletes, gets or lists a compatible_elasticsearch_versions resource.
Overview
| Name | compatible_elasticsearch_versions |
| Type | Resource |
| Id | aws.es.compatible_elasticsearch_versions |
Fields
The following fields are returned by SELECT queries:
- get_compatible_elasticsearch_versions
| Name | Datatype | Description |
|---|---|---|
compatible_elasticsearch_versions | array | A map of compatible Elasticsearch versions returned as part of the GetCompatibleElasticsearchVersions operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_compatible_elasticsearch_versions | select | region | domainName | Returns a list of upgrade compatible Elastisearch versions. You can optionally pass a DomainName to get all upgrade compatible Elasticsearch versions for that specific domain. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
domainName | string |
SELECT examples
- get_compatible_elasticsearch_versions
Returns a list of upgrade compatible Elastisearch versions. You can optionally pass a DomainName to get all upgrade compatible Elasticsearch versions for that specific domain.
SELECT
compatible_elasticsearch_versions
FROM aws.es.compatible_elasticsearch_versions
WHERE region = '{{ region }}' -- required
AND domainName = '{{ domainName }}'
;