This message was deleted.
# typescript
s
This message was deleted.
c
You should be able to pulumi.output(aws.route53.getZone(..)) Then you can access .id on the output without doing anything special
e
I do something like this:
Copy code
export const siteZone = aws.route53.Zone.get(
  'siteZone',
  aws.route53.getZone(
    { name: '<http://my.zone.com|my.zone.com>', privateZone: false }
  ).then(zone => zone.id),
  {}
);
165 Views