I've recently been loving working with elasticsear...
# general
i
I've recently been loving working with elasticsearch. I know SST supports dynamodb, I was wondering if perhaps in the future SST could support ES? https://docs.aws.amazon.com/elasticsearch-service/index.html
f
Hey @Ilia Reingold, are you looking to create ElasticSearch clusters in SST?
i
@Frank yes sir!
f
You can give this a try:
Copy code
import * as es from '@aws-cdk/aws-elasticsearch';

new es.Domain(this, 'Domain', {
    version: es.ElasticsearchVersion.V7_1,
});
SST currently doesn’t have a high level construct for ES yet.