CSCP Exam QuestionsBrowse all questions from this exam

CSCP Exam - Question 189


You plan to deploy several Azure virtual machines that will run Windows Server 2019 in a virtual machine scale set by using an Azure Resource Manager template.

You need to ensure that NGINX is available on all the virtual machines after they are deployed.

What should you use?

Show Answer
Correct Answer: D

To ensure that NGINX is available on all the virtual machines after they are deployed using an Azure Resource Manager template, you should use a Desired State Configuration (DSC) extension. Desired State Configuration (DSC) allows you to define the desired state for your infrastructure in configuration files. By using the DSC extension, you can automate the process of installing and configuring NGINX on all the virtual machines in the scale set, ensuring consistency and compliance with the desired state across all instances.

Discussion

19 comments
Sign in to comment
ki01Option: A
Dec 18, 2023

A. Session persistence to Client IP is the correct one

binhdortmund
Feb 16, 2024

but for all another its D

chiquito
Jun 26, 2023

Please, clean this dump. Remove duplicate, triplicate questions. This is not a new question. Update with real new questions. Thank you!

marioZuo
Jul 31, 2023

Another old friend

bobothewisemanOption: A
Mar 23, 2024

lected Answer: A A. Session persistence to Client IP is the correct one

alsmk2
Aug 15, 2024

100% this. It's the answer to everything.

PTark
Sep 13, 2023

Come on moderator do your job and clean these duplicates out please.

SDiwanOption: D
Feb 8, 2024

DSC extension

yusuf_ebOption: D
May 7, 2024

this question is repeated, D is the only (useful) possible answer

KM
Sep 1, 2023

I have seen this question more than 3 times. If they remove the duplicate question, then we need to focus only on the real question and not on the duplicate questions.

hasansamsamiOption: D
Feb 26, 2024

Using a DSC extension within the ARM template provides the most efficient and automated way to ensure NGINX is available on all your Windows Server 2019 VMs in the scale set during deployment

bobothewisemanOption: D
Mar 18, 2024

Should be D.

jacksparrowtabaliOption: D
Mar 28, 2024

It should not be Publish-AZVMDsc (wrong) instead it should be Import-AZVMDsc(correct)

_Paul_Option: D
May 9, 2024

This question is repeated, D is the only (useful) possible answer.

KM
Sep 1, 2023

The Answer to this question is: the Publish-AzVMDscConfiguration cmdlet. https://learn.microsoft.com/en-us/azure/virtual-machines/extensions/dsc-overview he Publish-AzVMDscConfiguration cmdlet takes in a configuration file, scans it for dependent DSC resources, and then creates a .zip file. The .zip file contains the configuration and DSC resources that are needed to enact the configuration. The cmdlet can also create the package locally by using the -OutputArchivePath parameter. Otherwise, the cmdlet publishes the .zip file to Blob Storage, and then secures it with an SAS token.

gachocop3Option: D
Feb 25, 2024

D. DSC, not sure why people are picking publish

JuanZOption: D
Jun 14, 2024

To ensure that NGINX is available on all the virtual machines after they are deployed using an Azure Resource Manager template, you should use a Desired State Configuration (DSC) extension. in Chat GPT

090200f
Jun 14, 2024

DSC answer is D

SrWalk49
Aug 19, 2024

There are two versions of this question. D Is correct for this one.

prochrist2Option: D
Dec 3, 2024

https://www.examtopics.com/discussions/microsoft/view/120891-exam-az-104-topic-5-question-143-discussion/

Azure20Option: D
Dec 17, 2024

For existing VMs, you need to add the extension first then "Configuration Modules or Script". https://learn.microsoft.com/en-us/azure/virtual-machines/extensions/dsc-overview#azure-portal-deployment For new VMs with ARM template, you need to add the extension definition and include the configuration script within the extension definition. https://learn.microsoft.com/en-us/azure/virtual-machines/extensions/dsc-template#bicep-example-for-a-vm