Skip to main content

Securing AWS Elasticsearch Service with .NET NEST API (and why I love open source)

Around 6 months ago I started a project, and part of that project was to move us away from an old search tool to use elasticsearch.

For those of you whom are unfamiliar elasticsearch is a web service over Lucene which provides a document database that can perform complex transforms on text specifically designed for search. Elasticsearch does things like stop word removal and stemming to provide a fantasic way to perform searches.

I was browsing my twitter feed one day and I saw this thread.

I got curious as ES usually stands for Elasticsearch, and I quickly found out that AWS announced Elasticsearch as service.

This was pretty huge for me since a few months before I struggled to string together some code that someone else at my company wrote to get elasticsearch working in AWS, and to be honest it was not fun. Managing elasticsearch in AWS is far from great.

We started out with a basic 'domain' (which is AWS' term for an elasticsearch cluster) and we got up and running pretty fast. The 'domains' seemed to have almost all the API's we needed, and it worked with the NEST client.

When we were just trying it out we didn't bother securing it, but when we needed to secure the instance, we realized things were not so fun. AWS lets you block access by ip which doesn't help because EC2 instances have different ip addresses as the time, or you can use IAM roles, except you can't just target existing machines you have to sign the requests.

Eventually we bit the bullet and decided to sign our requests to the cluster. Unfortunatly the SDK doesn't provide a utility to sign any ol' http requests. I started digging through the AWS docs to figure out how to sign requests, and I was getting worried, as the docs do not make it seem easy to pull off. As an act of desperation I dived into nuget and just typed aws elasticsearch, which I then stumbled across a project that was published only days before.

This project totally saved my bacon. Brandon's library plugged right into the .NET sdk, and auth'd our requests to aws without us having to figure out all that crypo. Within moments of finding it I filed an issue thanking Brandon as it really helped me out.

The Elasticsearch service offering by Amazon is pretty awesome. Like any platform its less flexible then hosting the instances yourself. You have to live with the plugins they ship, but on the plus side you get a full cluster, with monitoring, and a knob to turn up instances, or storage space without having to worry about the details.

Tagged In:
elasticsearch dotnet nuget open source