if (config.dnsUpdateEnabled) { const dnsEntry ...
# general
g
if (config.dnsUpdateEnabled) { const dnsEntry = new azure.dns.ARecord("mydns", { name:
${pulumi.getStack()}.myservice
, resourceGroupName: config.dnsResourceGroup, zoneName: config.dnsZoneName, records: nginxControllerService.spec.apply(spec => spec.externalIPs), ttl: 3600 } ); }