Conversation
Add a three-example gallery for the Serverless Framework `sandboxes`
feature, which deploys AWS Lambda MicroVMs.
- minimal/ smallest config: a single sandbox with only `artifact`;
every other setting uses a framework default
- complete/ deploy-as-is showcase: Dockerfile build, minimumMemory,
environment, lifecycle hooks, observability (metric
filters, alarms -> SNS, dashboard), custom IAM, and tags;
VPC egress and a pre-packaged S3 artifact shown as
commented, opt-in blocks
- self-hosted-webhook/ a webhook control plane that launches one MicroVM per
Claude Managed Agents session (launcher Lambda verifies
the signature and calls RunMicrovm; the worker image runs
the session), with a local dev walkthrough and CloudWatch
dashboard screenshots
Each example ships a README, serverless.yml, app source, and Dockerfile.
… explicit timeout)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this adds
A three-example gallery for the Serverless Framework
sandboxesfeature, which deploys AWS Lambda MicroVMs. Each example is self-contained with its ownREADME,serverless.yml, application source, andDockerfile.minimal/The smallest possible configuration: a single sandbox with only the required
artifactfield. Every other setting falls back to a framework default. Good as a first look at the feature.complete/A deploy-as-is showcase of the property surface, exercised by one
apisandbox:minimumMemory,description,environmenthooks(ready+run)observability— custom metricfilters,alarmswired to a self-contained SNS topic, and adashboardiamstatements merged into the generated least-privilege rolestagsVPC egress and a pre-packaged
s3://artifact are included as commented, opt-in blocks (they need account-specific IDs).self-hosted-webhook/A webhook control plane that launches one isolated MicroVM per Claude Managed Agents session:
RunMicrovmsandboxesfeature) runs the sessionTesting
Each example deploys with
serverless deployand was validated end-to-end: deploy, invoke, log retrieval, and the observability metrics/alarms/dashboard.