Hi folks, I'm new to pulumi and wondering how to i...
# general
s
Hi folks, I'm new to pulumi and wondering how to implement it on my team (using python), I appreciated the "Organizational Patterns - A Single Infra Repo" blog post but got some doubts: • Where should the
Pulumi.yaml
belong? • Every project directory (github, datadog...) requires a
pulumi new
? Otherwise, where I'm supposed to run the
new
and
up
commands?
@agreeable-eye-87399
a
Each of these directories is itself a Pulumi program.
so each of those is where the
Pulumi.yaml
exists (and where you run the
pulumi up
etc etc in the example, you have three pulumi programs -
apps
,
datadog
, and
github
s
@agreeable-eye-87399 Got it !! Thanks!!