Skip to content

Instantly share code, notes, and snippets.

@alexgelman
alexgelman / infra-secret-management-overview.md
Created September 26, 2017 12:53 — forked from maxvt/infra-secret-management-overview.md
Infrastructure Secret Management Software Overview
View infra-secret-management-overview.md

Currently, there is an explosion of tools that aim to manage secrets for automated, cloud native infrastructure management. Daniel Somerfield did some work classifying the various approaches, but (as far as I know) no one has made a recent effort to summarize the various tools.

This is an attempt to give a quick overview of what can be found out there. The list is alphabetical. There will be tools that are missing, and some of the facts might be wrong--I welcome your corrections. For the purpose, I can be reached via @maxvt on Twitter, or just leave me a comment here.

There is a companion feature matrix of various tools. Comments are welcome in the same manner.

@alexgelman
alexgelman / NEO-install-choco-script.bat
Last active August 16, 2017 08:21 — forked from ValeroK/NEO-install-choco-script.bat
Setup Dev env using chocolaty
View NEO-install-choco-script.bat
:: Install choco .exe and add choco to PATH
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
:: Install all the packages
:::: Browsers
choco install googlechrome -fy
:::: Text editors / IDEs
choco install dotnetcoresdk -fy
choco install visualstudiocode -fy