Okay, enough talking about creating cloud resources! We have created a couple of instances using our Terraform code. But, now what? We usually spin up cloud resources for some purpose. When the resources are successfully created, it is rather a start of something. What are provisioners? Cloud resources by themselves are not much of use. … Continue reading Terraform Provisioners
DevOps
Terraform Backends
In this post, we discuss backends that can be used with Terraform. Working with backends is essential when a larger team works on developing Terraform code. This is mainly because Terraform relies heavily on states for its operations and there is a huge scope of states getting “corrupted” if we “just use Github” to maintain … Continue reading Terraform Backends
Docker – Networking
Containerization of applications gives a certain peace of mind to everyone. It’s great - the way applications can be wrapped into platform-agnostic containers which run on any system. Containers provide a generic way to run your applications on any host which makes them very unique. In my previous posts I talked about some basics of containers and … Continue reading Docker – Networking