Hello i have 2 stacks 1) to create s3 bucket 2) to...
# typescript
r
Hello i have 2 stacks 1) to create s3 bucket 2) to create a lambda function package for lambda function is available in s3 bucket is it possible to get s3 bucket id from stack1 to stack2 ?
l
Absolutely. The concept is called stack references. The id is exported from one stack and imported into the other. The documentation on pulumi.com includes many examples.
☝️ 1