Home / Companies / Infisical / Blog / February 2025

February 2025 Summaries

3 posts from Infisical

Filter
Month: Year:
Post Summaries Back to Blog
The "secret zero" problem refers to a chicken-and-egg dilemma in cloud-native applications, where securing access to secrets is crucial. To address this issue, modern solutions like Infisical focus on establishing and verifying identities rather than managing shared secrets. This approach involves leveraging existing identity providers, issuing short-lived access tokens, minimizing credentials, and automatically renewing them. By shifting the focus from "What do you have?" to "Who are you?", identity-based authentication provides a more robust foundation for modern applications, escaping the secret zero paradox and preventing "secrets sprawl".
Feb 20, 2025 1,556 words in the original blog post.
Self-hosting an Infisical, a powerful open-source secrets manager, can be used to protect backup credentials and keep backups safe from malware. The process involves deploying Infisical with Docker Compose on an Ubuntu server, setting up a valid environment file, and configuring the Nginx configuration files. Once set up, users can log into the Infisical CLI and use the `infisical run` command to access their B2 application key and inject secrets just-in-time. This allows users to protect their backup keys while still being able to use them on other machines. The setup is easy, repeatable, and secure, making it a valuable tool for individuals who want to manage their secrets securely.
Feb 12, 2025 1,909 words in the original blog post.
Terraform v1.10 introduces ephemeral resources, which are temporary entities that don't persist in state/plan files and exist only during execution, making them ideal for handling sensitive data like secrets, dynamic tokens, or any data that shouldn't be stored. Ephemeral resources can be used to securely manage secrets, reduce security risks, optimize cloud costs, and enhance flexibility in infrastructure-as-code practices. Currently supported by a few providers including Infisical, AWS, Azure, GCP, and Kubernetes. The feature is particularly powerful for GitOps workflows, where it replaces static secrets with ephemeral references, aligning perfectly with the approach used in DevOps environments. To use ephemeral resources, users must limit their references to allowed contexts, combine them with OIDC authentication, and monitor lifecycles to avoid lingering access.
Feb 06, 2025 1,019 words in the original blog post.