You manage a cloud service that has a web role named fabWeb. You create a virtual network named
fabVNet that has two subnets defined as Web and Apps.
You need to be able to deploy fabWeb into the Web subnet.
What should you do?
A.
Modify the service definition (csdef) for the cloud service.
B.
Run the Set-AzureSubnet PowerShell cmdlet.
C.
Run the Set-AzureVNetConfig PowerShell cmdlet.
D.
Modify the network configuration file.E. Modify the service configuration (cscfg) for the fabWeb web role.
Explanation:
Azure Service Definition Schema (.csdef File)
The service definition file defines the service model for an application. The file contains the definitions for
the roles that are available to a cloud service, specifies the service endpoints, and establishes
configuration settings for the service.
Correct answer Modify the service configuration (cscfg) for the fabWeb web role.
Correct answer D
Azure Service Configuration Schema (.cscfg File)
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.
https://msdn.microsoft.com/library/en-us/Ee758710.aspx
Correct Answer is E (D and E are on the same line…)
Correct Answer is Modify the service configuration (cscfg) for the fabWeb web role by Taxcup.com