1# Terraform
2
3Terraform support is available through the [Terraform extension](https://github.com/zed-industries/zed/tree/main/extensions/terraform).
4
5### Configuration
6
7The Terraform language server can be configured in your `settings.json`, e.g.:
8
9```json
10{
11 "lsp": {
12 "terraform-ls": {
13 "initialization_options": {
14 "experimentalFeatures": {
15 "prefillRequiredFields": true
16 }
17 }
18 }
19 }
20}
21```
22
23See the [full list of server settings here](https://github.com/hashicorp/terraform-ls/blob/main/docs/SETTINGS.md).