D
D
Danil Gorev2021-12-30 03:39:17
Python
Danil Gorev, 2021-12-30 03:39:17

Is there a cloud/server solution for storing project configurations?

With each new environment variable, the chance to miss something increases. Is there any cloud or server solution for storing variables?

I already used Vault from Hashicorp for about the same tasks, but I don’t have the need to encrypt each of the variables, as well as such strict access to them.

Answer the question

In order to leave comments, you need to log in

6 answer(s)
V
Vasily Bannikov, 2021-12-30
@ketovv

I already used Vault from Hashicorp for about the same tasks, but I don’t have the need to encrypt each of the variables, as well as such strict access to them.

Well, then it's obvious that you need Consul from them :)
Well, or you can use git as a repository for the config

H
hint000, 2021-12-30
@hint000

I use git to store server configurations.

A
Alexey Cheremisin, 2021-12-30
@leahch

Any distributed database like consul.io, etcd, zookeeper..

A
Anton Shamanov, 2021-12-30
@SilenceOfWinter

yandex.disk app or git + github.com

S
Saboteur, 2021-12-30
@saboteur_kiev

Those variables that can change often, store directly on the server or configmaps in the cuber.
Those variables that are secrets - in a hashicorp or other secret repository.
All the rest, for which you can wait for a new build to change - just store in the code as profiles for each environment.

V
Vitaly Karasik, 2021-12-30
@vitaly_il1

In general it depends, but in 90% the natural place for non-secret configurations is in the code (Github, ...).
Read about the GitOps principle.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question