You manage a cloud service named fabrikam Reports that is deployed in an Azure data
center.
You deploy a virtual machine (VM) named fabrikamSQL into a virtual network named
fabrikamVNet.
FabrikamReports must communicate with fabrikamSQL.
You need to add fabrikam Reports to fabrikamVNet.
Which file should you modify?
A.
the network configuration file for fabrikamVNet
B.
the service definition file (.csdef) for fabnkamReports
C.
the service definition file (.csdef) for fabrikamSQL
D.
the service configuration file (.cscfg) for fabrikamReports
E.
the service configuration file (.cscfg) fabrikamSQL
Explanation:
http://msdn.microsoft.com/en-us/library/azure/ee758711.aspx
should be D
see https://outhereinthefield.wordpress.com/2014/05/23/adding-a-windows-azure-cloud-service-to-virtual-network/
it is confusing but agree on D. you can edit service config file and add details of subnet and Vnet. after that SQL VM will autometically communicate
https://azure.microsoft.com/en-us/documentation/articles/cloud-services-model-and-package/
The service configuration file specifies the number of role instances to deploy for each role
in the service, the values of any configuration settings, and the thumbprints for any
certificates associated with a role. If the service is part of a Virtual Network, configuration
information for the network must be provided in the service configuration file, as well as in
the virtual networking configuration file. The default extension for the service configuration
file is .cscfg. http://www.taxcup.com