{"id":14155207,"url":"https://github.com/DelineaXPM/dsv-cli","last_synced_at":"2025-08-06T01:30:43.799Z","repository":{"id":39789746,"uuid":"321706112","full_name":"DelineaXPM/dsv-cli","owner":"DelineaXPM","description":"⚡ A cross-platform swiss army knife tool for DevOps secrets management.","archived":false,"fork":false,"pushed_at":"2024-08-26T21:36:36.000Z","size":16801,"stargazers_count":21,"open_issues_count":2,"forks_count":5,"subscribers_count":7,"default_branch":"main","last_synced_at":"2024-08-27T17:00:04.587Z","etag":null,"topics":["devops","dsv","secrets-management","vault"],"latest_commit_sha":null,"homepage":"https://delinea.com/products/devops-secrets-management-vault","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DelineaXPM.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-12-15T15:17:14.000Z","updated_at":"2024-08-26T17:36:10.000Z","dependencies_parsed_at":"2023-07-13T04:15:45.096Z","dependency_job_id":"e9b1faea-88f8-43a3-8aa2-486fe09dc49e","html_url":"https://github.com/DelineaXPM/dsv-cli","commit_stats":{"total_commits":263,"total_committers":15,"mean_commits":"17.533333333333335","dds":"0.49049429657794674","last_synced_commit":"501e66c3576cda8c4981c1b32ac9b31c9dc142bc"},"previous_names":["thycotic/dsv-cli"],"tags_count":50,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DelineaXPM%2Fdsv-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DelineaXPM%2Fdsv-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DelineaXPM%2Fdsv-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DelineaXPM%2Fdsv-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DelineaXPM","download_url":"https://codeload.github.com/DelineaXPM/dsv-cli/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228821401,"owners_count":17977165,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["devops","dsv","secrets-management","vault"],"created_at":"2024-08-17T08:02:30.217Z","updated_at":"2024-12-09T02:31:07.485Z","avatar_url":"https://github.com/DelineaXPM.png","language":"Go","readme":"# Delinea DevOps Secrets Vault CLI\n\nAn automation tool for the management of credentials for applications, databases, CI/CD tools, and services.\n\n![landing-demo](docs/vhs/assets/landing-demo.gif)\n\n## Getting Started\n\n- [Pre-built Binaries][prebuilt-binaries]\n- [Developer](docs/developer): instructions on running tests, local tooling, and other resources.\n- [DSV Documentation](https://docs.delinea.com/dsv/current?ref=githubrepo)\n\n## Quick Start Install\n\n\u003cdetails closed\u003e\n\u003csummary\u003eℹ️ Any Platform\u003c/summary\u003e\n\n- Use with Docker.\n\n  ![Docker Image Version (latest semver)](https://img.shields.io/docker/v/delineaxpm/dsv-cli?style=for-the-badge)\n\nExamples:\n\n```shell\n# Make sure these files exists already so they aren't created by docker with the incorrect permissions\nmkdir $HOME/.thy/\ntouch $HOME/.dsv.yml\n\n# Use CLI and have the credentials mounted to home\ndocker run --rm -it \\\n    -v ${HOME}/.thy/:/home/nonroot/.thy/ \\\n    -v ${HOME}/.dsv.yml:/home/nonroot/.dsv.yml \\\n    delineaxpm/dsv-cli:latest --version version\n# Example reading config\ndocker run --rm -it \\\n    --user 65532 \\\n    -v ${HOME}/.thy/:/home/nonroot/.thy/ \\\n    -v ${HOME}/.dsv.yml:/home/nonroot/.dsv.yml \\\n    delineaxpm/dsv-cli:latest cli-config read\n\n# Wrap in a shell function for easier invoking via your zsh or bash profile.\nfunction dsv() {\n  docker run --rm -it \\\n      -v ${HOME}/.thy/:/home/nonroot/.thy/ \\\n      -v ${HOME}/.dsv.yml:/home/nonroot/.dsv.yml \\\n      delineaxpm/dsv-cli:latest \"$@\"\n}\n```\n\n- 🔨 Download from [prebuilt-binaries] manually.\n- [Aquaproject][aqua-project]: `aqua generate 'DelineaXPM/dsv-cli' -i` and update your `aqua.yml` file.\n- PowerShell Cross-Platform (pwsh) with console selector (move to directory in `$ENV:PATH` for it to be universally discoverable):\n\n  ```powershell\n  if (-not (Get-InstalledModule Microsoft.PowerShell.ConsoleGuiTools -ErrorAction SilentlyContinue))\n  {\n      Install-Module Microsoft.PowerShell.ConsoleGuiTools -Force -Confirm:$false -Scope CurrentUser\n  }\n\n  $json=(Invoke-WebRequest -ContentType 'application/json' -Uri 'https://s3.amazonaws.com/dsv.secretsvaultcloud.com/cli-version.json' -UseBasicParsing).Content | ConvertFrom-Json\n  $download=$json.Links | get-member -Type NoteProperty | ForEach-Object {\n  [pscustomobject]@{\n      FileName = $_.Name\n      DownloadLink = $json.Links.$($_.Name)\n      OutFileName = ($json.Links.$($_.Name) -split '/')[-1]\n  }} | Out-ConsoleGridView  -Title 'Delinea DevOps Secrets Vault CLI'\n  $download | ForEach-Object { Invoke-WebRequest -Uri $_.DownloadLink -OutFile $_.OutFileName -UseBasicParsing }\n  ```\n\n\u003c/details\u003e\n\n\u003cdetails closed\u003e\n\u003csummary\u003eℹ️ Mac \u0026 Linux\u003c/summary\u003e\n\n## Mac \u0026 Linux\n\n- [aqua-project] provides a binary tool manager similar to Brew.\n- 🍺 Homebrew: `brew install DelineaXPM/tap/dsv-cli`.\n  - Upgrade with: `brew update \u0026\u0026 brew upgrade dsv-cli`\n- Via Go (this will take longer than a binary install since it will build it):\n  - run:\n\n```shell\ngo install github.com/DelineaXPM/dsv-cli@latest\nmv $(go env GOPATH)/bin/dsv-cli $(go env GOPATH)/bin/dsv\necho \"dsv is installed at: $(go env GOPATH)/bin\"\necho \"Add to your profile to ensure Go binaries are in path by using:\\n\\n\"\necho \"export PATH=\\\"\\$(go env GOPATH)/bin:\\${PATH}\\\"\\n\\n\"\necho \"Current DSV Binaries installed: \\n$(which -a dsv)\"\n```\n\n- Curl (requires Go installed):\n\n  ```shell\n  go install github.com/mikefarah/yq/v4@latest\n  version=$(curl -sb -H \"Accept: application/json\" https://s3.amazonaws.com/dsv.secretsvaultcloud.com/cli-version.json | $(go env GOPATH)/bin/yq '.latest')\n  echo \"version: $version\"\n  curl -fSsl https://dsv.secretsvaultcloud.com/downloads/cli/$version/dsv-darwin-x64 -o dsv \u0026\u0026 chmod +x ./dsv \u0026\u0026 sudo mv ./dsv /usr/local/bin\n  ```\n\n- Curl (no Go required). Requires specifying the version:\n\n  ```shell\n  curl -fSsl https://dsv.secretsvaultcloud.com/downloads/cli/1.39.5/dsv-darwin-x64 -o dsv \u0026\u0026 chmod +x ./dsv \u0026\u0026 sudo mv ./dsv /usr/local/bin\n  ```\n\n\u003e **note**: It is not required to install to `/usr/local/bin`. If you choose to install to another location you'll want to make sure it's added to your PATH for the tool to be found.\n\n\u003c/details\u003e\n\n\u003cdetails closed\u003e\n\u003csummary\u003eℹ️ Linux Only\u003c/summary\u003e\n\n[![Get it from the Snap Store](https://snapcraft.io/static/images/badges/en/snap-store-black.svg)](https://snapcraft.io/dsv-cli)\n\n- Via cli: `snap install dsv-cli`.\n  - At this time add alias to your profile with: `alias dsv='dsv-cli', as the snap name is not aliased.\n- Note: Snaps update automatically (4 times a day as the [default behavior as of 2023-01](https://snapcraft.io/docs/keeping-snaps-up-to-date)), but this can be run manually via `snap refresh`.\n\n\u003c/details\u003e\n\n\u003cdetails closed\u003e\n\u003csummary\u003eℹ️ Windows\u003c/summary\u003e\n\n### Windows\n\n- Scoop:\n  - First time setup: `scoop bucket add DelineaXPM https://github.com/DelineaXPM/scoop-bucket.git`.\n  - Install: `scoop install DelineaXPM/dsv-cli`.\n  - Update: `scoop update DelineaXPM/dsv-cli`.\n- Using curl in Windows PowerShell (for cross-platform pwsh see top section) and move to whatever directory you want:\n\n  ```powershell\n  $json=(Invoke-WebRequest -ContentType 'application/json' -Uri 'https://s3.amazonaws.com/dsv.secretsvaultcloud.com/cli-version.json' -UseBasicParsing).Content | ConvertFrom-Json\n  # Change this to windows/386 if required to install x86.\n  Invoke-WebRequest -Uri $json.links.'windows/amd64' -OutFile 'dsv.exe' -UseBasicParsing\n  ```\n\n\u003c/details\u003e\n\n## License\n\nSee [LICENSE](https://github.com/DelineaXPM/dsv-cli/blob/main/LICENSE) for the full license text.\n\n## Contributors\n\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\n\u003c!-- readme: collaborators,contributors -start --\u003e\n\u003ctable\u003e\n\t\u003ctbody\u003e\n\t\t\u003ctr\u003e\n            \u003ctd align=\"center\"\u003e\n                \u003ca href=\"https://github.com/thycotic-rd\"\u003e\n                    \u003cimg src=\"https://avatars.githubusercontent.com/u/45605025?v=4\" width=\"100;\" alt=\"thycotic-rd\"/\u003e\n                    \u003cbr /\u003e\n                    \u003csub\u003e\u003cb\u003eThycotic-Bot\u003c/b\u003e\u003c/sub\u003e\n                \u003c/a\u003e\n            \u003c/td\u003e\n            \u003ctd align=\"center\"\u003e\n                \u003ca href=\"https://github.com/sheldonhull\"\u003e\n                    \u003cimg src=\"https://avatars.githubusercontent.com/u/3526320?v=4\" width=\"100;\" alt=\"sheldonhull\"/\u003e\n                    \u003cbr /\u003e\n                    \u003csub\u003e\u003cb\u003eSheldonhull\u003c/b\u003e\u003c/sub\u003e\n                \u003c/a\u003e\n            \u003c/td\u003e\n            \u003ctd align=\"center\"\u003e\n                \u003ca href=\"https://github.com/andrii-zakurenyi\"\u003e\n                    \u003cimg src=\"https://avatars.githubusercontent.com/u/85106843?v=4\" width=\"100;\" alt=\"andrii-zakurenyi\"/\u003e\n                    \u003cbr /\u003e\n                    \u003csub\u003e\u003cb\u003eAndrii Zakurenyi\u003c/b\u003e\u003c/sub\u003e\n                \u003c/a\u003e\n            \u003c/td\u003e\n            \u003ctd align=\"center\"\u003e\n                \u003ca href=\"https://github.com/mariiatuzovska\"\u003e\n                    \u003cimg src=\"https://avatars.githubusercontent.com/u/41679258?v=4\" width=\"100;\" alt=\"mariiatuzovska\"/\u003e\n                    \u003cbr /\u003e\n                    \u003csub\u003e\u003cb\u003eMariia\u003c/b\u003e\u003c/sub\u003e\n                \u003c/a\u003e\n            \u003c/td\u003e\n            \u003ctd align=\"center\"\u003e\n                \u003ca href=\"https://github.com/pacificcode\"\u003e\n                    \u003cimg src=\"https://avatars.githubusercontent.com/u/918320?v=4\" width=\"100;\" alt=\"pacificcode\"/\u003e\n                    \u003cbr /\u003e\n                    \u003csub\u003e\u003cb\u003eBill Hamilton\u003c/b\u003e\u003c/sub\u003e\n                \u003c/a\u003e\n            \u003c/td\u003e\n            \u003ctd align=\"center\"\u003e\n                \u003ca href=\"https://github.com/tdillenbeck\"\u003e\n                    \u003cimg src=\"https://avatars.githubusercontent.com/u/21064520?v=4\" width=\"100;\" alt=\"tdillenbeck\"/\u003e\n                    \u003cbr /\u003e\n                    \u003csub\u003e\u003cb\u003eTom Dillenbeck\u003c/b\u003e\u003c/sub\u003e\n                \u003c/a\u003e\n            \u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\u003ctbody\u003e\n\u003c/table\u003e\n\u003c!-- readme: collaborators,contributors -end --\u003e\n\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n[prebuilt-binaries]: https://dsv.secretsvaultcloud.com/downloads\n[aqua-project]: https://aquaproj.github.io/\n","funding_links":[],"categories":["devops"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDelineaXPM%2Fdsv-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FDelineaXPM%2Fdsv-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDelineaXPM%2Fdsv-cli/lists"}