How to configure VSCode plugin for Terraform?

Hi,
Autocomplete for AWS resources not working. I have a *.tf file with declared terraform and provider

terraform {
  required_providers {
    aws = "~> 2.61.0"
  }
}

provider "aws" {
  region = "eu-central-1"
}

call “terraform init” in the console. Catalog “.terraform” appears as expected, but autocomplete for resource not working :frowning:

VS plugin on Windows dosen’t add terraform-ls.exe to the PATH. After add location of this file to the PATH autocomplete starts working.