InterviewSolution
Saved Bookmarks
| 1. |
What do you understand about remote backend in the context of Terraform? |
|
Answer» Terraform's remote backend stores terraform state and can also CONDUCT operations in the terraform cloud. terraform commands such as init, plan, apply, destroy , get, output, providers, state (sub-commands: list, mv, PULL, push, rm, show), taint, untaint, validate, and many others can be RUN from a remote backend. It can be used with a single or several remote terraform cloud workspaces. You can utilise terraform cloud's run ENVIRONMENT to conduct remote operations like terraform plan or terraform apply. |
|