https://pulumi.com logo
Title
f

fresh-lifeguard-12682

11/09/2020, 2:17 AM
How can I configure a hybrid connection in an app service, I have been trying to do this but I can’t figure out how to get the RelayId I created this post just in case you want to follow up https://stackoverflow.com/questions/64745249/how-to-find-existing-hybrid-connection-relayid-using-pulumi-azure
var webApiHybridConnection = new HybridConnection(
    hybridConnectionName,
    new Pulumi.Azure.AppService.HybridConnectionArgs
    {
        AppServiceName = appServiceName,
        ResourceGroupName = resourceGroupName,
        RelayId = "what goes here?",
        Hostname = "",
        Port = 443,
        SendKeyName = $"{_nameSet.AppServiceName(new ServiceName(ServiceName))}-sk",
    });
t

tall-librarian-49374

11/09/2020, 6:32 AM
Do you have a
azure.relay.Namespace
? I would expect you need its
id
.
f

fresh-lifeguard-12682

11/09/2020, 3:36 PM
Yes
t

tall-librarian-49374

11/09/2020, 6:52 PM
So did that ID work?
f

fresh-lifeguard-12682

11/09/2020, 7:25 PM
No.
I had to build it myself
RelayId = $"/subscriptions/{subscriptionId}/resourceGroups/{hybridConnectionResourceGroupName}/providers/Microsoft.Relay/namespaces/{hybridConnectionNamespaceName}/hybridConnections/{hybridConnectionName}",