What is the recommended way of organising the pulu...
# general
b
What is the recommended way of organising the pulumi code? Right now I am doing this (in Go). All this does is setup EKS cluster:
Copy code
- core
- aws-eu-west-1
  - Pulumi.yaml
  - Pulumi.dev.yaml
  - Pulumi.prod.yaml
  - main.go // which just imports stuff from `core` and passes required config
- aws-eu-west-2
  - Pulumi.yaml
  - Pulumi.dev.yaml
  - Pulumi.prod.yaml
  - main.go
...
• I believe above creates one Pulumi project per region. • to setup / modify cluster, I cd into the region directory and run relevant pulumi commands