https://pulumi.com logo
#golang
Title
r

red-football-97286

06/14/2021, 1:12 PM
How do you all structure your folders when using Go and Pulumi? I want to have a clean approach. Thanks.
s

sticky-bear-14421

06/15/2021, 11:52 AM
We have a folder structure like:
provision/bootstrap
/base
/kubernetes
/<additional_stacks>
Every stack gets into its own directory, as we use stacks not as in staging environments but as in separation of building blocks, all in the same project. No additional libraries of faned out code so far between stacks.
r

red-football-97286

06/15/2021, 12:48 PM
thank you!
3 Views