mediummultiple choiceObjective-mapped

A Windows Azure VM must download configuration data from Azure Key Vault during first boot. Security policy forbids storing passwords, certificates, or client secrets on the VM. What should the administrator configure?

Question 1mediummultiple choice
Full question →

A Windows Azure VM must download configuration data from Azure Key Vault during first boot. Security policy forbids storing passwords, certificates, or client secrets on the VM. What should the administrator configure?

Answer choices

Why each option matters

Good practice is not just finding the correct option. The wrong answers often show the exact trap the exam wants you to fall into.

A

Distractor review

Create a service principal and place its secret in the VM's startup script.

This requires a long-lived secret on the VM, which violates the security requirement and increases exposure.

B

Best answer

Enable a system-assigned managed identity on the VM and grant it Key Vault access.

A system-assigned managed identity gives the VM an automatically managed identity with no stored credentials. The VM can authenticate to Key Vault through Azure AD and receive only the permissions it needs. Because the identity is tied to the VM lifecycle, it is ideal for first-boot configuration tasks that must avoid passwords, certificates, and client secrets.

C

Distractor review

Attach a custom script extension that embeds the Key Vault password in plain text.

Embedding a password in a script creates exactly the credential storage problem the question says to avoid.

D

Distractor review

Use an Entra ID user account and sign in interactively after deployment.

Interactive sign-in is not suitable for unattended startup tasks and does not provide automation-friendly access.

Common exam trap

Common exam trap: NAT rules depend on direction and matching traffic

NAT is not only about the public address. The inside/outside interface roles and the ACL or rule that matches traffic are just as important.

Technical deep dive

How to think about this question

NAT questions usually test address translation, overload/PAT behaviour, static mappings and whether the right traffic is being translated. Read the interface direction and address terms carefully.

KKey Concepts to Remember

  • Static NAT maps one inside address to one outside address.
  • PAT allows many inside hosts to share one public address using ports.
  • Inside local and inside global describe the private and translated addresses.
  • NAT ACLs identify traffic for translation, not always security filtering.

TExam Day Tips

  • Identify inside and outside interfaces first.
  • Check whether the scenario needs static NAT, dynamic NAT or PAT.
  • Do not confuse NAT matching ACLs with normal packet-filtering intent.

Related practice questions

Related AZ-104 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

More questions from this exam

Keep practising from the same exam bank, or move into a focused topic page if this question exposed a weak area.

FAQ

Questions learners often ask

What does this AZ-104 question test?

Static NAT maps one inside address to one outside address.

What is the correct answer to this question?

The correct answer is: Enable a system-assigned managed identity on the VM and grant it Key Vault access. — A system-assigned managed identity is the best fit because it lets the VM authenticate to Azure services without any embedded secrets. After enabling the identity, you can authorize it to read from Key Vault by using the appropriate access policy or RBAC role. This approach is designed for secure automation and avoids the operational burden of rotating passwords or certificates on the guest OS. Why others are wrong: The other choices all introduce credentials or manual interaction, which conflicts with the requirement. A service principal secret or plain-text script is insecure, and an Entra ID user account is not practical for unattended boot-time access. The key distinction is that managed identities provide credential-free authentication for Azure resources.

What should I do if I get this AZ-104 question wrong?

Then try more questions from the same exam bank and focus on understanding why the wrong options are tempting.

Discussion

Loading comments…

Sign in to join the discussion.