dp-300-database-admin-assoc video for identify the missing word(s) in the following sentence within the context of Microsoft Azure. An Azure Resource Manager
Identify the missing word(s) in the following sentence within the context of Microsoft Azure. An Azure Resource Manager template is a JSON (JavaScript Object Notation) document that describes the resources that will be deployed within an Azure Resource Group. Review the code below. JavaScript "resources" : [ { "name" : "[variables('sqlServerName')]" , "type" : "Microsoft.Sql/servers" , "apiVersion" : "2014-04-01-preview" , "location" : "[parameters('location')]" , "tags" : { "displayName" : "SqlServer" }, "properties" : { "administratorLogin" : "[parameters('sqlAdministratorLogin')]" , "administratorLoginPassword" : "[parameters('sqlAdministratorLoginPassword')]" , "version" : "12.0" }, "resources" : [ { "name" : "[variables('databaseName')]" , "type" : "databases" , "apiVersion" : "2015-01-01" , "location" : "[parameters('location')]" , "tags" : { "displayName" : "Database" }, "properties" : { "edition" : "[variables('databaseEdition')]" , "collation" : "[variables('databaseCollation')]" , "requestedServiceObjectiveName" : "[variables('databaseServiceObjectiveName')]" }, "dependsOn" : [ "[variables('sqlServerName')]" ], "resources" : [ { "comments" : "Transparent Data Encryption" , "name" : "current" , "type" : "transparentDataEncryption" , "apiVersion" : "2014-04-01-preview" , "properties" : { "status" : "[parameters('transparentDataEncryption')]" }, "dependsOn" : [ "[variables('databaseName')]" ] } ] } One of the most important things to note about the structure of the resources section of the above template is the [?] option. This option allows you to build a dependency structure into your template.