AddCertificate_Orchestrator #406
-
I am having problems with issuing certificates. The function is generating the following error, and I can't work out why. I'm pretty sure it's permissions, but I have definitely set permissions everywhere as in the readme, but it's still not working Orchestrator function 'AddCertificate_Orchestrator' failed: The activity function 'UpdateSiteBinding' failed: "Failed to deserialize exception from TaskActivity: {"$type":"Microsoft.Azure.Management.WebSites.Models.DefaultErrorResponseException, Microsoft.Azure.Management.Websites","Request":{"$type":"Microsoft.Rest.HttpRequestMessageWrapper, Microsoft.Rest.ClientRuntime","Method":{"$type":"System.Net.Http.HttpMethod, System.Net.Http","Method":"PUT"},"RequestUri":"https://management.azure.com/subscriptions/c709ae91-145c-49e9-b36f-8687d20f4a01/resourceGroups/myapp/providers/Microsoft.Web/sites/myapp-app/slots/stage?api-version=2021-01-15","Properties":{"$type":"System.Collections.Generic.Dictionary`2[[System.String, System.Private.CoreLib],[System.Object, System.Private.CoreLib]], System.Private.CoreLib"},"Content":"{\r\n "properties": {\r\n "enabled": true,\r\n "hostNameSslStates": [\r\n {\r\n "name": "myapp-app-stage.azurewebsites.net",\r\n "sslState": "Disabled",\r\n "hostType": "Standard"\r\n },\r\n {\r\n "name": "estage.myapp.co.uk",\r\n "sslState": "SniEnabled",\r\n "thumbprint": "881A4C668543DA8DDDADA118BB7C25873FC06887",\r\n "toUpdate": true,\r\n "hostType": "Standard"\r\n },\r\n {\r\n "name": "mstage.myapp.co.uk",\r\n "sslState": "SniEnabled",\r\n "thumbprint": "881A4C668543DA8DDDADA118BB7C25873FC06887",\r\n "toUpdate": true,\r\n "hostType": "Standard"\r\n },\r\n {\r\n "name": "stage.clubmate.co.uk",\r\n "sslState": "SniEnabled",\r\n "thumbprint": "881A4C668543DA8DDDADA118BB7C25873FC06887",\r\n "toUpdate": true,\r\n "hostType": "Standard"\r\n },\r\n {\r\n "name": "stage.myapp.co.uk",\r\n "sslState": "SniEnabled",\r\n "thumbprint": "881A4C668543DA8DDDADA118BB7C25873FC06887",\r\n "toUpdate": true,\r\n "hostType": "Standard"\r\n },\r\n {\r\n "name": "myapp-app-stage.scm.azurewebsites.net",\r\n "sslState": "Disabled",\r\n "hostType": "Repository"\r\n }\r\n ],\r\n "serverFarmId": "/subscriptions/c709ae91-145c-49e9-b36f-8687d20f4a01/resourceGroups/myapp/providers/Microsoft.Web/serverfarms/myapp-App",\r\n "reserved": true,\r\n "isXenon": false,\r\n "hyperV": false,\r\n "siteConfig": {\r\n "numberOfWorkers": 1,\r\n "linuxFxVersion": "DOTNETCORE|6.0",\r\n "acrUseManagedIdentityCreds": false,\r\n "alwaysOn": true,\r\n "http20Enabled": false,\r\n "functionAppScaleLimit": 0,\r\n "minimumElasticInstanceCount": 1\r\n },\r\n "scmSiteAlsoStopped": false,\r\n "clientAffinityEnabled": false,\r\n "clientCertEnabled": false,\r\n "clientCertMode": "Required",\r\n "hostNamesDisabled": false,\r\n "customDomainVerificationId": "25C5D3F56C45B4E5A395C0B42FB4090CDE8A76770C36E78C91E8B5B68ECE420A",\r\n "containerSize": 0,\r\n "dailyMemoryTimeQuota": 0,\r\n "httpsOnly": true,\r\n "redundancyMode": "None",\r\n "storageAccountRequired": false,\r\n "keyVaultReferenceIdentity": "SystemAssigned",\r\n "virtualNetworkSubnetId": "/subscriptions/c709ae91-145c-49e9-b36f-8687d20f4a01/resourceGroups/CoreServices/providers/Microsoft.Network/virtualNetworks/CoreVNet/subnets/default"\r\n },\r\n "kind": "app,linux",\r\n "location": "UK South"\r\n}","Headers":{"$type":"System.Collections.Generic.Dictionary |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Please grant write permission to VNET as indicated in the error message. Due to the SDK used, it seems that write permission is required for VNET integration. |
Beta Was this translation helpful? Give feedback.
Please grant write permission to VNET as indicated in the error message. Due to the SDK used, it seems that write permission is required for VNET integration.