Issue¶
checksums mismatch¶
Updating terraform version will get error Terraform does not match any of the checksums recorded in the dependency lock file.
Solution:
Delete all
.terraform.lock.hclfiles:Get-ChildItem -Path . -Filter ".terraform.lock.hcl" -Recurse | Remove-Item -ForceDelete all
.terraformfolders:Get-ChildItem -Path . -Filter ".terraform" -Directory -Recurse -ErrorAction SilentlyContinue | Remove-Item -Recurse -ForceRun
terragrunt run-all init -upgrade