mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-20 00:13:30 -05:00
12 lines
380 B
Text
12 lines
380 B
Text
|
|
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
|