Azure Automation (ARM Templates): First Set of Questions on ARM Templates
- Azure Resource Manager Templates
- What are ARM Templates?
- An Automation platform files, where you can define the configuration to deploy the different types of resources in Azure.
- In Which language ARM Templates will be written?
- JSON
- How many ways we can deploy ARM Templates?
- What are the elements of ARM Template?
- In the ARM Template elements, which are mandatory and which are not mandatory and explain the same?
- How many types of templates we can develop according to supported format?
- How many types of templates we can develop according to requirement?
- What are the two JSON files required to work with ARM Templates?
- can we deploy ARM Resources with only Template.JSON?
- can we deploy ARM Resources with only Parameters.JSON?
- List out the mandatory files those are required to deploy a resource using ARM Templates?
- Should we use the same name for Template and Parameters for those or we can do change according to our requirement?
- What are the Tools those we can use to develop the ARM Templates?
- In Paramaeters.JSON file, what is the limit to define the no of parameters to be used?
- Can i use parameters in Template.json which are not declared in Parameters.JSON?
- What is the parameter declaration and parameters definition in ARM Templates?
- What is the importance of "SCHEMA" element in ARM Templates?
- What is the importance of "CONTENT VERSION" element in ARM Templates?
- What is the importance of "PARAMETERS" element in ARM Templates?
- What is the importance of "VARIABLES" element in ARM Templates?
- What is the importance of "RESOURCES" element in ARM Templates?
- What is the importance of "OUTPUT" element in ARM Templates?
- What is the importance of "API PROFILE" element in ARM Templates?
- What is the importance of "FUNCTIONS" element in ARM Templates?
- Tell me the types of environments that you worked on to develop the template for your Product/Service?
- Explain the process involved in developing the template to be deployed in to multiple environments ?
- Explain the process to deploy multiple resources in Azure according to below requirement?
- A) To deploy the same kind of resources to same Resource group?
- B) To deploy the different kind of resources to same Resource group?
- C) To deploy the same kind of resources to different Resource Group's?
- D) To deploy the different kind of resources to different Resource Group's?
- What is the limit to deploy the no of resources per ARM template?
- What are Nested templates?
- Explain the process involved in developing the Nested ARM Templates?
- What is the limit of no of templates to be nested in Nested Templates Approach?
Comments
Post a Comment