akv-cli 0.2.0

The Azure Key Vault CLI can be used to read secrets, pass them securely to other commands, or inject them into configuration files.
Documentation
{
  "version": "0.2.0",
  "configurations": [
    {
      "type": "lldb",
      "request": "launch",
      "name": "Tests",
      "cargo": {
        "args": [
          "test",
          "--no-run",
          "--lib"
        ]
      },
      "args": [],
      "cwd": "${workspaceFolder}",
      "envFile": ".azure/dev/.env"
    },
    {
      "type": "lldb",
      "request": "launch",
      "name": "Run (with masking)",
      "cargo": {
        "args": [
          "build",
          "--bin=akv"
        ],
        "filter": {
          "name": "akv",
          "kind": "bin"
        }
      },
      "args": [
        "run",
        "--",
        "cargo",
        "run",
        "--example=printenv"
      ],
      "cwd": "${workspaceFolder}",
      "envFile": ".azure/dev/.env"
    }
  ]
}