when using the object store backend is not possible to use the same (for example) s3 bucket to manage different projects with the same stack name? I am getting errors cause the stacks, even if in different projects, are called the same
to visualize the issue:
• 1 s3 bucket
root-folder
|
|___network
| |__ Pulumi.yaml
| |__ Pulumi.dev.yaml
| |__ main.py
|
|___computing
|__ Pulumi.yaml
|__ Pulumi.dev.yaml
|__ main.py
b
billowy-army-68599
02/23/2023, 4:56 PM
self managed backends don’t support project level scope yet, so you’ll have to name youe stacks <project>.<stackname> such as
<http://computing.dev|computing.dev>
n
nutritious-shampoo-16116
02/23/2023, 4:59 PM
gotcha, thanks!
g
gorgeous-lunch-7514
02/24/2023, 4:31 PM
i was actually looking to get an answer for this too, thanks!