{"id":14387,"date":"2025-02-24T11:57:20","date_gmt":"2025-02-24T06:27:20","guid":{"rendered":"https:\/\/www.skynats.com\/?p=14387"},"modified":"2025-02-28T12:19:37","modified_gmt":"2025-02-28T06:49:37","slug":"automate-deployment-using-azure-resource-manager-templates","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/automate-deployment-using-azure-resource-manager-templates\/","title":{"rendered":"How do you Automate Infrastructure Deployment using Azure Resource Manager Templates"},"content":{"rendered":"\n<p>Azure Resource Manager templates are a powerful tool for automating the deployment of infrastructure in <a href=\"https:\/\/www.skynats.com\/azure-cloud-management-services\/\">Microsoft Azure<\/a>. They allow you to define your cloud resources in a declarative JSON format, making it easier to manage and automate infrastructure consistently.<\/p>\n\n\n\n<p>Here\u2019s a step-by-step guide to automating infrastructure deployment using ARM templates:<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-1-understand-azure-resource-manager-arm-templates\" style=\"font-size:18px\"><strong>1. Understand Azure Resource Manager<\/strong> (ARM)<strong> Templates<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Declarative Syntax<\/strong>: ARM templates use a JSON-based language where you specify the desired state of resources (e.g., virtual machines, networks) rather than writing step-by-step instructions.<\/li>\n\n\n\n<li><strong>Idempotency<\/strong>: ARM ensures that resources are deployed exactly as defined, and rerunning the template doesn\u2019t cause duplication or changes unless specified.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-2-create-an-azure-resource-manager-arm-template\" style=\"font-size:18px\"><strong>2. Create an <strong>Azure Resource Manager<\/strong> (ARM)<strong> <\/strong>Template<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Start by defining the structure of the ARM template. A basic template includes:\n<ul class=\"wp-block-list\">\n<li><strong>$schema<\/strong>: The location of the JSON schema for validation.<\/li>\n\n\n\n<li><strong>contentVersion<\/strong>: A version number for the template.<\/li>\n\n\n\n<li><strong>resources<\/strong>: The section where you define the Azure resources you want to deploy, such as VMs, storage accounts, networks, etc.<\/li>\n\n\n\n<li><strong>parameters<\/strong>: Used to make the template dynamic (e.g., specifying the size of a VM).<\/li>\n\n\n\n<li><strong>outputs<\/strong>: The values returned after deployment, such as IP addresses.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"$schema\": \"https:\/\/schema.management.azure.com\/schemas\/2019-04-01\/deploymentTemplate.json#\",\n  \"contentVersion\": \"1.0.0.0\",\n  \"parameters\": {\n    \"vmName\": {\n      \"type\": \"string\",\n      \"defaultValue\": \"myVM\",\n      \"metadata\": {\n        \"description\": \"Name of the virtual machine.\"\n      }\n    }\n  },\n  \"resources\": &#91;\n    {\n      \"type\": \"Microsoft.Compute\/virtualMachines\",\n      \"apiVersion\": \"2021-03-01\",\n      \"name\": \"&#91;parameters('vmName')]\",\n      \"location\": \"&#91;resourceGroup().location]\",\n      \"properties\": {\n        \"hardwareProfile\": {\n          \"vmSize\": \"Standard_DS1_v2\"\n        }\n      }\n    }\n  ]\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" style=\"font-size:18px\"><strong>3. Deploy the ARM Template<\/strong><\/h3>\n\n\n\n<p>Once your ARM template is ready, you can deploy it using different methods:<\/p>\n\n\n\n<p><strong>Azure Portal<\/strong>:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Navigate to the <a href=\"https:\/\/portal.azure.com\/\">Azure Portal<\/a>.<\/li>\n\n\n\n<li>Go to Deploy a custom template in the Azure Marketplace.<\/li>\n\n\n\n<li>Upload your template and click on &#8220;Review + create.&#8221;<\/li>\n<\/ol>\n\n\n\n<p><strong>Azure CLI<\/strong>:<br>You can use the Azure Command-Line Interface (CLI) to deploy your ARM template from the command line:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>az group create --name myResourceGroup --location eastus\naz deployment group create --resource-group myResourceGroup --template-file myTemplate.json<\/code><\/pre>\n\n\n\n<p><strong>PowerShell<\/strong>:<br>For PowerShell users, the following command can be used:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>New-AzResourceGroupDeployment -ResourceGroupName myResourceGroup -TemplateFile myTemplate.json<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" style=\"font-size:18px\"><strong>4. Parameterization for Flexibility<\/strong><\/h3>\n\n\n\n<p>One of the best features of ARM templates is the ability to use parameters. By parameterizing things like resource names, sizes, and regions, you can reuse the same template across different environments (e.g., development, staging, production).<\/p>\n\n\n\n<p>Example of parameterizing a storage account name:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\"parameters\": {\n  \"storageAccountName\": {\n    \"type\": \"string\",\n    \"defaultValue\": \"mystorageaccount\"\n  }\n}<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" style=\"font-size:18px\"><strong>5. Automate with CI\/CD Pipelines<\/strong><\/h4>\n\n\n\n<p>For continuous automation, integrate your ARM templates with a CI\/CD pipeline using tools like Azure <a href=\"https:\/\/www.skynats.com\/devops-support\/\">DevOps<\/a> or GitHub Actions. This enables automatic deployment of infrastructure whenever a change is made to the ARM template.<\/p>\n\n\n\n<p><strong>Steps for CI\/CD automation:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Store your ARM template in a Git repository.<\/li>\n\n\n\n<li>Set up a pipeline in Azure DevOps or GitHub Actions to trigger on code changes.<\/li>\n\n\n\n<li>Use the ARM deployment task or Azure CLI commands in the pipeline to deploy your infrastructure automatically.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\" style=\"font-size:18px\"><strong>6. Best Practices for ARM Templates<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Use Linked Templates<\/strong>: Break large infrastructure deployments into smaller, modular templates to increase maintainability.<\/li>\n\n\n\n<li><strong>Version Control<\/strong>: Store your templates in a version-controlled system like Git to track changes and roll back if necessary.<\/li>\n\n\n\n<li><strong>Test Before Production<\/strong>: Always test your ARM templates in a non-production environment to ensure they work as expected.<\/li>\n<\/ul>\n\n\n\n<p><strong>Example: Automating Kubernetes Cluster Deployment Using ARM Template<\/strong><\/p>\n\n\n\n<p>If you&#8217;re deploying a <a href=\"https:\/\/www.skynats.com\/devops-support\/\">Kubernetes<\/a> cluster, you can define it in an ARM template like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"resources\": &#91;\n    {\n      \"type\": \"Microsoft.ContainerService\/managedClusters\",\n      \"apiVersion\": \"2021-03-01\",\n      \"location\": \"&#91;resourceGroup().location]\",\n      \"properties\": {\n        \"kubernetesVersion\": \"1.20.9\",\n        \"dnsPrefix\": \"&#91;parameters('dnsPrefix')]\",\n        \"agentPoolProfiles\": &#91;\n          {\n            \"name\": \"agentpool\",\n            \"count\": 3,\n            \"vmSize\": \"Standard_DS2_v2\"\n          }\n        ]\n      }\n    }\n  ]\n}<\/code><\/pre>\n\n\n\n<p>This example demonstrates how to automate the deployment of a Kubernetes cluster using an ARM template and scale it automatically based on demand.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" style=\"font-size:18px\"><strong>Conclusion:<\/strong><\/h3>\n\n\n\n<p>Automating infrastructure deployment using Azure Resource Templates (ARM) streamlines resource management, ensures consistency, and integrates well with CI\/CD pipelines. It allows you to define, deploy, and manage resources with ease, whether you&#8217;re working with virtual machines, networks, or Kubernetes clusters.<\/p>\n\n\n\n<p>By leveraging ARM templates, you can significantly reduce manual processes, minimize errors, and accelerate your cloud infrastructure setup.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Azure Resource Manager templates are a powerful tool for automating the deployment of infrastructure in Microsoft Azure. They allow you to define your cloud resources in a declarative JSON format, making it easier to manage and automate infrastructure consistently. Here\u2019s a step-by-step guide to automating infrastructure deployment using ARM templates: 1. Understand Azure Resource Manager [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[976],"class_list":["post-14387","post","type-post","status-publish","format-standard","hentry","category-blog","tag-azure-resource-manager-templates"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Automate Deployment with Azure Resource Manager Templates<\/title>\n<meta name=\"description\" content=\"Learn how to automate infrastructure deployment using Azure Resource Manager templates for efficient, scalable cloud management.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.skynats.com\/blog\/automate-deployment-using-azure-resource-manager-templates\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How do you Automate Infrastructure Deployment using Azure Resource Manager Templates\" \/>\n<meta property=\"og:description\" content=\"Learn how to automate infrastructure deployment using Azure Resource Manager templates for efficient, scalable cloud management.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/automate-deployment-using-azure-resource-manager-templates\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2025-02-24T06:27:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-28T06:49:37+00:00\" \/>\n<meta name=\"author\" content=\"Sourav AJ\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sourav AJ\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/automate-deployment-using-azure-resource-manager-templates\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/automate-deployment-using-azure-resource-manager-templates\\\/\"},\"author\":{\"name\":\"Sourav AJ\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\"},\"headline\":\"How do you Automate Infrastructure Deployment using Azure Resource Manager Templates\",\"datePublished\":\"2025-02-24T06:27:20+00:00\",\"dateModified\":\"2025-02-28T06:49:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/automate-deployment-using-azure-resource-manager-templates\\\/\"},\"wordCount\":566,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"Azure Resource Manager Templates\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/automate-deployment-using-azure-resource-manager-templates\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/automate-deployment-using-azure-resource-manager-templates\\\/\",\"name\":\"Automate Deployment with Azure Resource Manager Templates\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-02-24T06:27:20+00:00\",\"dateModified\":\"2025-02-28T06:49:37+00:00\",\"description\":\"Learn how to automate infrastructure deployment using Azure Resource Manager templates for efficient, scalable cloud management.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/automate-deployment-using-azure-resource-manager-templates\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/automate-deployment-using-azure-resource-manager-templates\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/automate-deployment-using-azure-resource-manager-templates\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How do you Automate Infrastructure Deployment using Azure Resource Manager Templates\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\",\"name\":\"Sourav AJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"caption\":\"Sourav AJ\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Automate Deployment with Azure Resource Manager Templates","description":"Learn how to automate infrastructure deployment using Azure Resource Manager templates for efficient, scalable cloud management.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.skynats.com\/blog\/automate-deployment-using-azure-resource-manager-templates\/","og_locale":"en_US","og_type":"article","og_title":"How do you Automate Infrastructure Deployment using Azure Resource Manager Templates","og_description":"Learn how to automate infrastructure deployment using Azure Resource Manager templates for efficient, scalable cloud management.","og_url":"https:\/\/www.skynats.com\/blog\/automate-deployment-using-azure-resource-manager-templates\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-02-24T06:27:20+00:00","article_modified_time":"2025-02-28T06:49:37+00:00","author":"Sourav AJ","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sourav AJ","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/automate-deployment-using-azure-resource-manager-templates\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/automate-deployment-using-azure-resource-manager-templates\/"},"author":{"name":"Sourav AJ","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276"},"headline":"How do you Automate Infrastructure Deployment using Azure Resource Manager Templates","datePublished":"2025-02-24T06:27:20+00:00","dateModified":"2025-02-28T06:49:37+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/automate-deployment-using-azure-resource-manager-templates\/"},"wordCount":566,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["Azure Resource Manager Templates"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/automate-deployment-using-azure-resource-manager-templates\/","url":"https:\/\/www.skynats.com\/blog\/automate-deployment-using-azure-resource-manager-templates\/","name":"Automate Deployment with Azure Resource Manager Templates","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-02-24T06:27:20+00:00","dateModified":"2025-02-28T06:49:37+00:00","description":"Learn how to automate infrastructure deployment using Azure Resource Manager templates for efficient, scalable cloud management.","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/automate-deployment-using-azure-resource-manager-templates\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/automate-deployment-using-azure-resource-manager-templates\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/automate-deployment-using-azure-resource-manager-templates\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How do you Automate Infrastructure Deployment using Azure Resource Manager Templates"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276","name":"Sourav AJ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","caption":"Sourav AJ"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14387","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=14387"}],"version-history":[{"count":3,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14387\/revisions"}],"predecessor-version":[{"id":14391,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/14387\/revisions\/14391"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=14387"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=14387"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=14387"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}