better-rainbow-14549
05/22/2019, 2:46 PMnew azure.dns.NsRecord(`${args.ZoneArgs.name}`, {
name: args.ZoneArgs.name,
resourceGroupName: parentZone.resourceGroupName,
zoneName: parentZone.name,
record: pulumi.output(dnsZone.nameServers).apply(x => x.map(y => ({ nsdname: y }))),
ttl: args.Ttl
});
but it always wants to update the resource - I suspect azure is shuffling the records order around to load balance the servers in some way, it's only ever the order that changes. Is the best workaround just to sort them?white-balloon-205
better-rainbow-14549
09/03/2019, 4:17 PM