Skip to content

Commit

Permalink
Add vscode debugging example
Browse files Browse the repository at this point in the history
  • Loading branch information
paultyng committed Feb 1, 2021
1 parent e3d4525 commit 6fda24a
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": "Launch",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/tfplugindocs/",
"env": {},
"args": [],
// Set this to a directory with the provider source code you
// with which you want to test generation.
"cwd": "${workspaceFolder}/../../hashicorp/terraform-provider-null"
}
]
}

0 comments on commit 6fda24a

Please sign in to comment.