From terraform
terraform-ls provides code intelligence for Terraform — diagnostics, go-to-definition, find references, hover information, symbols for .tf and .tfvars files.
npx claudepluginhub thebushidocollective/han --plugin terraformThis LSP server requires ${CLAUDE_PLUGIN_ROOT}/scripts/lsp-entrypoint.shto be installed on your system. Make sure it's available in your PATH before enabling.
Add to your .lsp.json or plugin.json:
{
"lspServers": {
"terraform-ls": {
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/lsp-entrypoint.sh",
"extensionToLanguage": {
".tf": "terraform",
".tfvars": "terraform-vars"
},
"args": [
"serve"
]
}
}
}${CLAUDE_PLUGIN_ROOT}/scripts/lsp-entrypoint.shstdioInitialization Options:
{
"indexing": {
"ignorePaths": [
"**/node_modules/**",
"**/.git/**",
"**/vendor/**",
"**/.terraform/**",
"**/dist/**",
"**/build/**",
"**/.next/**",
"**/out/**"
]
}
}Share bugs, ideas, or general feedback.