terraform/docs/debugging-configs/vscode/launch-via-cli/launch.json
Sarah French 6784407b65
Add .vscode/ to .gitignore, add launch configuration samples elsewhere in repo, update debugging docs (#36527)
* 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
2025-02-19 10:04:33 +00:00

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",
}
]
}