chilly-laptop-44574
03/26/2020, 3:43 AM└── infrastructure
└── network
├── dev
├── prod
└── stage
├── 01-host-project
│ ├── Pulumi.stage.yaml
│ └── Pulumi.yaml
└── 02-host-vpc
├── Pulumi.stage.yaml
└── Pulumi.yaml
So by default I am getting: <organisation>/02-host-vpc/stage
as a stack name. What is the suggested approach to have project name aligned to my directory structure? Ideally something like: <organisation>/infrastructure/network/02-host-vpc/stage
? Also I use this directory structure as a template for different projects/customers does it mean that for each separate deployment I need to have different <organisation>
?
Thanks!!😉faint-table-42725
03/26/2020, 4:02 AM<org>/<project>/<stack>
naming scheme, the org
refers to the Pulumi organization that owns that stack. So your company for example or yourself as an individual.chilly-laptop-44574
03/26/2020, 4:08 AMfaint-table-42725
03/26/2020, 5:46 AM