icy-football-94152
06/29/2021, 8:19 AMbrave-planet-10645
06/29/2021, 9:19 AMgorgeous-country-43026
06/29/2021, 10:13 AMconst ingressIpDone = pulumi.all({
name: ingress.ingressLoadbalancerIP.name,
resourceGroupName: cluster.nodeResourceGroupName
});
const ingressIP = ingressIpDone.apply(d => {
return azure.network.getPublicIP({
name: d.name,
resourceGroupName: d.resourceGroupName
}, { async: true }).then(ip => ip.ipAddress);
});
ingressIP
and it's an Output
that gets realized after the IP address is availableicy-football-94152
06/29/2021, 11:24 AMgorgeous-country-43026
06/29/2021, 11:33 AMicy-football-94152
06/29/2021, 11:35 AMgorgeous-country-43026
06/29/2021, 11:37 AMOutput.All
apparently