Using Terragrunt for large scale disaster recovery #110
-
Do you have any examples or case studies on using Terragrunt to do a large scale disaster recovery operation? For example: Deploying 100+ resources to a new cloud region in the event of a disaster in another region What is your recommendation for how to use Terragrunt for such an event? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
-
We can't provide advice on disaster recovery in general, as it will be VERY use case specific. E.g., What data do you have? How are you replicating it? What sort of consistency requirements do you have? How do you handle DNS fail over? And so on. All we can comment on here is, in relation to Terragrunt, if you have an environment
|
Beta Was this translation helpful? Give feedback.
We can't provide advice on disaster recovery in general, as it will be VERY use case specific. E.g., What data do you have? How are you replicating it? What sort of consistency requirements do you have? How do you handle DNS fail over? And so on.
All we can comment on here is, in relation to Terragrunt, if you have an environment
env1
deployed, how can you structure your code so it's easy to quickly spin up a duplicate environmentenv2
(e.g., in case of disaster recovery)? Here's the rough idea:env1
using Terragrunt (i.e., folders +terragrunt.hcl
files), with eachsource
URL pointing to a specific version of your modules.