Method: Native CLI (Incremental Sync)
Last Updated: 2026-02-24 05:08:14 UTC
Mirror URL: https://mirror.wgpsec.org/terraform/
Add the following to your ~/.terraformrc (Linux/Mac) or %APPDATA%\terraform.rc (Windows):
provider_installation {
network_mirror {
url = "https://mirror.wgpsec.org/terraform/"
include = [
"registry.terraform.io/hashicorp/archive",
"registry.terraform.io/hashicorp/external",
"registry.terraform.io/hashicorp/http",
"registry.terraform.io/hashicorp/local",
"registry.terraform.io/hashicorp/null",
"registry.terraform.io/hashicorp/random",
"registry.terraform.io/hashicorp/time",
"registry.terraform.io/hashicorp/tls"
]
}
direct {
exclude = [
"registry.terraform.io/hashicorp/archive",
"registry.terraform.io/hashicorp/external",
"registry.terraform.io/hashicorp/http",
"registry.terraform.io/hashicorp/local",
"registry.terraform.io/hashicorp/null",
"registry.terraform.io/hashicorp/random",
"registry.terraform.io/hashicorp/time",
"registry.terraform.io/hashicorp/tls"
]
}
}