To implement infrastructure as code for your Azure solutions, use Azure Resource Manager (ARM) templates. The template is a JavaScript Object Notation (JSON) file that defines the infrastructure and configuration for your project. The template uses declarative syntax, which lets you state what you intend to deploy without having to write the sequence of programming commands to create it. In the template, you specify the resources to deploy and the properties for those resources.
- Template-driven
- Declarative
- Idempotent
- Multi-service
- Multi region
- Extensible
The complete mode deletes any objects that do not appear in the template and the resource group you are deploying to. In this scenario, what you get is the ability to know that whenever you deploy you will be in exactly the same state.
The incremental deployment uses the template to add additional resources to an existing resource group. The benefit of this is that you don’t lose any infrastructure that is missing from the template but the downside is that you will have to clear up any old resources some other way.
The ARM API deploys resources to Azure, but doesn’t deploy code onto those resources. For example you can use ARM to deploy a virtual machine with SQL Server already installed but you can’t use ARM to deploy a database from an SSDT DacPac. To save time when designing solutions, it is important to understand that ARM API is used simply for resources and we need to use some other technology such as DSC or PowerShell to manage the deployments onto the infrastructure once it is deployed.
Within your template, you can write template expressions that extend the capabilities of JSON. These expressions make use of the functions provided by Resource Manager.
- Parameters - Provide values during deployment that allow the same template to be used with different environments.
- Variables - Define values that are reused in your templates. They can be constructed from parameter values.
- User-defined functions - Create customized functions that simplify your template.
- Resources - Specify the resources to deploy.
- Outputs - Return values from the deployed resources.
THIS CONTAINS ALL THE FILES FOR CLOUD COMPUTING PROJECT AND ASSIGNMENTS FOR GROUP 5 .
ALL THE THREE FILES - chooseVM.txt , cpuALERT.txt , VnetWithSubnets.txt are the JSON files of the ARM templates.
ThE video of our presentation group5_CC_presentation.mp4 is available at -
https://drive.google.com/file/d/10mjqGMgJD-XuM3YQaxJiQ9d3K4VzScTO/view?usp=sharing
The presentation is named as - CloudComputingProject_ArmTemplates.pdf and is also available here at -
https://drive.google.com/file/d/15-ga1svTDzWNwTtZ5zq_ai2jxFscTcwS/view?usp=sharing
The report/paper is named as - report.pdf and is also available at -
https://drive.google.com/file/d/1c2YE4DI5pL9bHdDMryxYSjBKr1OKv_Xy/view?usp=sharing
Just in case if required all the files are also available at -
this location - https://drive.google.com/drive/folders/1HBAL_kyZLYGplvvuR2f8a6oYyFZfSw_S?usp=sharing
Thank You so much -
PRIYANK SONKIYA 17DCS009.
RACHIT JAIN 17UCS118.
NISHA GOYAL 17UCS112.
SHREYA KHANDELWAL 17UCS154.