Skip to content

Simple ARM Template that can be used to deploy an Azure Resource Group

Notifications You must be signed in to change notification settings

EdwardRushDeveloper/fc-az-resource-group-arm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

Azure DevOps Resource Group Example.

The basic root of the ARM Template

{
  "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
  "contentVersion": "1.0.0.0",
  "resources": []
}
  • $schema: Specifies the location of the JSON schema file. The schema file describes the properties that are available within a template. For example, the schema defines resources as one of the valid properties for a template. Don't worry that the date for the schema is 2019-04-01. This schema version is up to date and includes all of the latest features. The schema date hasn't been changed because there have been no breaking changes since its introduction.
  • contentVersion: Specifies the version of the template (such as 1.0.0.0). You can provide any value for this element. Use this value to document significant changes in your template. When deploying resources using the template, this value can be used to make sure that the right template is being used.
  • resources: Contains the resources you want to deploy or update.

Document Links

Type Links

Extensions

About

Simple ARM Template that can be used to deploy an Azure Resource Group

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published