AZ-400 · Question #597
You have an Azure DevOps release pipeline named Pipeline1. You plan to use Pipeline1 to deploy infrastructure as code (IaC) resources to Azure. You need to create templates to define which resources t
The correct answer is C. XML only. When using Azure DevOps release pipelines for infrastructure as code (IaC) deployments, the recommended template formats are Azure Resource Manager templates (ARM templates) and Bicep. These Azure-native tools facilitate deploying infrastructure declaratively, meaning you define
Question
Options
- AAzure Resource Manager (ARM) only
- BBicep only
- CXML only
- DAzure Resource Manager (ARM) and Bicep only
- EAzure Resource Manager (ARM), Bicep, and XML
How the community answered
(69 responses)- A6% (4)
- B1% (1)
- C72% (50)
- D16% (11)
- E4% (3)
Explanation
When using Azure DevOps release pipelines for infrastructure as code (IaC) deployments, the recommended template formats are Azure Resource Manager templates (ARM templates) and Bicep. These Azure-native tools facilitate deploying infrastructure declaratively, meaning you define what you want to deploy without specifying how to do it. Bicep is a domain-specific language that is a simpler and more readable alternative to ARM templates, which are written in JSON. Additionally, you can use Terraform if you prefer. Note: Deploy IaC on Azure Azure provides native support for IaC via the Azure Resource Manager model. Teams can define declarative ARM templates using JSON syntax or Bicep to specify the infrastructure required to deploy solutions. Third-party solutions like Terraform through specific Azure providers are also https://learn.microsoft.com/en-us/devops/deliver/what-is-infrastructure-as-code
Topics
Community Discussion
No community discussion yet for this question.