我是地形世界的新手。我正在尝试在 GCP 项目上使用 terraformer,但始终找不到插件:
terraformer import google --resources=gcs,forwardingRules,httpHealthChecks --connect=true --
regions=europe-west1,europe-west4 --projects=myproj
2021/02/12 08:17:03 google importing project myproj region europe-west1
2021/02/12 08:17:04 google importing... gcs
2021/02/12 08:17:05 open \.terraform.d/plugins/windows_amd64: The system cannot find the path specified.
在上述之前,安装了 terraformer:
choco install terraformer
我下载了 Google 提供程序 terraform-provider-google_v3.56.0_x5.exe
,将其放在我的 terraform 目录中,然后执行了 terraform init
。我检查了 %AppData\Roaming\terraform.d\plugins\windows_amd64
,发现 plugins\windows_amd64
不存在,所以我创建了它,放入 Google exe 中并重新初始化。
我的 main.tf 是:
provider "google" {
project = "{myproj"
region = "europe-west2"
zone = "europe-west2-a"
}
是否是巧克力安装导致了这个问题?我以前从未使用过它,但替代安装看起来令人畏惧!
如果您从 Chocolatey 安装,它似乎会在
C:\.terraform.d\plugins\windows_amd64
查找提供程序文件。如果您创建这些目录并将 terraform-provider-xxx.exe
文件放入其中,它将被拾取。
我还建议使用
--verbose
标志运行它。
记得执行“terraform init”
安装 terraformer 后,请检查此
创建 versions.tf 文件
versions.tf 示例
terraform {
required_providers {
google = {
source = "hashicorp/aws"
}
}
required_version = ">= 0.13"
}
执行terraform init
开始导入过程,例如:
terraformer import aws --profile [my-aws-profile] --resources="*" --regions=eu-west-1
其中 --resources="*" 将从 aws 获取所有内容,但您可以指定route53或其他资源
terraformer import aws --profile [my-aws-profile] --resources="route53" --regions=eu-west-1
令人畏惧的指示奏效了!
Run git clone <terraformer repo>
Run go mod download
Run go build -v for all providers OR build with one provider go run build/main.go {google,aws,azure,kubernetes and etc}
Run terraform init against an versions.tf file to install the plugins required for your platform. For example, if you need plugins for the google provider, versions.tf should contain:
terraform {
required_providers {
google = {
source = "hashicorp/google"
}
}
required_version = ">= 0.13"
}
确保运行该版本而不是巧克力版本。
go mod download
标志 -x 将在该命令运行时提供输出,否则您可能会认为什么也没发生。
我下载并安装
terraformer
与chocolatey
后发现的最简单的方法
choco install terraformer
通常,当您运行
时,您只会找到aws,为了在windws上添加更多提供程序,您需要从github特定提供程序或您可以使用此网址的所有提供程序下载:terraformer import
# For all existing providers
https://github.com/GoogleCloudPlatform/terraformer/releases/download/0.8.24/terraformer-all-windows-amd64
# For specific provider (gcp)
https://github.com/GoogleCloudPlatform/terraformer/releases/download/0.8.24/terraformer-gcp-windows-amd64
下载后,请确保将文件移至
C:\ProgramData\chocolatey\lib\terraformer\tools
并用下载的文件替换 terraformer.exe