Sending all emittedIssues generated using --module flag back to calling file #1619
-
I am working on a plugin tflint. I am scanning terraform files using
Here the variable |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
In such cases, I think you should scan the The main purpose of module inspection (scanning with Issues that do not depend on the module arguments reside in the child module itself, so the child module itself should be scanned. |
Beta Was this translation helpful? Give feedback.
In such cases, I think you should scan the
.//sub-module
module directly.The main purpose of module inspection (scanning with
--module
flag) is to detect issues caused by module arguments. In other words, this is module "call" inspection.Issues that do not depend on the module arguments reside in the child module itself, so the child module itself should be scanned.