Multiple Environments
Manager your configs across multiple environments using Gitops
Using SecretsFoundry, you can create multiple configuration files and commit them to Git
.env.development
env.development
.env.staging
.env.staging
.env.prod
.env.prod
To run your binary in different environments, we can just do:
secretsfoundry run --stage <development|staging|prod> -c "run binary"
Last updated