The HashiCorp Terraform Visual Studio Code (VS Code) extension adds syntax highlighting and other editing features for Terraform files using the Terraform Language Server.
- Manages installation and updates of the Terraform Language Server (terraform-ls), exposing its features:
- Completion of initialized providers: resource names, data source names, attribute names
- Diagnostics to indicate HCL errors as you type
- Initialize the configuration using "Terraform: init" from the command palette
- Run
terraform plan
andterraform apply
from the command palette - Validation diagnostics using "Terraform: validate" from the command palette or a
validateOnSave
setting
- Includes syntax highlighting for
.tf
and.tfvars
files -- including all syntax changes new to Terraform 0.12 - Closes braces and quotes
- Includes
for_each
andvariable
syntax shortcuts (fore
,vare
,varm
)
IMPORTANT: After installing, you must perform a terraform init
to provide terraform-ls
with an up-to-date provider schemas. The language server will not work correctly without first completing this step!
- Install the extension from the Marketplace
- Reload VS Code after the installation (click the reload button next to the extension)
- Perform a
terraform init
to provideterraform-ls
with an up-to-date provider schema - Open your desired workspace and/or the root folder containing your Terraform files. Note: see Known Issues below about multi-folder workspaces
- Depending on your settings in VS Code, completion will start automatically (if not inside quotes/string literal, on certain trigger characters), or you can explicitly trigger completion via keyboard combination (Ctrl+Space on Windows, control+space on Mac).
This extension offers several configuration options. To modify these, navigate to the extension view within VS Code, select the settings cog and choose Extension settings, or alternatively, modify the .vscode/settings.json
file in the root of your working directory.
We use telemetry to send error reports to our team, so we can respond more effectively. If you want to disable this setting, add "telemetry.enableTelemetry": false
to your settings.json and that will turn off all telemetry in VSCode. You can also monitor what's being sent in your logs.
If you have multiple root modules in your workspace, you can configure the language server settings to identify them. Edit this through the VSCode Settings UI or add a .vscode/settings.json
file using the following template:
{
"terraform-ls.rootModules": [
"/module1",
"/module2"
]
}
If you want to automatically search root modules in your workspace and exclude some folders, you can configure the language server settings to identify them.
{
"terraform-ls.excludeRootModules": [
"/module3",
"/module4"
]
}
To enable formatting, it is recommended that the following be added to the extension settings for the Terraform extension:
"[terraform]": {
"editor.formatOnSave": true
}
An experimental validate-on-save option can be enabled with the following setting:
"terraform-ls.experimentalFeatures": {
"validateOnSave": true
}
This will create diagnostics for any elements that fail validation. terraform validate
can also be run using the setting in the command palette.
v2.0.0 is the first official release from HashiCorp, prior releases were by Mikael Olenfalk.
The 2.0.0 release integrates a new Language Server package from HashiCorp. The extension will install and upgrade terraform-ls to continue to add new functionality around code completion and formatting. See the terraform-ls CHANGELOG for details.
In addition, this new version brings the syntax highlighting up to date with all HCL2 features, as needed for Terraform 0.12 and above.
Configuration Changes Please note that in 2.x, the configuration differs from 1.4.0, if you are having issues with the Language Server starting, you can reset the configuration to the following:
{
"terraform.languageServer": {
"external": true,
"args": [
"serve"
]
}
}
See the CHANGELOG for more information.
If you are using a Terraform version prior to 0.12.0, you can install the pre-transfer version of this extension manually by following the instructions in the wiki.
- Multi-folder workspaces are not yet supported. (info)
- A number of different folder configurations (specifically when your root module is not a parent to any submodules) are not yet supported. (info)
We're starting a user group for the Terraform VS Code extension. This group offers opportunities to provide feedback, access pre-release versions, and help influence the direction of this project. Collaboration and updates will be via HashiCorp Discuss (discuss.hashicorp.com), along with occasional live events.
If you are interested, please complete and submit our participation form, and we will get back to you with an invite!
- Mikael Olenfalk - creating and supporting the vscode-terraform extension, which was used as a starting point and inspiration for this extension.