0
votes

I need deploy an Azure service. Inside the .csdef file, I need define an input endpoint which I did (following here:https://docs.microsoft.com/en-us/azure/cloud-services/cloud-services-enable-communication-role-instances):

<Endpoints>
  <InputEndpoint name="StandardWeb" protocol="http" port="80" localPort="80" />
</Endpoints>

The problem is I need deploy this package to 5 different web service and the "InputEndpoint"s are different for the 5 web service.

My question is do I need have 5 .csdef for the deployment? Is there any way to make use of the .cscfg ?

Thanks

1

1 Answers

0
votes

This is not possible. Endpoints are specified in Cloud Service Definition files and not Cloud Service Configuration files because endpoints must be identical for all instances participating in a cloud service.

I need deploy this package to 5 different web service

You will need to modify your Cloud Service for each different Cloud Service. Is there a reason they must be different?