late-chef-72896
12/03/2021, 3:21 PMgetOrganization
function and to start simple I want to get the org ID. Based on how that is used in this example https://www.pulumi.com/registry/packages/aws/api-docs/organizations/getorganization/#sns-topic-that-can-be-interacted-by-the-organization-only I assumed I could use this
const org = aws.organizations.getOrganization({});
console.log(org.id)
billowy-army-68599
12/03/2021, 3:23 PMpulumi.log
to log engine values, if you want to use console.log
you'll need to use an apply
late-chef-72896
12/03/2021, 3:26 PM