Khaja Minhajuddin
Khaja Minhajuddin
I blogged about the workaround mentioned here in detail: https://minhajuddin.com/2020/05/09/how-to-use-a-single-aurora-cluster-for-multiple-databases-each-with-its-own-restricted-user/#Connecting-to-an-RDS-database-via-an-SSH-tunnel . This requires you to have an SSH tunnel open while terraform runs a plan or apply.
I have a use case where the input json has keys in mixed cases, sometimes `Latitude` and sometimes `latitude`. At the moment I am manually lower casing keys using http://minhajuddin.com/2017/01/11/case-insensitive-key-retrieval-from-maps-in-elixir/...
@mgwidmann Good point. Creating a new map and then using lower case keys to access makes more sense performance wise.
@ericmj Makes total sense. That is why I am following this issue with interest. Adding this feature will help me transform the keys at the time of decoding. I have...