Posts

Showing posts from April, 2019

Azure Administration : Basic Interview Questions on Azure Environment

Azure Interview Questions (Basic Azure Environment) 1) is it possible to create an account in azure with out creating an azure active directory? A) yes, the reason is while creating an account in azure itself, azure is designed to create a azure active directory along with azure account creation. 2) is it possible to have an account with out having azure active directory? A) No, the reason is every azure account should be associated with some azure active directory. if you want to create an account with out creating azure active directory, we can achieve this... by creating  an azure account in the already created azure active directory. 3) how much is the charge to create an azure active directory per month? A) for lifetime it is free. you can create the users, groups as per your requirement and it is completely free. 4) under which cloud service Azure Active Directory comes? A) IDAAS (Identity and Access Management As A Service or Identity and Directory Manag...

Azure Automation (ARM Templates): Answers for First Set of ARM Templates Questions (Basic Questions)

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 (JSON is a data format) How many types of templates we can develop according to supported format? we can deploy the ARM Templates in two ways. 1) For resource group deployments https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json# 2) For Subscription deployments https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json# What are the components of ARM Template? S C P V R O S refers Schema C refers ContentVersion P refers Parameters V refers Variables R refers Resources O refers Output In the ARM Template elements, which are mandatory and which are not mandatory and explain the same? In S C P V R O  Schema, ContentVersion, Resources are mandatory ...

Azure Automation (ARM Templates) : Answers for First Set of ARM Templates Questions (Little Process Oriented Questions)

Azure Resource Manager Templates Tell me the types of environments that you worked on to develop the template for your Product/Service? It differs according to environment that you are working. Basically, the environments will be like  Prod, Test, QA, UAT (User Acceptance Test),  Develop and so on......,  according to the naming convention that defined in Project Implementation Planning. 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 N...

Azure Automation (ARM Templates): Second Set of Questions on ARM Templates....

Azure Resource Manager Templates: Suppose you are writing an ARM template, does it need to compliant with any? What is the importance of Content version in the ARM Template? What are the permitted values as part of Parameters  Block? What are the permitted values as part of Resource  Block? What are the permitted values as part of Variables  Block? What are the permitted values as part of Output Block? What are the points to be remembered  while developing an ARM Template? What are the point to be remembered while deploying an ARM Template? What kind of preliminary checks to be performed while deploying an ARM Template? What are the prerequisites and points to be remembered while working with ARM Templates? What is the benefit if we use functions within the ARM Templates? What are the points to be remembered when we are writing functions in the ARM Templates? What are the ways to develop a Nested ARM Templates? What are the procedures t...