InterviewSolution
Saved Bookmarks
| 1. |
When something goes wrong, how will you control and handle rollbacks in Terraform? |
|
Answer» In our Version Control SYSTEM, we need to recommit the previous code version to make it the NEW and current one. This would start the terraform run command, which would execute the old code. Because Terraform is more declarative, we will make sure that EVERYTHING in the code reverts to its previous state. If the state file becomes corrupted, we would USE Terraform ENTERPRISE's State Rollback feature to restore the previous state. |
|