Embed presentation
Download to read offline




![JSON – JavaScript Object Notation
JSON
{
"id": 1,
"name": "A green door",
"price": 12.50,
"tags":["home", "green"]
}
XML
<object>
<id>1</id>
<name>A green door</name>
<price>12.50</price>
<tags>
<tag>home</tag>
<tag>green</tag>
</tags>
</object](https://image.slidesharecdn.com/azureresourcemanager-161017205810/75/Azure-Resource-Manager-Templates-5-2048.jpg)
![ARM Template = JSON?
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
},
"variables": {
},
"resources": [
],
"outputs": {
}
}](https://image.slidesharecdn.com/azureresourcemanager-161017205810/75/Azure-Resource-Manager-Templates-6-2048.jpg)



This document discusses Azure Resource Manager templates, which allow for the definition of Azure resources in JSON format. It provides an overview of Microsoft's hybrid cloud platform Azure, which consists of Azure services that can be run in public or private clouds. Azure Resource Manager templates are used to deploy Azure resource definitions across both Azure and Azure Stack. The document demonstrates how a basic ARM template is structured in JSON format.




![JSON – JavaScript Object Notation
JSON
{
"id": 1,
"name": "A green door",
"price": 12.50,
"tags":["home", "green"]
}
XML
<object>
<id>1</id>
<name>A green door</name>
<price>12.50</price>
<tags>
<tag>home</tag>
<tag>green</tag>
</tags>
</object](https://image.slidesharecdn.com/azureresourcemanager-161017205810/75/Azure-Resource-Manager-Templates-5-2048.jpg)
![ARM Template = JSON?
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
},
"variables": {
},
"resources": [
],
"outputs": {
}
}](https://image.slidesharecdn.com/azureresourcemanager-161017205810/75/Azure-Resource-Manager-Templates-6-2048.jpg)


