i am storing application.yaml configs spring boot as json in vault and I wanna update them by gitlab ci stages, Who did face with that issue and could help me. I found nothing about that
I found nothing about that. I tried use python scripts but it is not my way
Your question is extremely unclear and doesn't provide very much information to go on, but you can likely accomplish this any number of ways.
All you need is the ability to communicate and authenticate with vault using a credential that has write access to the path you're storing your configuration, then you just need to update the secret.
Assuming you're using a kv-v1 secret store, you can update the secret via the API with a POST/PUT with curl:
You can find more information on updating a secret here
Since you mentioned you were trying to use Python to accomplish this, you'd want to utilize the "hvac" library. Again, assuming a kv-v1 store, you can do this like this:
Again for more information, look at this documentation.
If my answer here is sufficient, please accept it. If you need further guidance, please update your post with more information. Namely:
All of these things are relevant to your question and you provided none of them, which makes it very hard for people to try to help you.