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