TA-002-P · Question #120
terraform refresh will update the state file?
The correct answer is A. True. The terraform refresh command is used to reconcile the state Terraform knows about (via its state file) with the real-world infrastructure. This can be used to detect any drift from the last- known state, and to update the state file. This does not modify infrastructure, but…
Question
terraform refresh will update the state file?
Options
- ATrue
- BFalse
How the community answered
(34 responses)- A85% (29)
- B15% (5)
Explanation
The terraform refresh command is used to reconcile the state Terraform knows about (via its state file) with the real-world infrastructure. This can be used to detect any drift from the last- known state, and to update the state file. This does not modify infrastructure, but does modify the state file. If the state is changed, this may cause changes to occur during the next plan or apply.
Topics
Community Discussion
No community discussion yet for this question.