You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
contains version constraints for terraform providers.
TODO: Check if there are more constraints somewhere else in code.
How to update .terraform.lock.hcl (delete and run terraform init OR run terraform init -upgrade)
When a Terraform provider is updated, variables used by the provider might be updated. E.g.
Error: Unsupported argument
on modules/k8s_csi_driver_azure/main.tf line 3, in provider "helm":
3: load_config_file = false
An argument named "load_config_file" is not expected here
This is a bit of headache when you cannot simply run tf plan anymore without updating the code. Maybe Terraform provides a way to lock the dependencies (e.g. in script source) and/or provides a mechanism to output current versions of all dependencies. It might be good to store this output with the code in repo.
The text was updated successfully, but these errors were encountered:
Document
smad-deploy-azure/main.tf
Lines 42 to 56 in 189942a
TODO: Check if there are more constraints somewhere else in code.
terraform init
OR runterraform init -upgrade
)When a Terraform provider is updated, variables used by the provider might be updated.E.g.This is a bit of headache when you cannot simply runtf plan
anymore without updating the code.Maybe Terraform provides a way to lock the dependencies (e.g. in script source) and/or provides a mechanism to output current versions of all dependencies. It might be good to store this output with the code in repo.The text was updated successfully, but these errors were encountered: