Another question: Is there a reference to best pra...
# python
e
Another question: Is there a reference to best practice for how to structure pulumi code? E.g. My team runs several (dozens) environments, e.g. 30 sandbox environments for various feature teams, a few staging environments, a dozen production envs. In Terraform I have two top-level folders for
modules
and
environments
, and then I put everything environment-specific into a
terraform.tfvars
, and I write lots of modules such as
eks-cluster
,
eks-workers
,
auth-map
, etc.