Created
August 28, 2020 16:52
-
-
Save metahertz/b36b17152b0ae167eaad69d31535fcdd to your computer and use it in GitHub Desktop.
Checkov VSCode debug launch.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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