From b8e573fdf1f8f247134d2aa5e7311a34567be1e6 Mon Sep 17 00:00:00 2001 From: Paul Tyng Date: Fri, 16 Oct 2020 21:17:36 -0400 Subject: [PATCH] Add vscode launch json --- .vscode/launch.json | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..a8c1116 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,36 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Acceptance Tests", + "type": "go", + "request": "launch", + "mode": "test", + // this assumes your workspace is the root of the repo + "program": "${fileDirname}", + "env": { + "TF_ACC": "1", + }, + "args": [], + }, + // You could pair this configuration with an exec configuration that runs Terraform as + // a compound launch configuration: + // https://code.visualstudio.com/docs/editor/debugging#_compound-launch-configurations + { + "name": "Debug - Attach External CLI", + "type": "go", + "request": "launch", + "mode": "debug", + // this assumes your workspace is the root of the repo + "program": "${workspaceFolder}", + "env": {}, + "args": [ + // pass the debug flag for reattaching + "-debug", + ], + } + ] +} \ No newline at end of file