Can I use Booster in combination with Serverless Framework (serverless.yml file)? #613
Replies: 1 comment
-
Hello @fernando1989mg, the main difference between Booster and Serverless Framework is that Booster focuses on the application code and generates the infra automatically, while Serverless Framework focuses on the infrastructure components, leaving the code responsibilities to the developer. In a sense, they solve different problems, so it could make sense to use both. Booster also deploys your application on top of Lambda, DynamoDB and API Gateway, it's just that it does it in a more implicit way. So, at the end of the day, it's all AWS, and nothing stops you from deploying one part of your system using Booster and other using the Serverless framework. You'll just end up with two (or more dependeing on your config) separate cloudformation stacks, the one deployed by Booster and the one deployed by SLS framework and you can make them interoperate as with any other serverless application. Depending on your use case, you have different options:
I'm not sure if these ideas help, we've been focusing on using Booster with the AWS CDK, but that's only one way of dealing with infrastructure in AWS, and the framework is designed to support other implementations. It could be totally possible to create a new There's a prototype implementation that @rdiaz82 created to support DAPR integrations in the kubernetes provider that could be used as a reference to do something this. We don't have plans to build a Serverless integration yet, but it's certainly of our interest to support new ways to deploy Booster apps, so if someone wants to try, they'll have our full support! |
Beta Was this translation helpful? Give feedback.
-
i want to use booster to migrate a service... but actually i have important configuration in my serverless.yml, so, how i can use Booster and my serverless.yml together?
Beta Was this translation helpful? Give feedback.
All reactions