21 lines
384 B
HCL
21 lines
384 B
HCL
# 配置多架构支持
|
|
provider_installation {
|
|
filesystem_mirror {
|
|
path = "${getenv("HOME")}/.terraform.d/plugins"
|
|
include = ["volcengine/*"]
|
|
}
|
|
direct {
|
|
exclude = ["volcengine/*"]
|
|
}
|
|
}
|
|
|
|
# 或者允许从网络下载
|
|
provider_installation {
|
|
network_mirror {
|
|
url = "https://releases.hashicorp.com"
|
|
include = ["*/*"]
|
|
}
|
|
direct {
|
|
exclude = []
|
|
}
|
|
} |