跳到主要内容

Terraform FAQ

This statement declares a move from , but that resource is still declared

This configuration or its associated state refers to the unqualified provider "local"

terraform state replace-provider "registry.terraform.io/-/local" "hashicorp/local"
terraform init -reconfigure

Could not retrieve the list of available versions for provider hashicorp/local

# 不会尝试下载新版
mv ~/.terraform.d/{plugins,_}

helm_release: Error: rpc error: code = Unavailable desc = transport is closing

  • 可能是由于 helm lint 失败导致
  • 可以考虑添加 depends_on 解决
    • depends_on = [ module.helm-metallb-system ]
  • #486