Writing my own terraform template (data) provider

As a follow up to my previous post about how to use terrafrom’s built-in looping mechanisms, I set out to write my own custom “data” provider, in this case a new template renderer that would allow me to use Golang’s text/template instead of…


Container camp - London - 2015

In general, it was fun to be at container.camp. What I especially liked is the fact that you didn’t have to make a choice about what you’re going to miss as all presentations were in the same room so everyone was able to attend every talk (if they liked to). As always…


bash case statement in python

Having read PyDanny’s blog post about python’s absence of a switch/case statement and how to do it instead, I thought I give it a go and make a one-to-one comparison of something one may put into a bash script and implement the same in a simple python script.