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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
IT之家
IT之家
Google DeepMind News
Google DeepMind News
D
Docker
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 【当耐特】
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
博客园 - Franky
月光博客
月光博客
宝玉的分享
宝玉的分享
酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & 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
Testing a multi-cloud app locally: LocalStack, Moto, Azur...
vyomi-admin · 2026-06-21 · via DEV Community
Cover image for Testing a multi-cloud app locally: LocalStack, Moto, Azurite… or one tool for all three?

vyomi-admin

If your app only talks to AWS, LocalStack is fantastic. But the moment a service reaches into GCP or Azure, local development fragments: you bolt on Moto for extra AWS bits, Azurite for Azure Blob, and the gcloud emulators for Pub/Sub and Firestore. Three+ tools, three configs, no shared state, no shared console.

This post compares the options for testing a multi-cloud app locally, and introduces Vyomi — what we call a multi-cloud digital twin runtime: instead of mocking one cloud, it runs a faithful, live replica of AWS, GCP, and Azure in one appliance, on real backends. (If "simulator" is the word you searched for, that's the neighbourhood: the difference is the "real backends" part below.)

The landscape

Tool Clouds Backing Multi-cloud?
LocalStack AWS mocks + some real No (AWS only)
Moto AWS in-process mocks No
Azurite Azure Blob/Queue/Table real emulator No (single service)
GCP emulators GCP (Pub/Sub, Firestore, …) official emulators No (piecemeal)
Vyomi AWS + GCP + Azure real backends (digital twin) Yes — one appliance

Why a digital twin, not a mock?

Instead of in-process mocks, Vyomi runs actual engines behind the cloud APIs: Postgres and MySQL for managed SQL, MinIO for S3, DynamoDB-local, Vault for KMS/secrets, NATS for eventing, Azurite for Azure Blob, fake-gcs-server for GCS, and the official Firestore / Pub-Sub emulators. Closer-to-prod behaviour, and state that persists.

The only change to your code: the endpoint URL

# AWS (boto3)
import boto3
s3 = boto3.client("s3", endpoint_url="http://localhost:9000")

# GCP (google-cloud-storage) — point at the local endpoint
# Azure (azure-storage-blob) — same idea, one connection string

aws, gcloud, gsutil, az, and terraform work the same way.

When you're done: export to Terraform

Vyomi exports your simulated stack to Terraform HCL, so the same resources you built locally terraform apply to a real AWS/GCP/Azure account — local-to-prod without a rewrite.

Try it

brew install vyomi-cloud/tap/vyomi && vyomi up
# or: docker run -d -p 9000:9000 -p 9443:9443 vyomi/appliance:latest

Runs offline, free tier, source-available.
Full feature-by-feature comparison: https://vyomi.cloud/compare/localstack.
Source: https://github.com/vyomi-cloud/appliance.

Disclosure: this article is from the Vyomi team. Feedback and "you got LocalStack wrong here" corrections welcome.