下面是我的terraform init和terraform提供者的输出。我甚至没有提到任何名为"web“的提供商仍在尝试安装。同样的模块,我在"terraform -v“的输出中没有得到。
haresh@haresh:~/Downloads/cpinfra/terraform$ terraform init
Initializing modules...
Initializing the backend...
Initializing provider plugins...
- Using previously-installed hashicorp/local v1.4.0
- Using previously-installed hashicorp/tls v2.2.0
- Using previously-installed hashicorp/aws v3.14.1
- Finding latest version of hashicorp/web...
Error: Failed to install provider
Error while installing hashicorp/web: provider registry registry.terraform.io
does not have a provider named registry.terraform.io/hashicorp/web
haresh@haresh:~/Downloads/cpinfra/terraform$
haresh@haresh:~/Downloads/cpinfra/terraform$
haresh@haresh:~/Downloads/cpinfra/terraform$
haresh@haresh:~/Downloads/cpinfra/terraform$ terraform providers
Providers required by configuration:
.
├── provider[registry.terraform.io/hashicorp/external] ~> 1.2
├── provider[registry.terraform.io/hashicorp/local] ~> 1.4
├── provider[registry.terraform.io/hashicorp/null] ~> 2.1
├── provider[registry.terraform.io/hashicorp/random] ~> 2.2
├── provider[registry.terraform.io/hashicorp/aws]
├── provider[registry.terraform.io/hashicorp/web]
├── provider[registry.terraform.io/hashicorp/tls] ~> 2.1
haresh@haresh:~/Downloads/cpinfra/terraform$ terraform -v
Terraform v0.13.2
+ provider registry.terraform.io/hashicorp/aws v3.14.1
+ provider registry.terraform.io/hashicorp/external v1.2.0
+ provider registry.terraform.io/hashicorp/local v1.4.0
+ provider registry.terraform.io/hashicorp/null v2.1.2
+ provider registry.terraform.io/hashicorp/random v2.3.1
+ provider registry.terraform.io/hashicorp/tls v2.2.0发布于 2020-11-08 22:33:57
如果搜索https://registry.terraform.io,则无法下载提供程序。
如果您没有在TF中的任何位置指定它,请完全删除.terraform,然后尝试重新初始化它
发布于 2020-11-08 14:43:16
不确定之前还尝试过什么。如果删除.terraform文件夹并重试,会得到什么结果。
https://stackoverflow.com/questions/64735014
复制相似问题