Hi, where can I find a full-scale example of Pulum...
# general
a
Hi, where can I find a full-scale example of Pulumi project? No matter if its AWS or Azure. I need to understand your best practices to organize code in big and mid-size projects. How would entire solution for serious e-commerce/industry/marketing/gaming project look like? How to structure code for multi-tenancy when I work as service provider / SaaS? How to design for multi-cloud or hybrid-cloud solutions?
đź‘Ť 2
g
This would be the closest thing we have to that - https://github.com/pulumi/examples/tree/master/aws-stackreference-architecture. In an e-commerce environment, each of your micro services could be its own stack to provide better “separation of concerns”. And in a multi-tenant environment, each tenant could be its own stack as well.
đź‘Ť 1
a
Better than nothing 🙂 Thanks