The idea behind blue-green deployment is that, instead of updating existing instances of an application, you create a complete brand new production environment side by side with the existing one. Then, if it looks good, you switch the traffic to this new environment. If nothing breaks, you delete the old one. The new environment is called green, while the existing one is blue. As you might have guessed, the idea goes hand in hand with the immutable infrastructure concept and extends it beyond a single server to complete clusters of machines.
There are two ways to achieve this with Terraform:
- The manual approach ...