stale-park-1622
10/13/2019, 3:56 PMconst vpcHostedZone = vpc.id.apply(vpcId => aws.route53.getZone({ vpcId }));
**Error: invocation of aws:route53/getZone:getZone returned an error: invoking aws:route53/getZone:getZone: Either name or zone_id must be set**
I can not seem to obtain the zone information from the network load balancer either. I can see it on aws console the Hosted zone information associated with the network load balancer. How can I obtain this programatically?
thankswhite-balloon-205
10/13/2019, 4:14 PMzoneId
and dnsName
properties which should give you what you need to create an A record.stale-park-1622
10/13/2019, 4:33 PM