This message was deleted.
# general
s
This message was deleted.
b
You can't keep the
pulumi.*.yaml
files more than one level down, but you can certainly put them in the environments folder. Take a look at the project configuration reference page and look for the config setting
e
thanks @brave-planet-10645 i looked at the link and didn't fine an documentation regarding environment folder
b
So you'd have it as
config: environments
e
not sure how this option can help me can i use the
config
to keep different environments stack's in different folders?
b
What using the config property will give you is like this:
Copy code
└── project
    ├── __main__.py
    ├── Pulumi.yaml
    └── environments
        └── Pulumi.prod1.yaml
        ├── Pulumi.prod2.yaml
        ├── Pulumi.stg1.yaml
        └── Pulumi.stg2.yaml
e
cool!
but in this case how can i separate the prod stack's and the STG stacks into different folders?
f
Is there a way to use the
main:
property in the config to have a different starting point per stack?
b
Both of those have an answer of "I don't think you can"
But if you'd like to raise them as feature requests here: https://github.com/pulumi/pulumi
Then we can look at it
👍 1
e