Skip to content

Commit

Permalink
feat: Add debug config for VS Code
Browse files Browse the repository at this point in the history
  • Loading branch information
amhn committed Sep 5, 2022
1 parent f52ffe6 commit e71fd8f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Terraform Provider",
"type": "go",
"request": "launch",
"mode": "debug",
// this assumes your workspace is the root of the repo
"program": "${workspaceFolder}",
"env": {},
"args": [
"-debug",
]
}
]
}

0 comments on commit e71fd8f

Please sign in to comment.