mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
This new CLI config block type allows explicitly specifying where Terraform should look to find provider plugins for installation. This is not used anywhere as of this commit, but in a future commit we'll change package main to treat the presence of a block of this type as a request to disable the default set of provider sources and use these explicitly- specified ones instead.
12 lines
380 B
Plaintext
12 lines
380 B
Plaintext
provider_installation {
|
|
not_a_thing {} # unknown source type
|
|
filesystem_mirror {} # missing "path" argument
|
|
network_mirror {} # missing "host" argument
|
|
direct = {} # should be a block, not an argument
|
|
direct "what" {} # should not have a label
|
|
}
|
|
|
|
provider_installation "what" {} # should not have a label
|
|
|
|
provider_installation = {} # should be a block, not an argument
|