PierreBeucher / novops

Cross-platform secret & config manager for development and CI environments
https://novops.dev
GNU Lesser General Public License v3.0
158 stars 9 forks source link

Prevent secret files from being swapped to disk #75

Open PierreBeucher opened 7 months ago

PierreBeucher commented 7 months ago

Even though secrets are loaded in tmpfs, an in-memory filesystem, it's possible OS will swap them to disk. We should prevent that.

Maybe using mlock can help there.