You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The .tflint.hcl configuration schema has remained largely unchanged since its design, but I believe there are better designs out there now. The current (v0.50) schema is shown below:
Top-level config block is redundant. As I recall, this was introduced simply for implementation reasons at the time. This limitation no longer exists.
ignore_module is set by a module source, not an ID, so you cannot ignore a module exactly. Also, originally, list(string) should be enough instead of map(bool).
varfile is poorly named. Given that the CLI flag in Terraform is --var-file, var_file is appropriate. var_files is the best because it accepts multiple files.
variables is accepted as simple string, but HCL allows for more flexible expressions. Imagine being able to write *.tfvars inline.
There is a mix of different types of attributes within the config block. For example, it may be easier to understand if attributes that affect inspection and attributes that affect output are grouped in separate blocks.
Plugin custom fields and reserved fields may conflict. Adding new reserved attributes in the future may impact existing plugins.
Since rules are provided by plugins, it might be possible to nest rule blocks inside plugin blocks.
However, this is a draft and we do not guarantee that it will be changed to this schema. The final version should be considered for backward compatibility and impact on changes.
Introduction
The
.tflint.hcl
configuration schema has remained largely unchanged since its design, but I believe there are better designs out there now. The current (v0.50) schema is shown below:This schema has the following issues:
config
block is redundant. As I recall, this was introduced simply for implementation reasons at the time. This limitation no longer exists.ignore_module
is set by a module source, not an ID, so you cannot ignore a module exactly. Also, originally,list(string)
should be enough instead ofmap(bool)
.varfile
is poorly named. Given that the CLI flag in Terraform is--var-file
,var_file
is appropriate.var_files
is the best because it accepts multiple files.variables
is accepted as simple string, but HCL allows for more flexible expressions. Imagine being able to write*.tfvars
inline.config
block. For example, it may be easier to understand if attributes that affect inspection and attributes that affect output are grouped in separate blocks.rule
blocks insideplugin
blocks.Proposal
Redesign config schema like below:
However, this is a draft and we do not guarantee that it will be changed to this schema. The final version should be considered for backward compatibility and impact on changes.
References
The text was updated successfully, but these errors were encountered: