Question : You manage an application deployed to a cloud service that utilizes an Azure Storage account. The cloud service currently uses the primary access key. Security policy requires that all shared access keys are changed without causing application downtime. Which three steps should you perform in sequence?
A. Update the cloud service configuration with the primary access key B. Regenerate the primary access key C. Regenerate the secondary access key D. Update the cloud service configuration with the secondary access key 1. A,B,C 2. A,B,D 3. Access Mostly Uused Products by 50000+ Subscribers 4. A,C,D
Correct Answer : Get Lastest Questions and Answer : Exp: The requirement is that ALL shared access keys need to be changed. To minimize downtime, you would first regenerate the second shared access key and use that and then regenerate the first shared access key, so that both are changed.
Question : You manage two datacenters in different geographic regions and one branch office. You plan to implement a geo-redundant backup solution. You need to ensure that each datacenter is a cold site for the other. You create a recovery vault. What should you do next?
A. Install the provider. B. Upload a certificate to the vault. C. Generate a vault key. D. Set all virtual machines to DHCP. E. Prepare System Center Virtual Machine Manager (SCVMM) servers. F. Create mappings between the virtual machine (VM) networks. 1. Install the provider.
5. Prepare System Center Virtual Machine Manager (SCVMM) servers.
Correct Answer : Get Lastest Questions and Answer : Exp: Configuring the agent with vault credentials is a relatively new process. Previous versions of the wizard prompted you to browse for a self-signed certificate, which performed the same function (vault identification and authentication).
Question : You manage a collection of large video files that is stored in an Azure Storage account. A user wants access to one of your video files within the next seven days. You need to allow the user access only to the video file, and then revoke access once the user no longer needs it. What should you do? 1. Give the user the secondary key for the storage account. Once the user is done with the file, regenerate the secondary key.
2. Create an Ad-Hoc Shared Access Signature for the Blob resource. Set the Shared Access Signature to expire in seven days.
4. Create an access policy on the blob. Give the external user access by using the policy. Once the user is done with the file, delete the policy.
Correct Answer : Get Lastest Questions and Answer : Exp: Shared Access Policy cannot be applied on Blob. It can only be applied on Container. (Probably a known fact here) Adhoc SAS key should not be applied to container. To revoke, the storage account key will need to be changed. (Not needed here) Between B and C: B seems right because it is only needed for 7 days so it is safe to generate adhoc on blob and share SAS key. This poses one limitation. To manually revoke, you need to change the Storage Account Key. There is no other way to "revoke access once user no longer needs it". C sounds better because B has the revoke constraint. By generating Shared Access Policy, you can define constraints (read-only for Blob) and time limit. To revoke access, simply delete the policy.