MicrosoftDocs / azure-docs

Open source documentation of Microsoft Azure
https://docs.microsoft.com/azure
Creative Commons Attribution 4.0 International
10.19k stars 21.33k forks source link

Support for private endpoints is half baked #72322

Closed hecflores closed 3 years ago

hecflores commented 3 years ago

Based on the documentation it makes sense but it still raises a question.

I created the required private endpoints using our autromation using ARM templates with the following coding snippet:

        {
            "name": "[concat(parameters('factoryName'), '/default/{Private Endpoint Name}')]",
            "type": "Microsoft.DataFactory/factories/managedVirtualNetworks/managedPrivateEndpoints",
            "apiVersion": "2018-06-01",
            "properties": {
                "privateLinkResourceId": "[parameters('VirtualNetwork_{Private Endpoint Name}_privateLinkResourceId')]",
                "groupId": "[parameters('VirtualNetwork_{Private Endpoint Name}_groupId')]"
            },
            "dependsOn": [
                "[concat(variables('factoryId'), '/managedVirtualNetworks/default')]",
                "[variables('factoryId')]"
            ]
        }

This was done with the following services:

Provisioning was successful, but the following services don't get approved automatically:

If I try to approval through UI manuelly I get the following error: image

If I try to approve through PowerShell, I get the following error: image

My question is this:

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

KranthiPakala-MSFT commented 3 years ago

@hecflores Thanks for reaching out! We have assigned the issue to the content author to further review the ask and provide an update as appropriate.

@nabhishek - Could you please have a look at the above ask? - Thanks

jonburchel commented 3 years ago

Hi @hecflores, and thanks for your question. This root cause could be due to configuration or conditions specific to your environment. Our support team can help investigate it further. Please open a new ticket by navigating to the Azure portal page for your data factory and then selecting New support request under Support + troubleshooting:

image

Since this this is an issue with the product and not the documentation per se, I will close this out now, but if you have further questions you can continue the discussion here too.

please-close