Most of the time I use "foldable / collapsible trees" that Chlorine already have
When the data is too complicated, I use reveal
And when it's too big, too nested, and I probably care a lot about a subset of fields, I use a "custom command with a specific renderer" on Chlorine, that's a feature that I'm aware is poorly documented ๐ข
I've been using Cider's inspector to great effect recently https://docs.cider.mx/cider/debugging/inspector.html
wow, cider inspector is pretty great.
I need to setup an EC2 instance with Postgres and letsencrypt. It will be accessible from the internet so security wise itโs important to make it easy to apply new patches etc early and often. I would like to have some scripts or another declarative way of setting it up. In the past I was using ansible for this but perhaps I should look at Docker these days?
Seems that one of the Go core team members is enjoying the History of Clojure paper: https://twitter.com/_rsc/status/1386744954840567810?s=20
๐
We use Terraform to do this - setup PostgreSQL on RDS and configure the security groups. In addition, it also be configured to use TLS which Amazon take care off.
I canโt use RDS - I need a publicly accessible Postgres instance with a public CA authority. Itโs a hassle, needed to setup BI access for some clients.
(Itโs proxying to the underlying RDS instance via FDW)
our RDS instances are public
and Amazon is a public CA
but I get you, that doesn't stop you from using terraform to spin up an EC2 instance, configure the security groups, the route53 data etc.., then use ansible (as a final stage action) to setup postgresql and configure the rest.
Donโt you need to use the Amazon provided pem to validate the SSL certificate offered by RDS?
When you connect using SSL, your client can choose whether to verify the certificate chain. If your connection parameters specify sslmode=verify-ca or sslmode=verify-full, then your client requires the RDS CA certificates to be in their trust store or referenced in the connection URL. This requirement is to verify the certificate chain that signs your database certificate.
https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/PostgreSQL.Concepts.General.SSL.html
MS PowerBI tries to verify the certificate chain strictly but I canโt upload the RDS CA in its trust chain so far.
Ah okay.
Have you considered Lightsail? It can launch a server with preconfigured Postgres. It uses CloudFormation under the hood.
It is a great read
Now if only the angular guys would read it