Azure / Synapse-workspace-deployment

MIT License
27 stars 34 forks source link

Unable to deploy MPE to private link service ( ` groupid = "" ` ) #95

Open w0ut0 opened 9 months ago

w0ut0 commented 9 months ago

We recently introduced a MPE pointing to a private link service (to a load balancer in front of AKS). The MPE definition looks like this in git:

{
    "name": "my-mpe",
    "properties": {
        "privateLinkResourceId": "/subscriptions/<mysubscription>/resourceGroups/<my_resourcegroup>/providers/Microsoft.Network/privateLinkServices/<my-private-link-service>",
        "groupId": "",
        "fqdns": [
            "myfqdn.example.com"
        ]
    }
}

When trying to deploy this mpe, I get the error

"StatusCode":400,"Message":"Invalid Request"

I suspect this might be because of parsing/validation of the groupId (which is in fact correct, and needs to be empty)?