mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-14 19:00:37 -05:00
After installing providers, we validate the presence of an executable file, and generate a selected versions lockfile. If this process fails, notify the user. One possible cause for this is an invalid provider package with a missing or misnamed executable file.
9 lines
121 B
HCL
9 lines
121 B
HCL
terraform {
|
|
required_providers {
|
|
package = {
|
|
source = "invalid/package"
|
|
version = "1.0.0"
|
|
}
|
|
}
|
|
}
|