Do people keep their infrastructure as code with t...
# general
a
Do people keep their infrastructure as code with their application or in a separate infrastructure repo?
v
We have created a python library over pulumi and use the library in our application). The library is in our repository . [we are using python3]
👍 2
a
Interesting, is this standard practice?
f
.Net land here. We have projects in the same repo but not opened in the same solution. So same repo but code is separate
d
We created a library with useful functions / ideas in it and make it available to devs, as a way to wrap up the complexity. Still early stages for us.
And we also find that its really useful to throw infra code into the same repo as the application in addition to the C# library we created.