When doing a `StackReference` for an s3 bucket, ho...
# aws
t
When doing a
StackReference
for an s3 bucket, how do you reference the other stack? I have an example where i have one bucket but two folders: s3://bucket/vpc/.pulumi/stacks/ s3://bucket/kubernetes/.pulumi/stacks/ I want to reference the outputs from the vpc folder in my kubernetes folder code. I've tried various ways, mostly like:
network_stack_ref = pulumi.StackReference("vpc/dev_vpc")
with no luck
b
you can’t at this time. all the projects need to be in the same directory
t
makes sense. thank you!