Reputation: 21
Is there any way that I could update the default icon of the custom connector logic app in Azure? custom connector
Upvotes: 1
Views: 583
Reputation: 4129
Yes you can pretty much use an icon as per you need. All you need to do is add the iconUri
param to the properties of your connector from code view.
Example :
"properties": {
"description": My Custom Connector",
"displayName": "[variables('my_connectorName')]",
"iconUri": "[concat('https://', parameters('storageAccountName'),'.blob.core.windows.net/icon/logo-icon.png')]",
}
Upvotes: 1
Reputation: 11040
Yes.
In section 1. General of the Custom Connector configuration, there is the option to upload an icon.
This option is always available so you can update the image any time.
Upvotes: 2