This message was deleted.
# azure
s
This message was deleted.
n
I need to do this in a pipeline later this month. Did you get it figured out?
f
Nope. We are considering parking this. Build up the FD manually and never think of it again
r
@few-processor-89505 I made these two helpers to generate the IDs, looks like the format is the same, for the default load balancing settings I used the name "default" and right now I just passed "disabled" as the name argument for the health check id and that's working right now.
Copy code
private Output<string> GetLoadBalancingSettingId(string fdName, string settingsName)
        => Output.Format($"/subscriptions/{_args.SubscriptionId}/resourceGroups/{_args.ResourceGroupName}/providers/Microsoft.Network/frontdoors/{fdName}/loadBalancingSettings/{settingsName}");

    private Output<string> GetHealthProbeSettingId(string fdName, string settingsName)
    => Output.Format($"/subscriptions/{_args.SubscriptionId}/resourceGroups/{_args.ResourceGroupName}/providers/Microsoft.Network/frontdoors/{fdName}/healthProbeSettings/{settingsName}");
(sorry only just realised that this is a month old - could have sworn it was still August 😄 )