I want to deploy a Cloud Service on a subnet.
To do this, I have set the configuration file like this :
<?xml version="1.0" encoding="utf-8"?>
<ServiceConfiguration ...>
<Role name="WebRole1">
...
</Role>
<NetworkConfiguration>
<VirtualNetworkSite name="MyVirtualNetworkName" />
<AddressAssignments>
<InstanceAddress roleName="WebRole1">
<Subnets>
<Subnet name="Front" />
</Subnets>
</InstanceAddress>
</AddressAssignments>
</NetworkConfiguration>
</ServiceConfiguration>
But, after the deployment, if I look the subnet on the Azure Portal, I don't see the Cloud Service :
Should I do something else?