Initial commit: Terraform configurations for multiple cloud providers
This commit is contained in:
21
volcengine/provider-config.hcl
Normal file
21
volcengine/provider-config.hcl
Normal file
@@ -0,0 +1,21 @@
|
||||
# 配置多架构支持
|
||||
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 = []
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user