mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-03 20:50:59 -05:00
* Remove .vscode/ from version control * Add section about debugging automated tests * Update existing debugging advice to reference example file, deduplicate text about automated tests * Add details about launching TF ni debug mode from within VS Code * Respond to review feedback, other small edits like full-stops
15 lines
358 B
JSON
15 lines
358 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Connect to dlv server",
|
|
"type": "go",
|
|
"debugAdapter": "dlv-dap",
|
|
"request": "attach",
|
|
"mode": "remote",
|
|
"remotePath": "${workspaceFolder}",
|
|
"port": 2345,
|
|
"host": "127.0.0.1",
|
|
}
|
|
]
|
|
}
|