Earlier quoted context omitted.
Credentials in a config file can be mistakenly checked into a repository. They're easy to exfiltrate from files, say I write a script with well known configuration locations for thousands of applications and just dumbly pull them all from a compromised system. I now have little bits of access to the wider system where I can now jump from system to system. The best way to store ephemeral secrets is in an environment v…
How do you automate setting that environment variable?
Show HN: A tool to seed your dev database with real data
11–20 of 79 posts
Re: Show HN: A tool to seed your dev database with real data
#12This does sounds kind of useful. On the other hand I performed a similar task just yesterday using the native pg_dump and pg_restore commands, and it only took a couple of hours to setup (and now I have a repeatable script), so this’ll need to be implemented really well to provide value.
Re: Show HN: A tool to seed your dev database with real data
#13Re: Show HN: A tool to seed your dev database with real data
#14Earlier quoted context omitted.
Why?
Credentials in a config file can be mistakenly checked into a repository. They're easy to exfiltrate from files, say I write a script with well known configuration locations for thousands of applications and just dumbly pull them all from a compromised system. I now have little bits of access to the wider system where I can now jump from system to system. The best way to store ephemeral secrets is in an environment v…
Re: Show HN: A tool to seed your dev database with real data
#15Please don't require static AWS credentials: https://github.com/Qovery/replibyte/blob/v0.4.4/replibyte/sr... or at least either include "AWS_SESSION_TOKEN" in that setup (if it is present) in order to allow "aws sts assume-role" to work, or allow `AWS_PROFILE`, or just use the aws-sdk's normal credential discovery mechanism which at least on their "main" SDKs is a fallback list of them, but I couldn't follow the docs…
Re: Show HN: A tool to seed your dev database with real data
#16Earlier quoted context omitted.
Credentials in a config file can be mistakenly checked into a repository. They're easy to exfiltrate from files, say I write a script with well known configuration locations for thousands of applications and just dumbly pull them all from a compromised system. I now have little bits of access to the wider system where I can now jump from system to system. The best way to store ephemeral secrets is in an environment v…
I don't get this logic, that's what .gitignore is for. I've been using .env files for years and never mistakenly checked one into a repo.
Re: Show HN: A tool to seed your dev database with real data
#17Earlier quoted context omitted.
Credentials in a config file can be mistakenly checked into a repository. They're easy to exfiltrate from files, say I write a script with well known configuration locations for thousands of applications and just dumbly pull them all from a compromised system. I now have little bits of access to the wider system where I can now jump from system to system. The best way to store ephemeral secrets is in an environment v…
I don't get this logic, that's what .gitignore is for. I've been using .env files for years and never mistakenly checked one into a repo.
Re: Show HN: A tool to seed your dev database with real data
#18Earlier quoted context omitted.
Credentials in a config file can be mistakenly checked into a repository. They're easy to exfiltrate from files, say I write a script with well known configuration locations for thousands of applications and just dumbly pull them all from a compromised system. I now have little bits of access to the wider system where I can now jump from system to system. The best way to store ephemeral secrets is in an environment v…
How do you automate setting that environment variable?
Re: Show HN: A tool to seed your dev database with real data
#19interesting, however couldn't it detect tables and columns automatically instead of having to specify them in the configuration file? If I understand correctly each table is to be specified by hand. Say I have nearly a hundred tables...
Re: Show HN: A tool to seed your dev database with real data
#20Earlier quoted context omitted.
I don't get this logic, that's what .gitignore is for. I've been using .env files for years and never mistakenly checked one into a repo.
idk what to tell you. I work on a security team, one of the tools the team built finds and identifies secrets already checked into VCS or ones at the pre-commit stage. It's certainly not a seldomly used tool.