Tag_Archive: #Makefile

· 2 min read

SOPS Secrets Management Integration inside Makefiles

This article covers SOPS Secrets Management Integration inside Makefiles, originally published as a secure GitHub Gist snippet. seal-sops: ## SOPS Encrypt all secrets path matching [_sec|secret|config|*.secret*] @find $(PTH) -path "*/_sec/*" -type f -o -path "*/secret/*" -type f -o -path "*/config/*" -name "*.secret*" -type f |\ egrep -v … ... read more »