惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Fortinet All Blogs
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog
WordPress大学
WordPress大学
Jina AI
Jina AI
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
腾讯CDC
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
The GitHub Blog
The GitHub Blog
V
Visual Studio Blog
Google DeepMind News
Google DeepMind News
月光博客
月光博客
博客园 - Franky
Y
Y Combinator Blog
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
雷峰网
雷峰网
小众软件
小众软件
H
Hackread – Cybersecurity News, Data Breaches, AI and More

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Stop Leaking API Keys: Managing Secrets in Kamal 2
Zil Norvilis · 2026-05-12 · via DEV Community

I see developers make a mistake that can ruin their entire month.

They are building a new Rails SaaS. They get their Stripe secret key, their OpenAI key, and their AWS credentials. To deploy the app, they create a file called .env.production on their laptop, paste the keys inside, and deploy.

Then, late on a Friday night, they accidentally type git add . and push that file to a public GitHub repository.

Within exactly 4 seconds, automated bots scrape those keys. By Saturday morning, hackers have spun up $50,000 worth of crypto-mining servers on their AWS account.

As a solo developer, you cannot afford this mistake. You need a system where your production secrets never touch a file that can be committed to Git.

With the release of Kamal 2, managing secrets has been completely overhauled. You can now pull your API keys directly from your password manager during the deployment process. Here is how to lock down your Rails app in 4 simple steps.

STEP 1: The deploy.yml Configuration

In Kamal 2, you explicitly tell your deployment configuration which environment variables are considered "secrets".

Open your config/deploy.yml file. You will see an env section. You just list the names of the keys your Rails app expects.

# config/deploy.yml
env:
  clear:
    # Safe to commit (Public info)
    RAILS_ENV: production
    POSTGRES_USER: my_app_user
  secret:
    # DANGEROUS! Do not put the actual values here!
    - RAILS_MASTER_KEY
    - POSTGRES_PASSWORD
    - STRIPE_SECRET_KEY
    - OPENAI_API_KEY

Enter fullscreen mode Exit fullscreen mode

When you run kamal deploy, Kamal looks at this list and says: "Okay, I need to find the values for these 4 secrets before I can boot up the Docker container."

STEP 2: The .kamal/secrets File

So, where does Kamal look for the actual values?

By default, Kamal 2 looks for a file on your local machine at .kamal/secrets.
CRITICAL: Ensure this file is added to your .gitignore immediately so it never ends up on GitHub.

You can create this file and paste your keys into it:

# .kamal/secrets
RAILS_MASTER_KEY=abc123supersecret...
POSTGRES_PASSWORD=databasepassword99!
STRIPE_SECRET_KEY=sk_live_55555...

Enter fullscreen mode Exit fullscreen mode

When you deploy, Kamal reads this file, injects the secrets securely into the Docker container, and boots the app.

This is much better than hardcoding keys in your codebase. But we can do even better. We can remove the keys from our hard drive completely.

STEP 3: The "Pro Move" (Password Manager CLI)

Having plain text passwords sitting in .kamal/secrets on your laptop is still risky. If your laptop gets stolen, the keys are compromised.

Kamal 2 allows you to execute terminal commands inside the .kamal/secrets file. This means we can ask a Password Manager (like 1Password, Bitwarden, or LastPass) to fetch the keys from the cloud at the exact moment of deployment.

I use 1Password. I installed their command-line tool (the op CLI).

Instead of writing the actual API key in my file, I write the 1Password command to fetch it:

# .kamal/secrets

# Fetch the master key from my 1Password vault
RAILS_MASTER_KEY=$(op read "op://Work/RailsApp/master_key")

# Fetch the database password
POSTGRES_PASSWORD=$(op read "op://Work/Database/password")

# Fetch the Stripe key
STRIPE_SECRET_KEY=$(op read "op://Work/Stripe/secret_key")

Enter fullscreen mode Exit fullscreen mode

STEP 4: The Secure Deploy

Now, let's see what happens when I deploy my app.

I open my terminal and type:

kamal deploy

Enter fullscreen mode Exit fullscreen mode

  1. Kamal reads .kamal/secrets.
  2. It sees the op read commands.
  3. 1Password pops up on my screen, asking for my fingerprint (TouchID).
  4. I scan my finger.
  5. 1Password securely hands the keys to Kamal in memory.
  6. Kamal pushes the keys to the server and boots the app.

The plain-text keys do not exist anywhere on my laptop's hard drive. They live securely in the 1Password cloud, and are injected directly into the production server's memory.

Summary

Security as a solo developer is usually an afterthought until something terrible happens.

By using Kamal 2's secret management, you completely eliminate the risk of the dreaded "leaked .env file."

  1. List the variable names in deploy.yml.
  2. Put the values (or the fetch commands) in .kamal/secrets.
  3. Keep your .gitignore clean.
  4. Use a password manager CLI to never store plain text keys locally.

This setup takes about 10 minutes to configure, but the peace of mind it gives you when you run git push on a Friday night is priceless.