Hello! I'm using pulumi typescript and I need to a...
# general
p
Hello! I'm using pulumi typescript and I need to access a configuration cross stacks. I already use StackReferences in my project but I noticed that the configs are not accessible cross stacks. Is there a way to access the configs
pulumi.Config
cross stacks? If not, is there an option to go around it in a clean way?
b
if you export the value
pulumi.export
it should be accessible, did you try that?
p
Typescript does not have a
pulumi.export
(or I cannot find it in the docs). Could you please point me to the docs where I could read about it?
b
in typescript it's
export const variable
p
ok, thank you!