Organizations face critical architectural decisions that can impact their operations for years to come such as: Is it better to maintain a single organization or implement multiple organizations? In this post, I explain the key advantages and disadvantages of both approaches and the scenarios where each model fits b...
Choosing between single or multiple organizations in AWS Organizations
AWS Architecture Blog · 2026-05-11
Related items
Workflows, Workers - Build durable multi-step applications in Python with Workflows (now in beta)
You can now build Workflows using Python. With Python Workflows, you get automatic retries, state persistence, and the ability to run multi-step operations that can span minutes, hours, or weeks using Python’s familiar syntax and the Python Workers runtime. Python Workflows use the same step-based execution model as...
Workers - Improved support for running multiple Workers with `wrangler dev`
You can run multiple Workers in a single dev command by passing multiple config files to wrangler dev : wrangler dev --config ./web/wrangler.jsonc --config ./api/wrangler.jsonc Previously, if you ran the command above and then also ran wrangler dev for a different Worker, the Workers running in separate wrangler dev...
Stream - Introducing Origin Restrictions for Media Transformations
We are adding source origin restrictions to the Media Transformations beta. This allows customers to restrict what sources can be used to fetch images and video for transformations. This feature is the same as --- and uses the same settings as --- Image Transformations sources . When transformations is first enabled...
Workers - Control which routes invoke your Worker script for Single Page Applications
For those building Single Page Applications (SPAs) on Workers , you can now explicitly define which routes invoke your Worker script in Wrangler configuration. The runworkerfirst config option has now been expanded to accept an array of route patterns, allowing you to more granularly specify when your Worker script...
Workers - Workers automatic tracing, now in open beta
Enable automatic tracing on your Workers, giving you detailed metadata and timing information for every operation your Worker performs. Tracing helps you identify performance bottlenecks, resolve errors, and understand how your Worker interacts with other services on the Workers platform. You can now answer question...
Building hybrid multi-tenant architecture for stateful services on AWS
In this post, we show you how to build a hybrid multi-tenant architecture that provides strong tenant isolation without requiring per-tenant AWS accounts. You learn how to configure Route 53 weighted routing to distribute traffic across multiple accounts, deploy Application Load Balancer listener rules for tenant-sp...