Skip to content

Instantly share code, notes, and snippets.

@metahertz
Created August 28, 2020 16:52
Show Gist options
  • Save metahertz/b36b17152b0ae167eaad69d31535fcdd to your computer and use it in GitHub Desktop.
Save metahertz/b36b17152b0ae167eaad69d31535fcdd to your computer and use it in GitHub Desktop.
Checkov VSCode debug launch.json
{
"version": "0.2.0",
"configurations": [
{"name":"Python: Checkov","type":"python","request":"launch","program":"${workspaceFolder}/checkov/main.py", "args": ["-f", "${workspaceFolder}/test.tf"], "console":"integratedTerminal", "env": {"PYTHONPATH": "${workspaceFolder}"}},
{"name":"Python: Remote Attach","type":"python","request":"attach","connect":{"host":"localhost","port":5678},"pathMappings":[{"localRoot":"${workspaceFolder}","remoteRoot":"."}]},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment