mirror of
https://github.com/hashicorp/terraform.git
synced 2026-06-09 00:42:48 -04:00
cliconfig: more provider_installation err detail (#32722)
This commit is contained in:
parent
3f23a9e70a
commit
b435b4ccde
1 changed files with 1 additions and 1 deletions
|
|
@ -246,7 +246,7 @@ func decodeProviderInstallationFromConfig(hclFile *hclast.File) ([]*ProviderInst
|
|||
diags = diags.Append(tfdiags.Sourceless(
|
||||
tfdiags.Error,
|
||||
"Invalid provider installation dev overrides",
|
||||
fmt.Sprintf("The entry %q in %s is not a valid provider source string.", rawAddr, block.Pos()),
|
||||
fmt.Sprintf("The entry %q in %s is not a valid provider source string.\n\n%s", rawAddr, block.Pos(), moreDiags.Err().Error()),
|
||||
))
|
||||
continue
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue