Reputation: 13367
I'm trying to setup Continuous Deployment from Visual studio online to Azure for my cloud service project (ccproj)
Inside VSO, I created an 'Azure classic service endpoint', that uses Certificate based connection. (By restriction I can not use the 'credentials'.)
When verifying the connection, I get a exception message saying:
Invalid Azure Management certificate. Exception Message: Cannot find the requested object.**
Question is:
What type of information do I need to fill in inside the Managment Certificate textbox field?
Upvotes: 0
Views: 491
Reputation: 33728
Refer to these steps to get certificate:
The publishsettings file content like this:
<?xml version="1.0" encoding="utf-8"?>
<PublishData>
<PublishProfile
SchemaVersion="2.0"
PublishMethod="AzureServiceManagementAPI">
<Subscription
ServiceManagementUrl="https://management.core.windows.net"
Id="[Subscription Id]"
Name="[Subscription Name]"
ManagementCertificate="[Management Certificate]" />
</PublishProfile>
</PublishData>
Upvotes: 2