Is there any way to fix a state file that's been updated to a later minor version for use with the earlier minor version on another system? I had Gitlab pipeline running TF the latest container which is version 0.11.13 with state being stored remotely in an Azure storage account. In order to work on some code locally on my laptop I grabbed TF version 0.11.14 and used it to test my code before pushing it into gitlab. Now when gitlab pipeline runs I get an error:
Error:
Terraform doesn't allow running any operations against a state
that was written by a future Terraform version. The state is
reporting it is written by Terraform '0.11.14'
Please run at least that version of Terraform to continue.
Is there any way to rebuild this state file so it can be used with version 0.11.13?