``` const policy = pulumi.all({ arn1: thing1.a...
# general
s
Copy code
const policy = pulumi.all({
    arn1: thing1.arn,
    arn2: thing2.arn
}).apply(reified => {
    // reified.arn1 and reified.arn2 are unwrapped values here
});