It looks like we are now able to authenticate with Azure AD with a SQL Server connector in a Logic App, which is great!
Here is a screenshot of the new connector dropdown.
My problem is when I go to change the name of this connector via an ARM template, I no longer have the Azure AD Integrated option when I select 'Edit Api Connection' for that connection in Azure Api connection blade, it looks like the SQL Server authentication connection.
Api Connection with Azure AD Integrated when creating the connection from a Logic App
Api Connection when creating it from an ARM template
From what I can see and have tried, when I export the templates from Azure they look identical. Here are the examples.
Template Export from Azure AD Integrated Connection:
"resources": [
{
"type": "Microsoft.Web/connections",
"apiVersion": "2016-06-01",
"name": "[parameters('azure_ad_authenticated_connection')]",
"location": "<valid_location>",
"properties": {
"displayName": "{<db_name>} {<db_server_name>}",
"customParameterValues": {},
"api": {
"id": "[concat('/subscriptions/<subscription_id>/providers/Microsoft.Web/locations/<location>/managedApis/', parameters('connections_sql_name'))]"
}
}
}
]
Template Export from a SQL Server authenticated connection:
"resources": [
{
"type": "Microsoft.Web/connections",
"apiVersion": "2016-06-01",
"name": "[parameters('sql_server_auth_connection')]",
"location": "<valid_location>",
"properties": {
"displayName": "<display_name>",
"customParameterValues": {},
"api": {
"id": "[concat('/subscriptions/<subscription_id>/providers/Microsoft.Web/locations/<valid_location>/managedApis/sql')]"
}
}
}
]
Has anyone been able to successfully create an Azure AD Integrated connection from an ARM template?