Complete the code to pull the Terraform state from the remote backend.
terraform state [1]The terraform state pull command downloads the current state from the remote backend to your local machine.
Complete the code to push a local Terraform state file to the remote backend.
terraform state [1]The terraform state push command uploads a local state file to the remote backend.
Fix the error in the command to pull the Terraform state from the remote backend.
terraform state [1]The correct command is terraform state pull. Adding 'state' after it is incorrect.
Fill both blanks to correctly pull and then push the Terraform state.
terraform state [1] && terraform state [2]
First, you pull the state to update your local copy, then push it back after changes.
Fill all three blanks to pull the state, show it, and then push it back.
terraform state [1] && terraform [2] state [3]
You pull the state, show it, and then push it back.