Vault – PostgreSQL as Backend
Ok, but the post itself is how to configure Vault to use a PostgreSQL database as storage / backend. This provides much greater security for data, as it can involve…
Vault – Authentication methods with Python
I’ll leave here some code snippets to show how to do authentication in Python in Vault using the methods described in https://devops-db.com/vault-authentication-methods/. https://github.com/faustobranco/devops-db/tree/master/knowledge-base/python/vault-authentication Token. https://github.com/faustobranco/devops-db/blob/master/knowledge-base/python/vault-authentication/auth_token.py LDAP. TLS. For this method,…
Vault – Authentication methods.
In this post, I want to show you the 4 most common authentication types for Vault. I won’t go into the details of each of them, as that would generate…
Vault – Enabling HTTPS
Hello! In this post I will show you how to enable HTTPS, for API, Web, CLI, etc… Create a secure connection. The process is very simple, and all you need…
Vault – LDAP integration
Continuing with the Vault theme. Now I will show you how to integrate Vault with LDAP, for authentication purposes.The process is extremely simple. But it is worth remembering that we…
Vault – Read / Write secrets
In this post, I will show simple python code snippets to read and write KV secrets in Vault. I’ll use the structure and Vault we created in other posts here.…
Jenkins – Vault Integration
After installing Vault. Now we need to configure Jenkins for the integration, create the user and show in a simple secrets structure how a simple pipeline works. Authentication The first…
Vault – Installation
After some time with a break in posting, for personal reasons, I am continuing with the project. In this post, another service that is essential for infrastructure / DevOps. Vault,…
Jenkins – Ansible Playbooks
Hello, in this post, I want to show one of the ways we can use to run Ansible playbooks in the Jenkins pipeline. The method I chose was the simplest,…
Base image for Ansible
In this post, I will record the creation of another image that I will use in this project, an image with Ansible installation, using our already created Base image for…