Hey there! Quick / simple question from a Pulumi b...
# getting-started
d
Hey there! Quick / simple question from a Pulumi beginner: what is the recommended scope of Pulumi projects? Should I put a Pulumi.yaml along my application code, or should I have another central repository with all things related to Pulumi?
p
@dazzling-angle-45051 I've taken a dual pronged approach to this. I have one main infra stack that deploys most of the architecture and then another smaller stack that deploys with my application code - this stack is mainly just the stuff relevant for deploying to Fargate. I don't know if this is the "best" way but it is working for me so far
d
Yeah that's something I had in mind as well, cool. Thanks!