-
Notifications
You must be signed in to change notification settings - Fork 360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Terraform 0.11 module sources #167
Comments
I'm hitting on this issue too when using the Terraform Enterprise private module registry:
|
Currently, TFLint's module resolver is incomplete. Until now applied a partial patch from Terraform's implementation, but it seems that there was a big change in 0.11. In the future, I plan to solve this problem by using Terraform's module resolver. However, It is necessary to wait for new Terraform version. |
For those looking for a workaround, I'm making use of
config {
ignore_module = {
"app.terraform.io/my-org/my-provider/my-module" = true
}
} |
The config example from @davewongilies is corrupt it is missing the closing |
Hi there, I just released TFLint v0.8.0 that supports v0.11 and v0.12 modules. Please try the latest version again. If you still have problems, please open a new issue instead of reopening. |
Terraform 0.11 introduced support for module installation from Terraform Registry. As a consequence, module source strings using relative paths must be expressed explicitly by beginning the string with
./
or../
. See Relative Paths in Module source.tflint
is using the old interpretation of modulesource
:The text was updated successfully, but these errors were encountered: