Static analysis libraries and tooling for Terraform Provider code.
It based on tfproviderlint
Check | Description | Type |
---|---|---|
h001 | check for schema arguments that do not exist in Acceptance Test Checks. |
AST |
To report issues, change into the directory of the Terraform Provider code and run:
tflinter ./...
tflinter -fields=name,enterprise_project_id ./...
It is also possible to run via go vet
:
go vet -vettool $(which tflinter) ./...
go install ./cmd/tflinter