I can't make auto complete work for .tf (and related) files with VSCode on my MacBook Pro.
Steps I took were:
Installed the HashiCorp Terraform plugin
Installed Terraform Language Server
brew install terraform-lsGot the path:
: which terraform-ls /usr/local/bin/terraform-ls
And finally configured VSCode:
"terraform.languageServer": { "external": true, "pathToBinary": "/usr/local/bin/terraform-ls", "args": [ "serve" ], "maxNumberOfProblems": 100, "trace.server": "off" }
I just get the auto completion for aws items which are already in this file:
What am I missing here? I wish those things were plug and play :(
