Or do I need to `resolve` the two promises with so...
# typescript
s
Or do I need to
resolve
the two promises with something like:
Copy code
pulumi.all([account, region]).apply([accountId, regionName)) => {
... Generate policy document here
});
I thought this is what the
.then()
is for