diff --git a/1-CONTRIBUTION-GUIDE/README.md b/1-CONTRIBUTION-GUIDE/README.md index 547ad68c7f8c..026e801c968d 100644 --- a/1-CONTRIBUTION-GUIDE/README.md +++ b/1-CONTRIBUTION-GUIDE/README.md @@ -113,7 +113,7 @@ A valid metadata.json must adhere to the following structure ```json { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/...", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/...", "itemDisplayName": "60 char limit", "description": "1000 char limit", "summary": "200 char limit", @@ -258,7 +258,7 @@ Here's an example in an `azuredeploy.parameters.json` file: ```json { -"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", +"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName":{ diff --git a/1-CONTRIBUTION-GUIDE/best-practices.md b/1-CONTRIBUTION-GUIDE/best-practices.md index db7afaca60ce..8ef9f842674f 100644 --- a/1-CONTRIBUTION-GUIDE/best-practices.md +++ b/1-CONTRIBUTION-GUIDE/best-practices.md @@ -98,7 +98,7 @@ Top-level template properties must be in the following order: ```json { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/...", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/...", "contentVersion": "1.0.0.0", "apiProfile": "...", "parameters": {}, diff --git a/100-blank-template/azuredeploy.json b/100-blank-template/azuredeploy.json index 82d0af57e3b8..70180ce567ad 100644 --- a/100-blank-template/azuredeploy.json +++ b/100-blank-template/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { }, diff --git a/100-blank-template/azuredeploy.parameters.json b/100-blank-template/azuredeploy.parameters.json index 9c313f06f698..255f44a8196e 100644 --- a/100-blank-template/azuredeploy.parameters.json +++ b/100-blank-template/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/100-marketplace-sample/azuredeploy.json b/100-marketplace-sample/azuredeploy.json index 31715bb53908..2e21b4db6a42 100644 --- a/100-marketplace-sample/azuredeploy.json +++ b/100-marketplace-sample/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { @@ -213,7 +213,7 @@ "properties": { "mode": "Incremental", "template": { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "resources": [] } diff --git a/100-marketplace-sample/azuredeploy.parameters.json b/100-marketplace-sample/azuredeploy.parameters.json index c9210877b94e..3bef53de6d93 100644 --- a/100-marketplace-sample/azuredeploy.parameters.json +++ b/100-marketplace-sample/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-1vm-2nics-2subnets-1vnet/azuredeploy.json b/101-1vm-2nics-2subnets-1vnet/azuredeploy.json index 21fe84e74362..526bf08ee17a 100644 --- a/101-1vm-2nics-2subnets-1vnet/azuredeploy.json +++ b/101-1vm-2nics-2subnets-1vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualMachineSize": { diff --git a/101-1vm-2nics-2subnets-1vnet/azuredeploy.parameters.json b/101-1vm-2nics-2subnets-1vnet/azuredeploy.parameters.json index 884ea4b87e29..e22f911a7c99 100644 --- a/101-1vm-2nics-2subnets-1vnet/azuredeploy.parameters.json +++ b/101-1vm-2nics-2subnets-1vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-AAD-DomainServices/azuredeploy.json b/101-AAD-DomainServices/azuredeploy.json index f570f99f1174..d1a7396e6cc2 100644 --- a/101-AAD-DomainServices/azuredeploy.json +++ b/101-AAD-DomainServices/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "domainName": { diff --git a/101-AAD-DomainServices/azuredeploy.parameters.json b/101-AAD-DomainServices/azuredeploy.parameters.json index 650d340d517e..e324a7f73ef2 100644 --- a/101-AAD-DomainServices/azuredeploy.parameters.json +++ b/101-AAD-DomainServices/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "domainName": { diff --git a/101-DDoS-Attack-Prevention/azuredeploy.json b/101-DDoS-Attack-Prevention/azuredeploy.json index 8dfaa36ab8a2..b35d3fa60627 100644 --- a/101-DDoS-Attack-Prevention/azuredeploy.json +++ b/101-DDoS-Attack-Prevention/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { diff --git a/101-DDoS-Attack-Prevention/azuredeploy.parameters.json b/101-DDoS-Attack-Prevention/azuredeploy.parameters.json index 798e0036394a..e4df3884c9ad 100644 --- a/101-DDoS-Attack-Prevention/azuredeploy.parameters.json +++ b/101-DDoS-Attack-Prevention/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUserName": { diff --git a/101-DDoS-Attack-Prevention/nested/microsoft.compute/vm.windows.json b/101-DDoS-Attack-Prevention/nested/microsoft.compute/vm.windows.json index 31a6b491bd3d..7994d39f676b 100644 --- a/101-DDoS-Attack-Prevention/nested/microsoft.compute/vm.windows.json +++ b/101-DDoS-Attack-Prevention/nested/microsoft.compute/vm.windows.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/101-DDoS-Attack-Prevention/nested/microsoft.loganalytics/workspaces.json b/101-DDoS-Attack-Prevention/nested/microsoft.loganalytics/workspaces.json index 86c2952b1373..118bd6eb4aa9 100644 --- a/101-DDoS-Attack-Prevention/nested/microsoft.loganalytics/workspaces.json +++ b/101-DDoS-Attack-Prevention/nested/microsoft.loganalytics/workspaces.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspaceName":{ diff --git a/101-DDoS-Attack-Prevention/nested/microsoft.network/nic-with-pip.json b/101-DDoS-Attack-Prevention/nested/microsoft.network/nic-with-pip.json index 014511c97607..9b5e30c23ec3 100644 --- a/101-DDoS-Attack-Prevention/nested/microsoft.network/nic-with-pip.json +++ b/101-DDoS-Attack-Prevention/nested/microsoft.network/nic-with-pip.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nicName": { diff --git a/101-DDoS-Attack-Prevention/nested/microsoft.network/nsg.json b/101-DDoS-Attack-Prevention/nested/microsoft.network/nsg.json index 2c238c697a22..7db03d64b7f8 100644 --- a/101-DDoS-Attack-Prevention/nested/microsoft.network/nsg.json +++ b/101-DDoS-Attack-Prevention/nested/microsoft.network/nsg.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nsgName": { diff --git a/101-DDoS-Attack-Prevention/nested/microsoft.network/publicipaddress.json b/101-DDoS-Attack-Prevention/nested/microsoft.network/publicipaddress.json index 283f6d70d5aa..18801334816b 100644 --- a/101-DDoS-Attack-Prevention/nested/microsoft.network/publicipaddress.json +++ b/101-DDoS-Attack-Prevention/nested/microsoft.network/publicipaddress.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publicIPAddressName": { diff --git a/101-DDoS-Attack-Prevention/nested/microsoft.network/virtualnetworks.json b/101-DDoS-Attack-Prevention/nested/microsoft.network/virtualnetworks.json index a94ceadbb41c..ccf86f12489f 100644 --- a/101-DDoS-Attack-Prevention/nested/microsoft.network/virtualnetworks.json +++ b/101-DDoS-Attack-Prevention/nested/microsoft.network/virtualnetworks.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/101-SQL-Injection-Attack-Prevention/azuredeploy.json b/101-SQL-Injection-Attack-Prevention/azuredeploy.json index 6c1eeb4884f0..800196796231 100644 --- a/101-SQL-Injection-Attack-Prevention/azuredeploy.json +++ b/101-SQL-Injection-Attack-Prevention/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { diff --git a/101-SQL-Injection-Attack-Prevention/azuredeploy.parameters.json b/101-SQL-Injection-Attack-Prevention/azuredeploy.parameters.json index 2f771ea86780..9839d4d6247f 100644 --- a/101-SQL-Injection-Attack-Prevention/azuredeploy.parameters.json +++ b/101-SQL-Injection-Attack-Prevention/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlAdministratorName": { diff --git a/101-SQL-Injection-Attack-Prevention/nested/microsoft.loganalytics/workspaces.json b/101-SQL-Injection-Attack-Prevention/nested/microsoft.loganalytics/workspaces.json index fd45c3709f7a..667cca8b7bd1 100644 --- a/101-SQL-Injection-Attack-Prevention/nested/microsoft.loganalytics/workspaces.json +++ b/101-SQL-Injection-Attack-Prevention/nested/microsoft.loganalytics/workspaces.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspaceName": { diff --git a/101-SQL-Injection-Attack-Prevention/nested/microsoft.network/applicationgateways.json b/101-SQL-Injection-Attack-Prevention/nested/microsoft.network/applicationgateways.json index 671ced9bdaab..1fc2f0601089 100644 --- a/101-SQL-Injection-Attack-Prevention/nested/microsoft.network/applicationgateways.json +++ b/101-SQL-Injection-Attack-Prevention/nested/microsoft.network/applicationgateways.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "applicationGatewaySize": { diff --git a/101-SQL-Injection-Attack-Prevention/nested/microsoft.network/publicipaddress.json b/101-SQL-Injection-Attack-Prevention/nested/microsoft.network/publicipaddress.json index 914404618ada..9616efc53a45 100644 --- a/101-SQL-Injection-Attack-Prevention/nested/microsoft.network/publicipaddress.json +++ b/101-SQL-Injection-Attack-Prevention/nested/microsoft.network/publicipaddress.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publicIPAddressName": { diff --git a/101-SQL-Injection-Attack-Prevention/nested/microsoft.network/virtualnetworks.json b/101-SQL-Injection-Attack-Prevention/nested/microsoft.network/virtualnetworks.json index 0115407df61a..62cd8a1b2233 100644 --- a/101-SQL-Injection-Attack-Prevention/nested/microsoft.network/virtualnetworks.json +++ b/101-SQL-Injection-Attack-Prevention/nested/microsoft.network/virtualnetworks.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/101-SQL-Injection-Attack-Prevention/nested/microsoft.sql/servers.auditingsettings.json b/101-SQL-Injection-Attack-Prevention/nested/microsoft.sql/servers.auditingsettings.json index 66fd0f39d3b3..05683ef595a5 100644 --- a/101-SQL-Injection-Attack-Prevention/nested/microsoft.sql/servers.auditingsettings.json +++ b/101-SQL-Injection-Attack-Prevention/nested/microsoft.sql/servers.auditingsettings.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerName": { diff --git a/101-SQL-Injection-Attack-Prevention/nested/microsoft.sql/servers.databases.json b/101-SQL-Injection-Attack-Prevention/nested/microsoft.sql/servers.databases.json index a330f6754336..e3323d00531e 100644 --- a/101-SQL-Injection-Attack-Prevention/nested/microsoft.sql/servers.databases.json +++ b/101-SQL-Injection-Attack-Prevention/nested/microsoft.sql/servers.databases.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerName": { diff --git a/101-SQL-Injection-Attack-Prevention/nested/microsoft.sql/servers.securityalertpolicies.json b/101-SQL-Injection-Attack-Prevention/nested/microsoft.sql/servers.securityalertpolicies.json index 0bbc80c46d30..14f2ec7c637d 100644 --- a/101-SQL-Injection-Attack-Prevention/nested/microsoft.sql/servers.securityalertpolicies.json +++ b/101-SQL-Injection-Attack-Prevention/nested/microsoft.sql/servers.securityalertpolicies.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerName": { diff --git a/101-SQL-Injection-Attack-Prevention/nested/microsoft.sql/servers.v12.0.json b/101-SQL-Injection-Attack-Prevention/nested/microsoft.sql/servers.v12.0.json index bafc72b4ece8..c6c0e03cb8a3 100644 --- a/101-SQL-Injection-Attack-Prevention/nested/microsoft.sql/servers.v12.0.json +++ b/101-SQL-Injection-Attack-Prevention/nested/microsoft.sql/servers.v12.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerName": { diff --git a/101-SQL-Injection-Attack-Prevention/nested/microsoft.storage/storageaccounts.storage.json b/101-SQL-Injection-Attack-Prevention/nested/microsoft.storage/storageaccounts.storage.json index d23eeb01462d..5fe3c5584099 100644 --- a/101-SQL-Injection-Attack-Prevention/nested/microsoft.storage/storageaccounts.storage.json +++ b/101-SQL-Injection-Attack-Prevention/nested/microsoft.storage/storageaccounts.storage.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/101-SQL-Injection-Attack-Prevention/nested/microsoft.web/serverfarms.json b/101-SQL-Injection-Attack-Prevention/nested/microsoft.web/serverfarms.json index d41af2bbd76c..2a8b0f070013 100644 --- a/101-SQL-Injection-Attack-Prevention/nested/microsoft.web/serverfarms.json +++ b/101-SQL-Injection-Attack-Prevention/nested/microsoft.web/serverfarms.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/101-SQL-Injection-Attack-Prevention/nested/microsoft.web/sites.config.connectionstrings.json b/101-SQL-Injection-Attack-Prevention/nested/microsoft.web/sites.config.connectionstrings.json index e23662f36812..f5968199cb3b 100644 --- a/101-SQL-Injection-Attack-Prevention/nested/microsoft.web/sites.config.connectionstrings.json +++ b/101-SQL-Injection-Attack-Prevention/nested/microsoft.web/sites.config.connectionstrings.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "webAppName": { diff --git a/101-SQL-Injection-Attack-Prevention/nested/microsoft.web/sites.extensions.msdeploy.json b/101-SQL-Injection-Attack-Prevention/nested/microsoft.web/sites.extensions.msdeploy.json index 5fee840a90f0..b34397a57ca2 100644 --- a/101-SQL-Injection-Attack-Prevention/nested/microsoft.web/sites.extensions.msdeploy.json +++ b/101-SQL-Injection-Attack-Prevention/nested/microsoft.web/sites.extensions.msdeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "webAppName": { diff --git a/101-SQL-Injection-Attack-Prevention/nested/microsoft.web/sites.json b/101-SQL-Injection-Attack-Prevention/nested/microsoft.web/sites.json index 72f32c019b00..542d0810a2b2 100644 --- a/101-SQL-Injection-Attack-Prevention/nested/microsoft.web/sites.json +++ b/101-SQL-Injection-Attack-Prevention/nested/microsoft.web/sites.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/101-Telegraf-InfluxDB-Grafana/azuredeploy.json b/101-Telegraf-InfluxDB-Grafana/azuredeploy.json index 374a3c38691c..740711a79539 100644 --- a/101-Telegraf-InfluxDB-Grafana/azuredeploy.json +++ b/101-Telegraf-InfluxDB-Grafana/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-Telegraf-InfluxDB-Grafana/azuredeploy.parameters.json b/101-Telegraf-InfluxDB-Grafana/azuredeploy.parameters.json index 96a63fe3e904..956769a652c9 100644 --- a/101-Telegraf-InfluxDB-Grafana/azuredeploy.parameters.json +++ b/101-Telegraf-InfluxDB-Grafana/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-VM-Virus-Attack-Prevention/azuredeploy.json b/101-VM-Virus-Attack-Prevention/azuredeploy.json index 79aa68bba508..9c27acc08126 100644 --- a/101-VM-Virus-Attack-Prevention/azuredeploy.json +++ b/101-VM-Virus-Attack-Prevention/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { diff --git a/101-VM-Virus-Attack-Prevention/azuredeploy.parameters.json b/101-VM-Virus-Attack-Prevention/azuredeploy.parameters.json index a4193cf5a598..a6bc24eda638 100644 --- a/101-VM-Virus-Attack-Prevention/azuredeploy.parameters.json +++ b/101-VM-Virus-Attack-Prevention/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUserName": { diff --git a/101-VM-Virus-Attack-Prevention/nested/microsoft.compute/vm.windows.json b/101-VM-Virus-Attack-Prevention/nested/microsoft.compute/vm.windows.json index 5f46c19fb3d9..4284051e40d7 100644 --- a/101-VM-Virus-Attack-Prevention/nested/microsoft.compute/vm.windows.json +++ b/101-VM-Virus-Attack-Prevention/nested/microsoft.compute/vm.windows.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/101-VM-Virus-Attack-Prevention/nested/microsoft.loganalytics/workspaces.json b/101-VM-Virus-Attack-Prevention/nested/microsoft.loganalytics/workspaces.json index 1a9e9f1d65da..62246513ba11 100644 --- a/101-VM-Virus-Attack-Prevention/nested/microsoft.loganalytics/workspaces.json +++ b/101-VM-Virus-Attack-Prevention/nested/microsoft.loganalytics/workspaces.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspaceName":{ diff --git a/101-VM-Virus-Attack-Prevention/nested/microsoft.network/nic-with-pip.json b/101-VM-Virus-Attack-Prevention/nested/microsoft.network/nic-with-pip.json index 0b47e2d262aa..a6cb49744fa8 100644 --- a/101-VM-Virus-Attack-Prevention/nested/microsoft.network/nic-with-pip.json +++ b/101-VM-Virus-Attack-Prevention/nested/microsoft.network/nic-with-pip.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nicName": { diff --git a/101-VM-Virus-Attack-Prevention/nested/microsoft.network/nsg.json b/101-VM-Virus-Attack-Prevention/nested/microsoft.network/nsg.json index 8cb1c6116353..e700e5f9faff 100644 --- a/101-VM-Virus-Attack-Prevention/nested/microsoft.network/nsg.json +++ b/101-VM-Virus-Attack-Prevention/nested/microsoft.network/nsg.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nsgName": { diff --git a/101-VM-Virus-Attack-Prevention/nested/microsoft.network/publicipaddress.json b/101-VM-Virus-Attack-Prevention/nested/microsoft.network/publicipaddress.json index 16f687366472..603396efabe0 100644 --- a/101-VM-Virus-Attack-Prevention/nested/microsoft.network/publicipaddress.json +++ b/101-VM-Virus-Attack-Prevention/nested/microsoft.network/publicipaddress.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publicIPAddressName": { diff --git a/101-VM-Virus-Attack-Prevention/nested/microsoft.network/virtualnetworks.json b/101-VM-Virus-Attack-Prevention/nested/microsoft.network/virtualnetworks.json index 24db858dd732..ec23ae75e646 100644 --- a/101-VM-Virus-Attack-Prevention/nested/microsoft.network/virtualnetworks.json +++ b/101-VM-Virus-Attack-Prevention/nested/microsoft.network/virtualnetworks.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/101-XSS-Attack-Prevention/azuredeploy.json b/101-XSS-Attack-Prevention/azuredeploy.json index 088460372aa6..f1e9b3e1f9ae 100644 --- a/101-XSS-Attack-Prevention/azuredeploy.json +++ b/101-XSS-Attack-Prevention/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { diff --git a/101-XSS-Attack-Prevention/azuredeploy.parameters.json b/101-XSS-Attack-Prevention/azuredeploy.parameters.json index 2f771ea86780..9839d4d6247f 100644 --- a/101-XSS-Attack-Prevention/azuredeploy.parameters.json +++ b/101-XSS-Attack-Prevention/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlAdministratorName": { diff --git a/101-XSS-Attack-Prevention/nested/microsoft.loganalytics/workspaces.json b/101-XSS-Attack-Prevention/nested/microsoft.loganalytics/workspaces.json index 5da2c1a39153..b286ef89983e 100644 --- a/101-XSS-Attack-Prevention/nested/microsoft.loganalytics/workspaces.json +++ b/101-XSS-Attack-Prevention/nested/microsoft.loganalytics/workspaces.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspaceName": { diff --git a/101-XSS-Attack-Prevention/nested/microsoft.network/applicationgateway.json b/101-XSS-Attack-Prevention/nested/microsoft.network/applicationgateway.json index 29b1fad0748b..fbb50f02bb3f 100644 --- a/101-XSS-Attack-Prevention/nested/microsoft.network/applicationgateway.json +++ b/101-XSS-Attack-Prevention/nested/microsoft.network/applicationgateway.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "applicationGatewaySize": { diff --git a/101-XSS-Attack-Prevention/nested/microsoft.network/publicipaddress.json b/101-XSS-Attack-Prevention/nested/microsoft.network/publicipaddress.json index 914404618ada..9616efc53a45 100644 --- a/101-XSS-Attack-Prevention/nested/microsoft.network/publicipaddress.json +++ b/101-XSS-Attack-Prevention/nested/microsoft.network/publicipaddress.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publicIPAddressName": { diff --git a/101-XSS-Attack-Prevention/nested/microsoft.network/virtualnetworks.json b/101-XSS-Attack-Prevention/nested/microsoft.network/virtualnetworks.json index 0d1f26d127cf..72f654dac1f2 100644 --- a/101-XSS-Attack-Prevention/nested/microsoft.network/virtualnetworks.json +++ b/101-XSS-Attack-Prevention/nested/microsoft.network/virtualnetworks.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/101-XSS-Attack-Prevention/nested/microsoft.sql/servers.auditingsettings.json b/101-XSS-Attack-Prevention/nested/microsoft.sql/servers.auditingsettings.json index 66fd0f39d3b3..05683ef595a5 100644 --- a/101-XSS-Attack-Prevention/nested/microsoft.sql/servers.auditingsettings.json +++ b/101-XSS-Attack-Prevention/nested/microsoft.sql/servers.auditingsettings.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerName": { diff --git a/101-XSS-Attack-Prevention/nested/microsoft.sql/servers.databases.json b/101-XSS-Attack-Prevention/nested/microsoft.sql/servers.databases.json index 3499d4119e5c..ef5468b3434d 100644 --- a/101-XSS-Attack-Prevention/nested/microsoft.sql/servers.databases.json +++ b/101-XSS-Attack-Prevention/nested/microsoft.sql/servers.databases.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerName": { diff --git a/101-XSS-Attack-Prevention/nested/microsoft.sql/servers.securityalertpolicies.json b/101-XSS-Attack-Prevention/nested/microsoft.sql/servers.securityalertpolicies.json index 0bbc80c46d30..14f2ec7c637d 100644 --- a/101-XSS-Attack-Prevention/nested/microsoft.sql/servers.securityalertpolicies.json +++ b/101-XSS-Attack-Prevention/nested/microsoft.sql/servers.securityalertpolicies.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerName": { diff --git a/101-XSS-Attack-Prevention/nested/microsoft.sql/servers.v12.0.json b/101-XSS-Attack-Prevention/nested/microsoft.sql/servers.v12.0.json index 990019253b6a..f4d323205d1f 100644 --- a/101-XSS-Attack-Prevention/nested/microsoft.sql/servers.v12.0.json +++ b/101-XSS-Attack-Prevention/nested/microsoft.sql/servers.v12.0.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerName": { diff --git a/101-XSS-Attack-Prevention/nested/microsoft.storage/storageaccounts.json b/101-XSS-Attack-Prevention/nested/microsoft.storage/storageaccounts.json index 056e6b651cb4..619e2ce83aed 100644 --- a/101-XSS-Attack-Prevention/nested/microsoft.storage/storageaccounts.json +++ b/101-XSS-Attack-Prevention/nested/microsoft.storage/storageaccounts.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/101-XSS-Attack-Prevention/nested/microsoft.web/serverfarms.json b/101-XSS-Attack-Prevention/nested/microsoft.web/serverfarms.json index d41af2bbd76c..2a8b0f070013 100644 --- a/101-XSS-Attack-Prevention/nested/microsoft.web/serverfarms.json +++ b/101-XSS-Attack-Prevention/nested/microsoft.web/serverfarms.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/101-XSS-Attack-Prevention/nested/microsoft.web/sites.config.connectionstrings.json b/101-XSS-Attack-Prevention/nested/microsoft.web/sites.config.connectionstrings.json index e23662f36812..f5968199cb3b 100644 --- a/101-XSS-Attack-Prevention/nested/microsoft.web/sites.config.connectionstrings.json +++ b/101-XSS-Attack-Prevention/nested/microsoft.web/sites.config.connectionstrings.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "webAppName": { diff --git a/101-XSS-Attack-Prevention/nested/microsoft.web/sites.extensions.msdeploy.json b/101-XSS-Attack-Prevention/nested/microsoft.web/sites.extensions.msdeploy.json index 5fee840a90f0..b34397a57ca2 100644 --- a/101-XSS-Attack-Prevention/nested/microsoft.web/sites.extensions.msdeploy.json +++ b/101-XSS-Attack-Prevention/nested/microsoft.web/sites.extensions.msdeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "webAppName": { diff --git a/101-XSS-Attack-Prevention/nested/microsoft.web/sites.json b/101-XSS-Attack-Prevention/nested/microsoft.web/sites.json index 0c8abc9a1de3..dd80c65f91c9 100644 --- a/101-XSS-Attack-Prevention/nested/microsoft.web/sites.json +++ b/101-XSS-Attack-Prevention/nested/microsoft.web/sites.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/101-aci-dynamicsnav/azuredeploy.json b/101-aci-dynamicsnav/azuredeploy.json index a80587ef792c..3f949d91eaf1 100644 --- a/101-aci-dynamicsnav/azuredeploy.json +++ b/101-aci-dynamicsnav/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "contGroupName": { diff --git a/101-aci-dynamicsnav/azuredeploy.parameters.json b/101-aci-dynamicsnav/azuredeploy.parameters.json index 4c19a383aaa2..4e6630d53ea3 100644 --- a/101-aci-dynamicsnav/azuredeploy.parameters.json +++ b/101-aci-dynamicsnav/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "password": { diff --git a/101-aci-linuxcontainer-public-ip/azuredeploy.json b/101-aci-linuxcontainer-public-ip/azuredeploy.json index 0493fd8e5ecc..610c12229e65 100644 --- a/101-aci-linuxcontainer-public-ip/azuredeploy.json +++ b/101-aci-linuxcontainer-public-ip/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/101-aci-linuxcontainer-public-ip/azuredeploy.parameters.json b/101-aci-linuxcontainer-public-ip/azuredeploy.parameters.json index e1e8f4ff840d..4272d27167ea 100644 --- a/101-aci-linuxcontainer-public-ip/azuredeploy.parameters.json +++ b/101-aci-linuxcontainer-public-ip/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/101-aci-storage-file-share/azuredeploy.json b/101-aci-storage-file-share/azuredeploy.json index b3258e9a3af2..7d0684737206 100644 --- a/101-aci-storage-file-share/azuredeploy.json +++ b/101-aci-storage-file-share/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountType": { diff --git a/101-aci-storage-file-share/azuredeploy.parameters.json b/101-aci-storage-file-share/azuredeploy.parameters.json index e2bbda0cac3c..80ada789881f 100644 --- a/101-aci-storage-file-share/azuredeploy.parameters.json +++ b/101-aci-storage-file-share/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "fileShareName": { diff --git a/101-aci-vnet/azuredeploy.json b/101-aci-vnet/azuredeploy.json index c2dbac8fc6af..baaa760a5a07 100644 --- a/101-aci-vnet/azuredeploy.json +++ b/101-aci-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/101-aci-vnet/azuredeploy.parameters.json b/101-aci-vnet/azuredeploy.parameters.json index b44c9bc658a3..aafacb2162b4 100644 --- a/101-aci-vnet/azuredeploy.parameters.json +++ b/101-aci-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "containerGroupName": { diff --git a/101-acs-dcos/azuredeploy.json b/101-acs-dcos/azuredeploy.json index 7bfb064a0387..b5c88e8e2b6b 100644 --- a/101-acs-dcos/azuredeploy.json +++ b/101-acs-dcos/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsNamePrefix": { diff --git a/101-acs-dcos/azuredeploy.parameters.json b/101-acs-dcos/azuredeploy.parameters.json index bfcba9233caa..60359f833fb6 100644 --- a/101-acs-dcos/azuredeploy.parameters.json +++ b/101-acs-dcos/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsNamePrefix": { diff --git a/101-acs-kubernetes/azuredeploy.json b/101-acs-kubernetes/azuredeploy.json index 03a8bf27003d..3a6dc8789396 100644 --- a/101-acs-kubernetes/azuredeploy.json +++ b/101-acs-kubernetes/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsNamePrefix": { diff --git a/101-acs-kubernetes/azuredeploy.parameters.json b/101-acs-kubernetes/azuredeploy.parameters.json index 88efcfe4790f..42f8ea5b8030 100644 --- a/101-acs-kubernetes/azuredeploy.parameters.json +++ b/101-acs-kubernetes/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsNamePrefix": { diff --git a/101-acs-swarm/azuredeploy.json b/101-acs-swarm/azuredeploy.json index e33b97df3d2a..fd9139fb3665 100644 --- a/101-acs-swarm/azuredeploy.json +++ b/101-acs-swarm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsNamePrefix": { diff --git a/101-acs-swarm/azuredeploy.parameters.json b/101-acs-swarm/azuredeploy.parameters.json index f4669a500deb..4faf10108e27 100644 --- a/101-acs-swarm/azuredeploy.parameters.json +++ b/101-acs-swarm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsNamePrefix": { diff --git a/101-acsengine-swarmmode/azuredeploy.json b/101-acsengine-swarmmode/azuredeploy.json index bc054b7b6dd3..9ea565a9f6c7 100644 --- a/101-acsengine-swarmmode/azuredeploy.json +++ b/101-acsengine-swarmmode/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "agentCount": { diff --git a/101-acsengine-swarmmode/azuredeploy.parameters.json b/101-acsengine-swarmmode/azuredeploy.parameters.json index eac27482ab1b..33b5e8dd88b3 100644 --- a/101-acsengine-swarmmode/azuredeploy.parameters.json +++ b/101-acsengine-swarmmode/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "agentCount": { diff --git a/101-aks-advanced-networking-aad/azuredeploy.json b/101-aks-advanced-networking-aad/azuredeploy.json index ee65ba6a58b2..cbbe4326ffa3 100644 --- a/101-aks-advanced-networking-aad/azuredeploy.json +++ b/101-aks-advanced-networking-aad/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "resourceName": { @@ -245,7 +245,7 @@ "properties": { "mode": "Incremental", "template": { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, diff --git a/101-aks-advanced-networking-aad/azuredeploy.parameters.json b/101-aks-advanced-networking-aad/azuredeploy.parameters.json index 1301de91e84b..3c7ef6d8b7e5 100644 --- a/101-aks-advanced-networking-aad/azuredeploy.parameters.json +++ b/101-aks-advanced-networking-aad/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "resourceName": { diff --git a/101-aks-advanced-networking-aad/prereqs/prereq.azuredeploy.json b/101-aks-advanced-networking-aad/prereqs/prereq.azuredeploy.json index 9780925f4778..12d0201eff43 100644 --- a/101-aks-advanced-networking-aad/prereqs/prereq.azuredeploy.json +++ b/101-aks-advanced-networking-aad/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/101-aks-advanced-networking-aad/prereqs/prereq.azuredeploy.parameters.json b/101-aks-advanced-networking-aad/prereqs/prereq.azuredeploy.parameters.json index 9c313f06f698..255f44a8196e 100644 --- a/101-aks-advanced-networking-aad/prereqs/prereq.azuredeploy.parameters.json +++ b/101-aks-advanced-networking-aad/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-aks-advanced-networking/azuredeploy.json b/101-aks-advanced-networking/azuredeploy.json index 8fabdbcfe93e..43f4b15da258 100644 --- a/101-aks-advanced-networking/azuredeploy.json +++ b/101-aks-advanced-networking/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "resourceName": { @@ -208,7 +208,7 @@ "properties": { "mode": "Incremental", "template": { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, diff --git a/101-aks-advanced-networking/azuredeploy.parameters.json b/101-aks-advanced-networking/azuredeploy.parameters.json index 8ec376745cbf..74bc31e751d9 100644 --- a/101-aks-advanced-networking/azuredeploy.parameters.json +++ b/101-aks-advanced-networking/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "resourceName": { diff --git a/101-aks-advanced-networking/prereqs/prereq.azuredeploy.json b/101-aks-advanced-networking/prereqs/prereq.azuredeploy.json index 9780925f4778..12d0201eff43 100644 --- a/101-aks-advanced-networking/prereqs/prereq.azuredeploy.json +++ b/101-aks-advanced-networking/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/101-aks-advanced-networking/prereqs/prereq.azuredeploy.parameters.json b/101-aks-advanced-networking/prereqs/prereq.azuredeploy.parameters.json index 9c313f06f698..255f44a8196e 100644 --- a/101-aks-advanced-networking/prereqs/prereq.azuredeploy.parameters.json +++ b/101-aks-advanced-networking/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-aks/azuredeploy.json b/101-aks/azuredeploy.json index ddc1dd53fb10..c35172c73f28 100644 --- a/101-aks/azuredeploy.json +++ b/101-aks/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.1", "parameters": { "clusterName": { diff --git a/101-aks/azuredeploy.parameters.json b/101-aks/azuredeploy.parameters.json index 525a4495cb95..2ef035e80f33 100644 --- a/101-aks/azuredeploy.parameters.json +++ b/101-aks/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-analysis-services-create/azuredeploy.json b/101-analysis-services-create/azuredeploy.json index 9e81eae9f1a6..fbea0e650d9c 100644 --- a/101-analysis-services-create/azuredeploy.json +++ b/101-analysis-services-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serverName": { diff --git a/101-analysis-services-create/azuredeploy.parameters.json b/101-analysis-services-create/azuredeploy.parameters.json index 98f0d721b865..8b27611a394f 100644 --- a/101-analysis-services-create/azuredeploy.parameters.json +++ b/101-analysis-services-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serverName": { diff --git a/101-api-management-create-with-msi/azuredeploy.json b/101-api-management-create-with-msi/azuredeploy.json index a8ec5cb6b7c1..561bfd3d0e0a 100644 --- a/101-api-management-create-with-msi/azuredeploy.json +++ b/101-api-management-create-with-msi/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/101-api-management-create-with-msi/azuredeploy.parameters.json b/101-api-management-create-with-msi/azuredeploy.parameters.json index 0f55182b0790..2ffbecf78f71 100644 --- a/101-api-management-create-with-msi/azuredeploy.parameters.json +++ b/101-api-management-create-with-msi/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/101-app-configuration/azuredeploy.json b/101-app-configuration/azuredeploy.json index cf2b1c3f9849..38bdf5231b2e 100644 --- a/101-app-configuration/azuredeploy.json +++ b/101-app-configuration/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-app-configuration/azuredeploy.parameters.json b/101-app-configuration/azuredeploy.parameters.json index f8bf88294393..64869aaa8f48 100644 --- a/101-app-configuration/azuredeploy.parameters.json +++ b/101-app-configuration/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminPassword": { diff --git a/101-app-function/azuredeploy.json b/101-app-function/azuredeploy.json index 83725fbf7a7f..af77b332c5f0 100755 --- a/101-app-function/azuredeploy.json +++ b/101-app-function/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-app-function/azuredeploy.parameters.json b/101-app-function/azuredeploy.parameters.json index 22e0595487aa..1ffb5013193d 100755 --- a/101-app-function/azuredeploy.parameters.json +++ b/101-app-function/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-app-service-certificate-standard/azuredeploy.json b/101-app-service-certificate-standard/azuredeploy.json index 321a45a0a156..30de7ce81eb0 100644 --- a/101-app-service-certificate-standard/azuredeploy.json +++ b/101-app-service-certificate-standard/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "certificateOrderName": { diff --git a/101-app-service-certificate-standard/azuredeploy.parameters.json b/101-app-service-certificate-standard/azuredeploy.parameters.json index 5927073f1095..faefd1603a57 100644 --- a/101-app-service-certificate-standard/azuredeploy.parameters.json +++ b/101-app-service-certificate-standard/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion":"1.0.0.0", "parameters":{ "certificateOrderName":{ diff --git a/101-app-service-certificate-wildcard/azuredeploy.json b/101-app-service-certificate-wildcard/azuredeploy.json index 36ba9efc1cf4..237b4238e31c 100644 --- a/101-app-service-certificate-wildcard/azuredeploy.json +++ b/101-app-service-certificate-wildcard/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "certificateOrderName": { diff --git a/101-app-service-certificate-wildcard/azuredeploy.parameters.json b/101-app-service-certificate-wildcard/azuredeploy.parameters.json index 6979f2be75fc..e3caae9a3e9a 100644 --- a/101-app-service-certificate-wildcard/azuredeploy.parameters.json +++ b/101-app-service-certificate-wildcard/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion":"1.0.0.0", "parameters":{ "certificateOrderName":{ diff --git a/101-application-gateway-create/azuredeploy.json b/101-application-gateway-create/azuredeploy.json index ef2ae3d4a42f..c777195a8ffc 100644 --- a/101-application-gateway-create/azuredeploy.json +++ b/101-application-gateway-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/101-application-gateway-create/azuredeploy.parameters.json b/101-application-gateway-create/azuredeploy.parameters.json index b67453cdab76..cdcda64d3976 100644 --- a/101-application-gateway-create/azuredeploy.parameters.json +++ b/101-application-gateway-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/101-application-gateway-key-vault-create/azuredeploy.parameters.json b/101-application-gateway-key-vault-create/azuredeploy.parameters.json index 1f86a86319e6..80b6e4173551 100644 --- a/101-application-gateway-key-vault-create/azuredeploy.parameters.json +++ b/101-application-gateway-key-vault-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2019-09-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-09-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/101-application-gateway-public-ip-ssl-offload/azuredeploy.json b/101-application-gateway-public-ip-ssl-offload/azuredeploy.json index 5c0ff96fd022..e3b277bdec55 100644 --- a/101-application-gateway-public-ip-ssl-offload/azuredeploy.json +++ b/101-application-gateway-public-ip-ssl-offload/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/101-application-gateway-public-ip-ssl-offload/azuredeploy.parameters.json b/101-application-gateway-public-ip-ssl-offload/azuredeploy.parameters.json index 48506969df7c..cd638bb5c05d 100644 --- a/101-application-gateway-public-ip-ssl-offload/azuredeploy.parameters.json +++ b/101-application-gateway-public-ip-ssl-offload/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/101-application-gateway-public-ip/azuredeploy.json b/101-application-gateway-public-ip/azuredeploy.json index d60feb925829..571c75b31093 100644 --- a/101-application-gateway-public-ip/azuredeploy.json +++ b/101-application-gateway-public-ip/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/101-application-gateway-public-ip/azuredeploy.parameters.json b/101-application-gateway-public-ip/azuredeploy.parameters.json index ab1b63b35252..cfa9433d2f61 100644 --- a/101-application-gateway-public-ip/azuredeploy.parameters.json +++ b/101-application-gateway-public-ip/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/101-application-gateway-redirect/azuredeploy.json b/101-application-gateway-redirect/azuredeploy.json index f67a55f27888..b8d160a8865a 100644 --- a/101-application-gateway-redirect/azuredeploy.json +++ b/101-application-gateway-redirect/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/101-application-gateway-redirect/azuredeploy.parameters.json b/101-application-gateway-redirect/azuredeploy.parameters.json index df92660ee143..dd517ccd9599 100644 --- a/101-application-gateway-redirect/azuredeploy.parameters.json +++ b/101-application-gateway-redirect/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "applicationGatewayName": { diff --git a/101-application-gateway-rewrite/azuredeploy.json b/101-application-gateway-rewrite/azuredeploy.json index 20f60d12b217..ecc7828b1d40 100644 --- a/101-application-gateway-rewrite/azuredeploy.json +++ b/101-application-gateway-rewrite/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/101-application-gateway-rewrite/azuredeploy.parameters.json b/101-application-gateway-rewrite/azuredeploy.parameters.json index 95ddea5b3518..15a3fe7ba605 100644 --- a/101-application-gateway-rewrite/azuredeploy.parameters.json +++ b/101-application-gateway-rewrite/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "backendIpAddress1": { diff --git a/101-application-gateway-v2-autoscale-create/azuredeploy.json b/101-application-gateway-v2-autoscale-create/azuredeploy.json index cf1127fe37a3..5fd02823e674 100644 --- a/101-application-gateway-v2-autoscale-create/azuredeploy.json +++ b/101-application-gateway-v2-autoscale-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion":"1.0.0.0", "parameters":{ "virtualNetworkName":{ diff --git a/101-application-gateway-v2-autoscale-create/azuredeploy.parameters.json b/101-application-gateway-v2-autoscale-create/azuredeploy.parameters.json index b3217d0f09b2..c3b1e8f73e45 100644 --- a/101-application-gateway-v2-autoscale-create/azuredeploy.parameters.json +++ b/101-application-gateway-v2-autoscale-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "frontendPort": { diff --git a/101-application-gateway-waf/azuredeploy.json b/101-application-gateway-waf/azuredeploy.json index cd4b5701f8df..481d6ca85c88 100644 --- a/101-application-gateway-waf/azuredeploy.json +++ b/101-application-gateway-waf/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-application-gateway-waf/azuredeploy.parameters.json b/101-application-gateway-waf/azuredeploy.parameters.json index 9c313f06f698..255f44a8196e 100644 --- a/101-application-gateway-waf/azuredeploy.parameters.json +++ b/101-application-gateway-waf/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-attestation-provider-create/azuredeploy.json b/101-attestation-provider-create/azuredeploy.json index a7e4bc37e43b..b1eec08c1e86 100644 --- a/101-attestation-provider-create/azuredeploy.json +++ b/101-attestation-provider-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "attestationProviderName": { diff --git a/101-attestation-provider-create/azuredeploy.parameters.json b/101-attestation-provider-create/azuredeploy.parameters.json index 2828bdc565b2..cc8dd15b5a75 100644 --- a/101-attestation-provider-create/azuredeploy.parameters.json +++ b/101-attestation-provider-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "attestationProviderName": { diff --git a/101-automation-configuration/azuredeploy.json b/101-automation-configuration/azuredeploy.json index f234f04f583a..bc76e9bdc029 100644 --- a/101-automation-configuration/azuredeploy.json +++ b/101-automation-configuration/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-automation-configuration/azuredeploy.parameters.json b/101-automation-configuration/azuredeploy.parameters.json index 7273858a2841..ec044eafd6eb 100644 --- a/101-automation-configuration/azuredeploy.parameters.json +++ b/101-automation-configuration/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-automation-configuration/nested/provisionConfiguration.json b/101-automation-configuration/nested/provisionConfiguration.json index 5d065e2c0f99..01ea5bc5d43d 100644 --- a/101-automation-configuration/nested/provisionConfiguration.json +++ b/101-automation-configuration/nested/provisionConfiguration.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { diff --git a/101-automation-configuration/nested/provisionDNS.json b/101-automation-configuration/nested/provisionDNS.json index 1e2c7a8d9ea6..e9de4ac00b22 100644 --- a/101-automation-configuration/nested/provisionDNS.json +++ b/101-automation-configuration/nested/provisionDNS.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-automation-configuration/nested/provisionNetwork.json b/101-automation-configuration/nested/provisionNetwork.json index fa7cec38565a..7f850b8008e5 100644 --- a/101-automation-configuration/nested/provisionNetwork.json +++ b/101-automation-configuration/nested/provisionNetwork.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-automation-configuration/nested/provisionServer.json b/101-automation-configuration/nested/provisionServer.json index ab3f8fd1f755..75b04be7436d 100644 --- a/101-automation-configuration/nested/provisionServer.json +++ b/101-automation-configuration/nested/provisionServer.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-availability-set-create-3FDs-20UDs/azuredeploy.json b/101-availability-set-create-3FDs-20UDs/azuredeploy.json index 458d4dd58546..55a5fc0d0090 100644 --- a/101-availability-set-create-3FDs-20UDs/azuredeploy.json +++ b/101-availability-set-create-3FDs-20UDs/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-availability-set-create-3FDs-20UDs/azuredeploy.parameters.json b/101-availability-set-create-3FDs-20UDs/azuredeploy.parameters.json index f82a42f5e74e..0fda165bddb9 100644 --- a/101-availability-set-create-3FDs-20UDs/azuredeploy.parameters.json +++ b/101-availability-set-create-3FDs-20UDs/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } } \ No newline at end of file diff --git a/101-azure-api-management-create/azuredeploy.json b/101-azure-api-management-create/azuredeploy.json index ff5214d6dee2..7d0b5acae391 100644 --- a/101-azure-api-management-create/azuredeploy.json +++ b/101-azure-api-management-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/101-azure-api-management-create/azuredeploy.parameters.json b/101-azure-api-management-create/azuredeploy.parameters.json index dea7e8053b63..fa847809b746 100644 --- a/101-azure-api-management-create/azuredeploy.parameters.json +++ b/101-azure-api-management-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/101-azure-bastion-nsg/azuredeploy.json b/101-azure-bastion-nsg/azuredeploy.json index 2eb70f4e6f56..622993b03fec 100644 --- a/101-azure-bastion-nsg/azuredeploy.json +++ b/101-azure-bastion-nsg/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnet-name": { diff --git a/101-azure-bastion-nsg/azuredeploy.parameters.json b/101-azure-bastion-nsg/azuredeploy.parameters.json index 6253d30eaf9d..750320277196 100644 --- a/101-azure-bastion-nsg/azuredeploy.parameters.json +++ b/101-azure-bastion-nsg/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "bastion-host-name": { diff --git a/101-azure-bastion/azuredeploy.json b/101-azure-bastion/azuredeploy.json index 195f7076d99c..5fa4616daf13 100644 --- a/101-azure-bastion/azuredeploy.json +++ b/101-azure-bastion/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnet-name": { diff --git a/101-azure-bastion/azuredeploy.parameters.json b/101-azure-bastion/azuredeploy.parameters.json index 6253d30eaf9d..750320277196 100644 --- a/101-azure-bastion/azuredeploy.parameters.json +++ b/101-azure-bastion/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "bastion-host-name": { diff --git a/101-azure-database-migration-service/azuredeploy.json b/101-azure-database-migration-service/azuredeploy.json index 77ef9dbf3a18..2ba88ef01c32 100644 --- a/101-azure-database-migration-service/azuredeploy.json +++ b/101-azure-database-migration-service/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-azure-database-migration-service/azuredeploy.parameters.json b/101-azure-database-migration-service/azuredeploy.parameters.json index f6d7c7fed51c..192543fa1ded 100644 --- a/101-azure-database-migration-service/azuredeploy.parameters.json +++ b/101-azure-database-migration-service/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sourceWindowsAdminUserName": { diff --git a/101-azure-dns-new-zone/azuredeploy.json b/101-azure-dns-new-zone/azuredeploy.json index 921d63a0cd1c..3eae8d8c2f68 100644 --- a/101-azure-dns-new-zone/azuredeploy.json +++ b/101-azure-dns-new-zone/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newZoneName": { diff --git a/101-azure-dns-new-zone/azuredeploy.parameters.json b/101-azure-dns-new-zone/azuredeploy.parameters.json index 74586147bf07..a7022673a9ba 100644 --- a/101-azure-dns-new-zone/azuredeploy.parameters.json +++ b/101-azure-dns-new-zone/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-azure-relay-create-namespace/azuredeploy.json b/101-azure-relay-create-namespace/azuredeploy.json index 3ac09066439c..2b5f6174ef3b 100644 --- a/101-azure-relay-create-namespace/azuredeploy.json +++ b/101-azure-relay-create-namespace/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nameSpace": { diff --git a/101-azure-relay-create-namespace/azuredeploy.parameters.json b/101-azure-relay-create-namespace/azuredeploy.parameters.json index 22dc361e399a..7da53d2de3a1 100644 --- a/101-azure-relay-create-namespace/azuredeploy.parameters.json +++ b/101-azure-relay-create-namespace/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "nameSpace": { diff --git a/101-azure-search-create/azuredeploy.json b/101-azure-search-create/azuredeploy.json index 551b6da8b349..c7cb04cb20b3 100644 --- a/101-azure-search-create/azuredeploy.json +++ b/101-azure-search-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/101-azure-search-create/azuredeploy.parameters.json b/101-azure-search-create/azuredeploy.parameters.json index c06f8ae0b625..8371c137410c 100644 --- a/101-azure-search-create/azuredeploy.parameters.json +++ b/101-azure-search-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/101-azurefirewall-create-with-ipgroups-and-linux-jumpbox/azuredeploy.json b/101-azurefirewall-create-with-ipgroups-and-linux-jumpbox/azuredeploy.json index 023fb78deedb..59fa34968cd6 100644 --- a/101-azurefirewall-create-with-ipgroups-and-linux-jumpbox/azuredeploy.json +++ b/101-azurefirewall-create-with-ipgroups-and-linux-jumpbox/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/101-azurefirewall-create-with-ipgroups-and-linux-jumpbox/azuredeploy.parameters.json b/101-azurefirewall-create-with-ipgroups-and-linux-jumpbox/azuredeploy.parameters.json index be34983de9fe..57d1b1890cb6 100644 --- a/101-azurefirewall-create-with-ipgroups-and-linux-jumpbox/azuredeploy.parameters.json +++ b/101-azurefirewall-create-with-ipgroups-and-linux-jumpbox/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-azurefirewall-create-with-zones/azuredeploy.json b/101-azurefirewall-create-with-zones/azuredeploy.json index 536844d6cf4d..3eb3e0d0800e 100644 --- a/101-azurefirewall-create-with-zones/azuredeploy.json +++ b/101-azurefirewall-create-with-zones/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/101-azurefirewall-create-with-zones/azuredeploy.parameters.json b/101-azurefirewall-create-with-zones/azuredeploy.parameters.json index c3cb74de5eae..0c1377389548 100644 --- a/101-azurefirewall-create-with-zones/azuredeploy.parameters.json +++ b/101-azurefirewall-create-with-zones/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-azurefirewall-forced-tunneling/azuredeploy.parameters.json b/101-azurefirewall-forced-tunneling/azuredeploy.parameters.json index be34983de9fe..57d1b1890cb6 100644 --- a/101-azurefirewall-forced-tunneling/azuredeploy.parameters.json +++ b/101-azurefirewall-forced-tunneling/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-azurefirewall-sandbox-linux/azuredeploy.json b/101-azurefirewall-sandbox-linux/azuredeploy.json index b8abe2e6af6a..6de2ec59c658 100644 --- a/101-azurefirewall-sandbox-linux/azuredeploy.json +++ b/101-azurefirewall-sandbox-linux/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/101-azurefirewall-sandbox-linux/azuredeploy.parameters.json b/101-azurefirewall-sandbox-linux/azuredeploy.parameters.json index fb662a30030a..96da7b82309d 100644 --- a/101-azurefirewall-sandbox-linux/azuredeploy.parameters.json +++ b/101-azurefirewall-sandbox-linux/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-azurefirewall-sandbox-linux/azuredeploy.parameters.us.json b/101-azurefirewall-sandbox-linux/azuredeploy.parameters.us.json index 434b180b8bad..909dabbe0e97 100644 --- a/101-azurefirewall-sandbox-linux/azuredeploy.parameters.us.json +++ b/101-azurefirewall-sandbox-linux/azuredeploy.parameters.us.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-azurefirewall-with-zones-sandbox/azuredeploy.json b/101-azurefirewall-with-zones-sandbox/azuredeploy.json index 3099242bf85a..81940518edcb 100644 --- a/101-azurefirewall-with-zones-sandbox/azuredeploy.json +++ b/101-azurefirewall-with-zones-sandbox/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/101-azurefirewall-with-zones-sandbox/azuredeploy.parameters.json b/101-azurefirewall-with-zones-sandbox/azuredeploy.parameters.json index 24d6d0ea17fd..53446a5eec23 100644 --- a/101-azurefirewall-with-zones-sandbox/azuredeploy.parameters.json +++ b/101-azurefirewall-with-zones-sandbox/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-azurepolicy-assign-builtinpolicy-resourcegroup/azuredeploy.json b/101-azurepolicy-assign-builtinpolicy-resourcegroup/azuredeploy.json index f69fa1d241e2..c687f67c168d 100644 --- a/101-azurepolicy-assign-builtinpolicy-resourcegroup/azuredeploy.json +++ b/101-azurepolicy-assign-builtinpolicy-resourcegroup/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "policyAssignmentName": { diff --git a/101-azurepolicy-assign-builtinpolicy-resourcegroup/azuredeploy.parameters.json b/101-azurepolicy-assign-builtinpolicy-resourcegroup/azuredeploy.parameters.json index fb5b77577d72..ae256b479049 100644 --- a/101-azurepolicy-assign-builtinpolicy-resourcegroup/azuredeploy.parameters.json +++ b/101-azurepolicy-assign-builtinpolicy-resourcegroup/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "policyAssignmentName":{ diff --git a/101-backup-la-reporting/azuredeploy.json b/101-backup-la-reporting/azuredeploy.json index 919417119190..2add1c89ee3d 100644 --- a/101-backup-la-reporting/azuredeploy.json +++ b/101-backup-la-reporting/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-backup-la-reporting/azuredeploy.parameters.json b/101-backup-la-reporting/azuredeploy.parameters.json index 6cceecad4c00..e3fd287d669c 100644 --- a/101-backup-la-reporting/azuredeploy.parameters.json +++ b/101-backup-la-reporting/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-backup-la-reporting/nestedtemplates/azure_alerts.json b/101-backup-la-reporting/nestedtemplates/azure_alerts.json index 47509fb30e76..508e5f3177c3 100644 --- a/101-backup-la-reporting/nestedtemplates/azure_alerts.json +++ b/101-backup-la-reporting/nestedtemplates/azure_alerts.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-backup-la-reporting/nestedtemplates/backup_items.json b/101-backup-la-reporting/nestedtemplates/backup_items.json index aa3a703adde7..ab7bc32660b1 100644 --- a/101-backup-la-reporting/nestedtemplates/backup_items.json +++ b/101-backup-la-reporting/nestedtemplates/backup_items.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-backup-la-reporting/nestedtemplates/backup_jobs_log.json b/101-backup-la-reporting/nestedtemplates/backup_jobs_log.json index a87c38f369d5..6f21b1164b71 100644 --- a/101-backup-la-reporting/nestedtemplates/backup_jobs_log.json +++ b/101-backup-la-reporting/nestedtemplates/backup_jobs_log.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-backup-la-reporting/nestedtemplates/backup_jobs_non_log.json b/101-backup-la-reporting/nestedtemplates/backup_jobs_non_log.json index c5344b6c3751..587e366dfad5 100644 --- a/101-backup-la-reporting/nestedtemplates/backup_jobs_non_log.json +++ b/101-backup-la-reporting/nestedtemplates/backup_jobs_non_log.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-backup-la-reporting/nestedtemplates/cloud_storage.json b/101-backup-la-reporting/nestedtemplates/cloud_storage.json index cc7a7ef45b89..ec126c6a13e4 100644 --- a/101-backup-la-reporting/nestedtemplates/cloud_storage.json +++ b/101-backup-la-reporting/nestedtemplates/cloud_storage.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-backup-la-reporting/nestedtemplates/on_prem_alerts.json b/101-backup-la-reporting/nestedtemplates/on_prem_alerts.json index ec8a8910177b..d33aa7cccb13 100644 --- a/101-backup-la-reporting/nestedtemplates/on_prem_alerts.json +++ b/101-backup-la-reporting/nestedtemplates/on_prem_alerts.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-backup-la-reporting/nestedtemplates/restore_jobs.json b/101-backup-la-reporting/nestedtemplates/restore_jobs.json index 0525648eb447..6b6cedafd894 100644 --- a/101-backup-la-reporting/nestedtemplates/restore_jobs.json +++ b/101-backup-la-reporting/nestedtemplates/restore_jobs.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-backup-la-reporting/prereqs/prereq.azuredeploy.json b/101-backup-la-reporting/prereqs/prereq.azuredeploy.json index e87d5f67b661..e53649588020 100644 --- a/101-backup-la-reporting/prereqs/prereq.azuredeploy.json +++ b/101-backup-la-reporting/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { @@ -19,7 +19,7 @@ "properties": { "mode": "Incremental", "template": { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "resources": [ { diff --git a/101-backup-la-reporting/prereqs/prereq.azuredeploy.parameters.json b/101-backup-la-reporting/prereqs/prereq.azuredeploy.parameters.json index 709cc2023f2c..d02efc7ee360 100644 --- a/101-backup-la-reporting/prereqs/prereq.azuredeploy.parameters.json +++ b/101-backup-la-reporting/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-backup-oms-monitoring/azuredeploy.json b/101-backup-oms-monitoring/azuredeploy.json index 619e76885dd1..c305b01c16ce 100644 --- a/101-backup-oms-monitoring/azuredeploy.json +++ b/101-backup-oms-monitoring/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceLocation": { diff --git a/101-backup-oms-monitoring/azuredeploy.parameters.json b/101-backup-oms-monitoring/azuredeploy.parameters.json index fe10c2f4ba63..5e21c4f80de0 100644 --- a/101-backup-oms-monitoring/azuredeploy.parameters.json +++ b/101-backup-oms-monitoring/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceLocation": { diff --git a/101-backup-protect-iaasvm/azuredeploy.json b/101-backup-protect-iaasvm/azuredeploy.json index b05e731aac5b..08332e53340c 100644 --- a/101-backup-protect-iaasvm/azuredeploy.json +++ b/101-backup-protect-iaasvm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingBackupVaultName": { diff --git a/101-backup-protect-iaasvm/azuredeploy.parameters.json b/101-backup-protect-iaasvm/azuredeploy.parameters.json index e779da7ee6ce..f11f43950dd9 100644 --- a/101-backup-protect-iaasvm/azuredeploy.parameters.json +++ b/101-backup-protect-iaasvm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingBackupVaultName": { diff --git a/101-backup-vault-create/azuredeploy.json b/101-backup-vault-create/azuredeploy.json index 92b367ae0520..2e4fb1a711ad 100644 --- a/101-backup-vault-create/azuredeploy.json +++ b/101-backup-vault-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vaultName": { diff --git a/101-backup-vault-create/azuredeploy.parameters.json b/101-backup-vault-create/azuredeploy.parameters.json index e3ed635078ea..6782cc7471fb 100644 --- a/101-backup-vault-create/azuredeploy.parameters.json +++ b/101-backup-vault-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vaultName": { diff --git a/101-batch-with-keyvault-pfx-password/azuredeploy.json b/101-batch-with-keyvault-pfx-password/azuredeploy.json index 3b870c367790..f4b393c06cbf 100644 --- a/101-batch-with-keyvault-pfx-password/azuredeploy.json +++ b/101-batch-with-keyvault-pfx-password/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "batchservice": { diff --git a/101-batch-with-keyvault-pfx-password/azuredeploy.parameters.json b/101-batch-with-keyvault-pfx-password/azuredeploy.parameters.json index 67fab8c1d40d..5b2c94deb140 100644 --- a/101-batch-with-keyvault-pfx-password/azuredeploy.parameters.json +++ b/101-batch-with-keyvault-pfx-password/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "batchservice": { diff --git a/101-batch-with-keyvault-pfx-password/prereqs/prereq.azuredeploy.json b/101-batch-with-keyvault-pfx-password/prereqs/prereq.azuredeploy.json index 1c9e76a168bc..1465d6843364 100644 --- a/101-batch-with-keyvault-pfx-password/prereqs/prereq.azuredeploy.json +++ b/101-batch-with-keyvault-pfx-password/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "certificatePrefixName": { diff --git a/101-batch-with-keyvault-pfx-password/prereqs/prereq.azuredeploy.parameters.json b/101-batch-with-keyvault-pfx-password/prereqs/prereq.azuredeploy.parameters.json index 668107ab3082..f01ffc8d2197 100644 --- a/101-batch-with-keyvault-pfx-password/prereqs/prereq.azuredeploy.parameters.json +++ b/101-batch-with-keyvault-pfx-password/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "certificatePfxBase64": { diff --git a/101-batchaccount-with-storage/azuredeploy.json b/101-batchaccount-with-storage/azuredeploy.json index 841260979c89..23ca6e438ba8 100644 --- a/101-batchaccount-with-storage/azuredeploy.json +++ b/101-batchaccount-with-storage/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "batchAccountName": { diff --git a/101-batchaccount-with-storage/azuredeploy.parameters.json b/101-batchaccount-with-storage/azuredeploy.parameters.json index 55c1a478b8b0..7b184898615f 100644 --- a/101-batchaccount-with-storage/azuredeploy.parameters.json +++ b/101-batchaccount-with-storage/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } } diff --git a/101-cdn-with-custom-origin/azuredeploy.json b/101-cdn-with-custom-origin/azuredeploy.json index 6feb9fcbddf4..93d50ccb550f 100644 --- a/101-cdn-with-custom-origin/azuredeploy.json +++ b/101-cdn-with-custom-origin/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "profileName": { diff --git a/101-cdn-with-custom-origin/azuredeploy.parameters.json b/101-cdn-with-custom-origin/azuredeploy.parameters.json index 662e4a7f80e3..83dffc479c5c 100644 --- a/101-cdn-with-custom-origin/azuredeploy.parameters.json +++ b/101-cdn-with-custom-origin/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "profileName": { diff --git a/101-cognitive-services-Computer-vision-API/azuredeploy.json b/101-cognitive-services-Computer-vision-API/azuredeploy.json index 2f49bfd26122..81bbbb7e7ff5 100644 --- a/101-cognitive-services-Computer-vision-API/azuredeploy.json +++ b/101-cognitive-services-Computer-vision-API/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cognitive-services-Computer-vision-API/azuredeploy.parameters.json b/101-cognitive-services-Computer-vision-API/azuredeploy.parameters.json index bfdbd6c17162..f94b24b1e2d7 100644 --- a/101-cognitive-services-Computer-vision-API/azuredeploy.parameters.json +++ b/101-cognitive-services-Computer-vision-API/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cognitive-services-translate/azuredeploy.json b/101-cognitive-services-translate/azuredeploy.json index 456c98ce2d85..5dbe51165618 100644 --- a/101-cognitive-services-translate/azuredeploy.json +++ b/101-cognitive-services-translate/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cognitive-services-translate/azuredeploy.parameters.json b/101-cognitive-services-translate/azuredeploy.parameters.json index 9c313f06f698..255f44a8196e 100644 --- a/101-cognitive-services-translate/azuredeploy.parameters.json +++ b/101-cognitive-services-translate/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-cognitive-services-universalkey/azuredeploy.json b/101-cognitive-services-universalkey/azuredeploy.json index 51ad39f45ffe..c7b794412a3c 100644 --- a/101-cognitive-services-universalkey/azuredeploy.json +++ b/101-cognitive-services-universalkey/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "cognitiveServiceName": { diff --git a/101-cognitive-services-universalkey/azuredeploy.parameters.json b/101-cognitive-services-universalkey/azuredeploy.parameters.json index 7369ff406a41..fb1b6e5102ea 100644 --- a/101-cognitive-services-universalkey/azuredeploy.parameters.json +++ b/101-cognitive-services-universalkey/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "cognitiveServiceName": { diff --git a/101-container-registry-geo-replication/azuredeploy.json b/101-container-registry-geo-replication/azuredeploy.json index ab6f46a24d89..a38e9dcec58a 100644 --- a/101-container-registry-geo-replication/azuredeploy.json +++ b/101-container-registry-geo-replication/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "acrName": { diff --git a/101-container-registry-geo-replication/azuredeploy.parameters.json b/101-container-registry-geo-replication/azuredeploy.parameters.json index bba38722962b..4f60c838ab9b 100644 --- a/101-container-registry-geo-replication/azuredeploy.parameters.json +++ b/101-container-registry-geo-replication/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "acrName": { diff --git a/101-container-registry/azuredeploy.json b/101-container-registry/azuredeploy.json index a8f685931285..67ba3ed55f5f 100644 --- a/101-container-registry/azuredeploy.json +++ b/101-container-registry/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "acrName": { diff --git a/101-container-registry/azuredeploy.parameters.json b/101-container-registry/azuredeploy.parameters.json index fc9d8ec74733..c818172d36a6 100644 --- a/101-container-registry/azuredeploy.parameters.json +++ b/101-container-registry/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "acrName": { diff --git a/101-cosmosdb-cassandra/azuredeploy.json b/101-cosmosdb-cassandra/azuredeploy.json index f4f95e9d6b1e..3348ef8a8d20 100644 --- a/101-cosmosdb-cassandra/azuredeploy.json +++ b/101-cosmosdb-cassandra/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-cassandra/azuredeploy.parameters.json b/101-cosmosdb-cassandra/azuredeploy.parameters.json index fb41a1416fce..002b64707b09 100644 --- a/101-cosmosdb-cassandra/azuredeploy.parameters.json +++ b/101-cosmosdb-cassandra/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-cassandra/azuredeploy.parameters.us.json b/101-cosmosdb-cassandra/azuredeploy.parameters.us.json index 44559f03c006..dfc4b732810d 100644 --- a/101-cosmosdb-cassandra/azuredeploy.parameters.us.json +++ b/101-cosmosdb-cassandra/azuredeploy.parameters.us.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-create-account/azuredeploy.json b/101-cosmosdb-create-account/azuredeploy.json index 0211344ce132..41140cfb3897 100644 --- a/101-cosmosdb-create-account/azuredeploy.json +++ b/101-cosmosdb-create-account/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/101-cosmosdb-create-account/azuredeploy.parameters.json b/101-cosmosdb-create-account/azuredeploy.parameters.json index 195ccd52a9bd..c7af4616c4fe 100644 --- a/101-cosmosdb-create-account/azuredeploy.parameters.json +++ b/101-cosmosdb-create-account/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/101-cosmosdb-create-multi-region-account/azuredeploy.json b/101-cosmosdb-create-multi-region-account/azuredeploy.json index 0cb765fa6653..87431683248b 100644 --- a/101-cosmosdb-create-multi-region-account/azuredeploy.json +++ b/101-cosmosdb-create-multi-region-account/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-create-multi-region-account/azuredeploy.parameters.json b/101-cosmosdb-create-multi-region-account/azuredeploy.parameters.json index 4a281e497caa..9f0cb7a1946c 100644 --- a/101-cosmosdb-create-multi-region-account/azuredeploy.parameters.json +++ b/101-cosmosdb-create-multi-region-account/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-create-multi-region-account/azuredeploy.parameters.us.json b/101-cosmosdb-create-multi-region-account/azuredeploy.parameters.us.json index 97269efb9c72..5d91447c04f1 100644 --- a/101-cosmosdb-create-multi-region-account/azuredeploy.parameters.us.json +++ b/101-cosmosdb-create-multi-region-account/azuredeploy.parameters.us.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-create/azuredeploy.json b/101-cosmosdb-create/azuredeploy.json index e1fbf21bebab..ceb8d31e3090 100644 --- a/101-cosmosdb-create/azuredeploy.json +++ b/101-cosmosdb-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-create/azuredeploy.parameters.json b/101-cosmosdb-create/azuredeploy.parameters.json index 660e5c0e161f..cdbc3b9cd787 100644 --- a/101-cosmosdb-create/azuredeploy.parameters.json +++ b/101-cosmosdb-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-create/azuredeploy.parameters.us.json b/101-cosmosdb-create/azuredeploy.parameters.us.json index c793d4bb541b..f35d0154ba7f 100644 --- a/101-cosmosdb-create/azuredeploy.parameters.us.json +++ b/101-cosmosdb-create/azuredeploy.parameters.us.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-gremlin/azuredeploy.json b/101-cosmosdb-gremlin/azuredeploy.json index a353014f931a..57da2e63e098 100644 --- a/101-cosmosdb-gremlin/azuredeploy.json +++ b/101-cosmosdb-gremlin/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-gremlin/azuredeploy.parameters.json b/101-cosmosdb-gremlin/azuredeploy.parameters.json index 65067eb2c7f3..01fbcb1280bb 100644 --- a/101-cosmosdb-gremlin/azuredeploy.parameters.json +++ b/101-cosmosdb-gremlin/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-gremlin/azuredeploy.parameters.us.json b/101-cosmosdb-gremlin/azuredeploy.parameters.us.json index 9830dab47ace..8463537126e8 100644 --- a/101-cosmosdb-gremlin/azuredeploy.parameters.us.json +++ b/101-cosmosdb-gremlin/azuredeploy.parameters.us.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-mongodb/azuredeploy.json b/101-cosmosdb-mongodb/azuredeploy.json index 3cddb50c5cc9..47f91746d6f9 100644 --- a/101-cosmosdb-mongodb/azuredeploy.json +++ b/101-cosmosdb-mongodb/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-mongodb/azuredeploy.parameters.json b/101-cosmosdb-mongodb/azuredeploy.parameters.json index e2d52c7c021b..43cd7aac9ca5 100644 --- a/101-cosmosdb-mongodb/azuredeploy.parameters.json +++ b/101-cosmosdb-mongodb/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-mongodb/azuredeploy.parameters.us.json b/101-cosmosdb-mongodb/azuredeploy.parameters.us.json index 5332bcfd4caa..c05b1c5dbae8 100644 --- a/101-cosmosdb-mongodb/azuredeploy.parameters.us.json +++ b/101-cosmosdb-mongodb/azuredeploy.parameters.us.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-sql-container-sprocs/azuredeploy.json b/101-cosmosdb-sql-container-sprocs/azuredeploy.json index b0630f95952b..5304d610f3d3 100644 --- a/101-cosmosdb-sql-container-sprocs/azuredeploy.json +++ b/101-cosmosdb-sql-container-sprocs/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-sql-container-sprocs/azuredeploy.parameters.json b/101-cosmosdb-sql-container-sprocs/azuredeploy.parameters.json index d40f886d51f8..f9d8f398cd6d 100644 --- a/101-cosmosdb-sql-container-sprocs/azuredeploy.parameters.json +++ b/101-cosmosdb-sql-container-sprocs/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-sql-container-sprocs/azuredeploy.parameters.us.json b/101-cosmosdb-sql-container-sprocs/azuredeploy.parameters.us.json index 01adaa92d1ff..1b3642b203b0 100644 --- a/101-cosmosdb-sql-container-sprocs/azuredeploy.parameters.us.json +++ b/101-cosmosdb-sql-container-sprocs/azuredeploy.parameters.us.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-sql/azuredeploy.json b/101-cosmosdb-sql/azuredeploy.json index b384e992838b..d6bb6ff2fd5a 100644 --- a/101-cosmosdb-sql/azuredeploy.json +++ b/101-cosmosdb-sql/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-sql/azuredeploy.parameters.json b/101-cosmosdb-sql/azuredeploy.parameters.json index 42343a232896..b362c50ed5c9 100644 --- a/101-cosmosdb-sql/azuredeploy.parameters.json +++ b/101-cosmosdb-sql/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-sql/azuredeploy.parameters.us.json b/101-cosmosdb-sql/azuredeploy.parameters.us.json index db0e3361b9c9..fe43574f2f33 100644 --- a/101-cosmosdb-sql/azuredeploy.parameters.us.json +++ b/101-cosmosdb-sql/azuredeploy.parameters.us.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-table/azuredeploy.json b/101-cosmosdb-table/azuredeploy.json index 95cb35011f8e..a3235c6532f8 100644 --- a/101-cosmosdb-table/azuredeploy.json +++ b/101-cosmosdb-table/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-table/azuredeploy.parameters.json b/101-cosmosdb-table/azuredeploy.parameters.json index e7fe8d89ff9b..a381cb43e12d 100644 --- a/101-cosmosdb-table/azuredeploy.parameters.json +++ b/101-cosmosdb-table/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-cosmosdb-table/azuredeploy.parameters.us.json b/101-cosmosdb-table/azuredeploy.parameters.us.json index 7def7ed631ed..5c4b923b189e 100644 --- a/101-cosmosdb-table/azuredeploy.parameters.us.json +++ b/101-cosmosdb-table/azuredeploy.parameters.us.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-create-ase-with-webapp/azuredeploy.json b/101-create-ase-with-webapp/azuredeploy.json index 2994f8634221..1b0810203e74 100644 --- a/101-create-ase-with-webapp/azuredeploy.json +++ b/101-create-ase-with-webapp/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "ASE-ipSslAddressCount": { diff --git a/101-create-ase-with-webapp/azuredeploy.parameters.json b/101-create-ase-with-webapp/azuredeploy.parameters.json index 842fa96f1414..ce6843a5b0f3 100644 --- a/101-create-ase-with-webapp/azuredeploy.parameters.json +++ b/101-create-ase-with-webapp/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-custom-rp-existing-resource-deployments/azuredeploy.parameters.json b/101-custom-rp-existing-resource-deployments/azuredeploy.parameters.json index c30329cd1773..ad15850db33a 100644 --- a/101-custom-rp-existing-resource-deployments/azuredeploy.parameters.json +++ b/101-custom-rp-existing-resource-deployments/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-custom-rp-with-function/azuredeploy.json b/101-custom-rp-with-function/azuredeploy.json index 4ee01004df09..bfcdafc86660 100644 --- a/101-custom-rp-with-function/azuredeploy.json +++ b/101-custom-rp-with-function/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-custom-rp-with-function/azuredeploy.parameters.json b/101-custom-rp-with-function/azuredeploy.parameters.json index 8bac0271e7dd..faec2843165f 100644 --- a/101-custom-rp-with-function/azuredeploy.parameters.json +++ b/101-custom-rp-with-function/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-custom-rp-with-logicapp/azuredeploy.parameters.json b/101-custom-rp-with-logicapp/azuredeploy.parameters.json index 18d654ac9007..f62e13b27a32 100644 --- a/101-custom-rp-with-logicapp/azuredeploy.parameters.json +++ b/101-custom-rp-with-logicapp/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-data-factory-blob-to-sql-copy-stored-proc/azuredeploy.json b/101-data-factory-blob-to-sql-copy-stored-proc/azuredeploy.json index 7ad14192e3dd..4d071e081261 100644 --- a/101-data-factory-blob-to-sql-copy-stored-proc/azuredeploy.json +++ b/101-data-factory-blob-to-sql-copy-stored-proc/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/101-data-factory-blob-to-sql-copy-stored-proc/azuredeploy.parameters.json b/101-data-factory-blob-to-sql-copy-stored-proc/azuredeploy.parameters.json index c5ff5d90ac53..c6e875e1e7ca 100644 --- a/101-data-factory-blob-to-sql-copy-stored-proc/azuredeploy.parameters.json +++ b/101-data-factory-blob-to-sql-copy-stored-proc/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/101-data-factory-blob-to-sql-copy/azuredeploy.json b/101-data-factory-blob-to-sql-copy/azuredeploy.json index 4c0d905bbb1c..48040184f0d6 100644 --- a/101-data-factory-blob-to-sql-copy/azuredeploy.json +++ b/101-data-factory-blob-to-sql-copy/azuredeploy.json @@ -1,6 +1,6 @@ { "contentVersion": "1.0.0.0", - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "parameters": { "storageAccountName": { "type": "string", diff --git a/101-data-factory-blob-to-sql-copy/azuredeploy.parameters.json b/101-data-factory-blob-to-sql-copy/azuredeploy.parameters.json index a05ebf9ad187..f938e7a20d2f 100644 --- a/101-data-factory-blob-to-sql-copy/azuredeploy.parameters.json +++ b/101-data-factory-blob-to-sql-copy/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/101-data-factory-chained-copy-activities/azuredeploy.json b/101-data-factory-chained-copy-activities/azuredeploy.json index 795db89348f1..43265b99f2a2 100644 --- a/101-data-factory-chained-copy-activities/azuredeploy.json +++ b/101-data-factory-chained-copy-activities/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dataLakeStoreUri": { diff --git a/101-data-factory-chained-copy-activities/azuredeploy.parameters.json b/101-data-factory-chained-copy-activities/azuredeploy.parameters.json index b97157357906..7b36ef0d031e 100644 --- a/101-data-factory-chained-copy-activities/azuredeploy.parameters.json +++ b/101-data-factory-chained-copy-activities/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dataLakeStoreUri": { diff --git a/101-data-factory-hive-transformation/azuredeploy.json b/101-data-factory-hive-transformation/azuredeploy.json index d95014bca233..3412f0b38b05 100644 --- a/101-data-factory-hive-transformation/azuredeploy.json +++ b/101-data-factory-hive-transformation/azuredeploy.json @@ -1,6 +1,6 @@ { "contentVersion": "1.0.0.0", - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "parameters": { "storageAccountResourceGroupName": { "type": "string", diff --git a/101-data-factory-hive-transformation/azuredeploy.parameters.json b/101-data-factory-hive-transformation/azuredeploy.parameters.json index f33bbc72c1bd..80f897fcb869 100644 --- a/101-data-factory-hive-transformation/azuredeploy.parameters.json +++ b/101-data-factory-hive-transformation/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountResourceGroupName": { diff --git a/101-data-factory-salesforce-to-blob-copy/azuredeploy.json b/101-data-factory-salesforce-to-blob-copy/azuredeploy.json index 570d4708f557..19cad103f46a 100644 --- a/101-data-factory-salesforce-to-blob-copy/azuredeploy.json +++ b/101-data-factory-salesforce-to-blob-copy/azuredeploy.json @@ -1,6 +1,6 @@ { "contentVersion": "1.0.0.0", - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "parameters": { "storageAccountName": { "type": "string", diff --git a/101-data-factory-salesforce-to-blob-copy/azuredeploy.parameters.json b/101-data-factory-salesforce-to-blob-copy/azuredeploy.parameters.json index 0528749457eb..75212ed80023 100644 --- a/101-data-factory-salesforce-to-blob-copy/azuredeploy.parameters.json +++ b/101-data-factory-salesforce-to-blob-copy/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/101-data-factory-v2-blob-to-blob-copy/azuredeploy.json b/101-data-factory-v2-blob-to-blob-copy/azuredeploy.json index cfcf0523c55a..fdca99205441 100644 --- a/101-data-factory-v2-blob-to-blob-copy/azuredeploy.json +++ b/101-data-factory-v2-blob-to-blob-copy/azuredeploy.json @@ -1,6 +1,6 @@ { "contentVersion": "1.0.0.0", - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "parameters": { "dataFactoryName": { "type": "string", diff --git a/101-data-factory-v2-blob-to-blob-copy/azuredeploy.parameters.json b/101-data-factory-v2-blob-to-blob-copy/azuredeploy.parameters.json index 2b1705833542..039a89f5038b 100644 --- a/101-data-factory-v2-blob-to-blob-copy/azuredeploy.parameters.json +++ b/101-data-factory-v2-blob-to-blob-copy/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dataFactoryName": { diff --git a/101-data-factory-v2-blob-to-blob-copy/prereqs/prereq.azuredeploy.json b/101-data-factory-v2-blob-to-blob-copy/prereqs/prereq.azuredeploy.json index 53c2f823ca33..c3cc64dc60ac 100644 --- a/101-data-factory-v2-blob-to-blob-copy/prereqs/prereq.azuredeploy.json +++ b/101-data-factory-v2-blob-to-blob-copy/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { }, diff --git a/101-data-factory-v2-blob-to-blob-copy/prereqs/prereq.azuredeploy.parameters.json b/101-data-factory-v2-blob-to-blob-copy/prereqs/prereq.azuredeploy.parameters.json index ea27417e3572..281531feda89 100644 --- a/101-data-factory-v2-blob-to-blob-copy/prereqs/prereq.azuredeploy.parameters.json +++ b/101-data-factory-v2-blob-to-blob-copy/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-data-factory-v2-blob-to-mysql-copy/azuredeploy.json b/101-data-factory-v2-blob-to-mysql-copy/azuredeploy.json index 0a400b3ae0cb..304822c2233c 100644 --- a/101-data-factory-v2-blob-to-mysql-copy/azuredeploy.json +++ b/101-data-factory-v2-blob-to-mysql-copy/azuredeploy.json @@ -1,6 +1,6 @@ { "contentVersion": "1.0.0.0", - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "parameters": { "dataFactoryName": { "type": "string", diff --git a/101-data-factory-v2-blob-to-mysql-copy/azuredeploy.parameters.json b/101-data-factory-v2-blob-to-mysql-copy/azuredeploy.parameters.json index 10e42656079e..4d7ebd21f405 100644 --- a/101-data-factory-v2-blob-to-mysql-copy/azuredeploy.parameters.json +++ b/101-data-factory-v2-blob-to-mysql-copy/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dataFactoryName": { diff --git a/101-data-factory-v2-blob-to-mysql-copy/prereqs/prereq.azuredeploy.json b/101-data-factory-v2-blob-to-mysql-copy/prereqs/prereq.azuredeploy.json index 9ee66d355b5b..6af9b671ad95 100644 --- a/101-data-factory-v2-blob-to-mysql-copy/prereqs/prereq.azuredeploy.json +++ b/101-data-factory-v2-blob-to-mysql-copy/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serverUsername": { diff --git a/101-data-factory-v2-blob-to-mysql-copy/prereqs/prereq.azuredeploy.parameters.json b/101-data-factory-v2-blob-to-mysql-copy/prereqs/prereq.azuredeploy.parameters.json index 760bc612495d..d00c2a6d55f6 100644 --- a/101-data-factory-v2-blob-to-mysql-copy/prereqs/prereq.azuredeploy.parameters.json +++ b/101-data-factory-v2-blob-to-mysql-copy/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serverUsername": { diff --git a/101-data-factory-v2-blob-to-postgresql-copy/azuredeploy.json b/101-data-factory-v2-blob-to-postgresql-copy/azuredeploy.json index e232e3ff2777..109327d2202f 100644 --- a/101-data-factory-v2-blob-to-postgresql-copy/azuredeploy.json +++ b/101-data-factory-v2-blob-to-postgresql-copy/azuredeploy.json @@ -1,6 +1,6 @@ { "contentVersion": "1.0.0.0", - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "parameters": { "dataFactoryName": { "type": "string", diff --git a/101-data-factory-v2-blob-to-postgresql-copy/azuredeploy.parameters.json b/101-data-factory-v2-blob-to-postgresql-copy/azuredeploy.parameters.json index 9c41a7a96050..7a39f05db51b 100644 --- a/101-data-factory-v2-blob-to-postgresql-copy/azuredeploy.parameters.json +++ b/101-data-factory-v2-blob-to-postgresql-copy/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dataFactoryName": { diff --git a/101-data-factory-v2-blob-to-postgresql-copy/prereqs/prereq.azuredeploy.json b/101-data-factory-v2-blob-to-postgresql-copy/prereqs/prereq.azuredeploy.json index becac5d80e87..086ac315fcb6 100644 --- a/101-data-factory-v2-blob-to-postgresql-copy/prereqs/prereq.azuredeploy.json +++ b/101-data-factory-v2-blob-to-postgresql-copy/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serverUsername": { diff --git a/101-data-factory-v2-blob-to-postgresql-copy/prereqs/prereq.azuredeploy.parameters.json b/101-data-factory-v2-blob-to-postgresql-copy/prereqs/prereq.azuredeploy.parameters.json index f97e5e7fda2c..bb16b4a9e663 100644 --- a/101-data-factory-v2-blob-to-postgresql-copy/prereqs/prereq.azuredeploy.parameters.json +++ b/101-data-factory-v2-blob-to-postgresql-copy/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serverUsername": { diff --git a/101-data-factory-v2-blob-to-sql-copy/azuredeploy.json b/101-data-factory-v2-blob-to-sql-copy/azuredeploy.json index 43816c495f00..2d4fe57b8d34 100644 --- a/101-data-factory-v2-blob-to-sql-copy/azuredeploy.json +++ b/101-data-factory-v2-blob-to-sql-copy/azuredeploy.json @@ -1,6 +1,6 @@ { "contentVersion": "1.0.0.0", - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "parameters": { "dataFactoryName": { "type": "string", diff --git a/101-data-factory-v2-blob-to-sql-copy/azuredeploy.parameters.json b/101-data-factory-v2-blob-to-sql-copy/azuredeploy.parameters.json index 1fd5666579bb..7e11e6fb4126 100644 --- a/101-data-factory-v2-blob-to-sql-copy/azuredeploy.parameters.json +++ b/101-data-factory-v2-blob-to-sql-copy/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dataFactoryName": { diff --git a/101-data-factory-v2-blob-to-sql-copy/prereqs/prereq.azuredeploy.json b/101-data-factory-v2-blob-to-sql-copy/prereqs/prereq.azuredeploy.json index 86ba25759e93..eca73699820f 100644 --- a/101-data-factory-v2-blob-to-sql-copy/prereqs/prereq.azuredeploy.json +++ b/101-data-factory-v2-blob-to-sql-copy/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "databaseAdminUsername": { diff --git a/101-data-factory-v2-blob-to-sql-copy/prereqs/prereq.azuredeploy.parameters.json b/101-data-factory-v2-blob-to-sql-copy/prereqs/prereq.azuredeploy.parameters.json index 423c50e62507..ee6fb2defe58 100644 --- a/101-data-factory-v2-blob-to-sql-copy/prereqs/prereq.azuredeploy.parameters.json +++ b/101-data-factory-v2-blob-to-sql-copy/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "databaseAdminUsername": { diff --git a/101-data-factory-v2-create/azuredeploy.json b/101-data-factory-v2-create/azuredeploy.json index a966ef04f43c..0491018f7641 100644 --- a/101-data-factory-v2-create/azuredeploy.json +++ b/101-data-factory-v2-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/101-data-factory-v2-create/azuredeploy.parameters.json b/101-data-factory-v2-create/azuredeploy.parameters.json index 195ccd52a9bd..c7af4616c4fe 100644 --- a/101-data-factory-v2-create/azuredeploy.parameters.json +++ b/101-data-factory-v2-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/101-data-factory-v2-onprem-sql-to-blob-copy/azuredeploy.json b/101-data-factory-v2-onprem-sql-to-blob-copy/azuredeploy.json index fc0dbf8bb416..783c05b94953 100644 --- a/101-data-factory-v2-onprem-sql-to-blob-copy/azuredeploy.json +++ b/101-data-factory-v2-onprem-sql-to-blob-copy/azuredeploy.json @@ -1,6 +1,6 @@ { "contentVersion": "1.0.0.0", - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "parameters": { "dataFactoryName": { "type": "string", diff --git a/101-data-factory-v2-onprem-sql-to-blob-copy/azuredeploy.parameters.json b/101-data-factory-v2-onprem-sql-to-blob-copy/azuredeploy.parameters.json index 47ab9eb68c0a..51679266d1da 100644 --- a/101-data-factory-v2-onprem-sql-to-blob-copy/azuredeploy.parameters.json +++ b/101-data-factory-v2-onprem-sql-to-blob-copy/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dataFactoryName": { diff --git a/101-data-factory-v2-onprem-sql-to-blob-copy/prereqs/prereq.azuredeploy.json b/101-data-factory-v2-onprem-sql-to-blob-copy/prereqs/prereq.azuredeploy.json index 669106faeb27..3da6314dbcd8 100644 --- a/101-data-factory-v2-onprem-sql-to-blob-copy/prereqs/prereq.azuredeploy.json +++ b/101-data-factory-v2-onprem-sql-to-blob-copy/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-data-factory-v2-onprem-sql-to-blob-copy/prereqs/prereq.azuredeploy.parameters.json b/101-data-factory-v2-onprem-sql-to-blob-copy/prereqs/prereq.azuredeploy.parameters.json index 0c3975662be1..fb2d7f1a9715 100644 --- a/101-data-factory-v2-onprem-sql-to-blob-copy/prereqs/prereq.azuredeploy.parameters.json +++ b/101-data-factory-v2-onprem-sql-to-blob-copy/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-data-factory-v2-provision-ssis-runtime/azuredeploy.json b/101-data-factory-v2-provision-ssis-runtime/azuredeploy.json index 158afa9a5050..cb9ffbc9de32 100644 --- a/101-data-factory-v2-provision-ssis-runtime/azuredeploy.json +++ b/101-data-factory-v2-provision-ssis-runtime/azuredeploy.json @@ -1,6 +1,6 @@ { "contentVersion": "1.0.0.0", - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "parameters": { "dataFactoryName": { "type": "string", diff --git a/101-data-factory-v2-provision-ssis-runtime/azuredeploy.parameters.json b/101-data-factory-v2-provision-ssis-runtime/azuredeploy.parameters.json index 4d16fd09c769..0f7ec09d0bd5 100644 --- a/101-data-factory-v2-provision-ssis-runtime/azuredeploy.parameters.json +++ b/101-data-factory-v2-provision-ssis-runtime/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dataFactoryName": { diff --git a/101-data-factory-v2-provision-ssis-runtime/prereqs/prereq.azuredeploy.json b/101-data-factory-v2-provision-ssis-runtime/prereqs/prereq.azuredeploy.json index 3f95bc87f6f3..679eaec749eb 100644 --- a/101-data-factory-v2-provision-ssis-runtime/prereqs/prereq.azuredeploy.json +++ b/101-data-factory-v2-provision-ssis-runtime/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "databaseAdminUsername": { diff --git a/101-data-factory-v2-provision-ssis-runtime/prereqs/prereq.azuredeploy.parameters.json b/101-data-factory-v2-provision-ssis-runtime/prereqs/prereq.azuredeploy.parameters.json index 423c50e62507..ee6fb2defe58 100644 --- a/101-data-factory-v2-provision-ssis-runtime/prereqs/prereq.azuredeploy.parameters.json +++ b/101-data-factory-v2-provision-ssis-runtime/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "databaseAdminUsername": { diff --git a/101-data-factory-v2-transform-using-spark/azuredeploy.json b/101-data-factory-v2-transform-using-spark/azuredeploy.json index c4682da05313..3c3b3d2c4980 100644 --- a/101-data-factory-v2-transform-using-spark/azuredeploy.json +++ b/101-data-factory-v2-transform-using-spark/azuredeploy.json @@ -1,6 +1,6 @@ { "contentVersion": "1.0.0.0", - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "parameters": { "dataFactoryName": { "type": "string", diff --git a/101-data-factory-v2-transform-using-spark/azuredeploy.parameters.json b/101-data-factory-v2-transform-using-spark/azuredeploy.parameters.json index 2e6bd5fb2ad3..cee5c761f016 100644 --- a/101-data-factory-v2-transform-using-spark/azuredeploy.parameters.json +++ b/101-data-factory-v2-transform-using-spark/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dataFactoryName": { diff --git a/101-data-factory-v2-transform-using-spark/prereqs/prereq.azuredeploy.json b/101-data-factory-v2-transform-using-spark/prereqs/prereq.azuredeploy.json index 669106faeb27..3da6314dbcd8 100644 --- a/101-data-factory-v2-transform-using-spark/prereqs/prereq.azuredeploy.json +++ b/101-data-factory-v2-transform-using-spark/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-data-factory-v2-transform-using-spark/prereqs/prereq.azuredeploy.parameters.json b/101-data-factory-v2-transform-using-spark/prereqs/prereq.azuredeploy.parameters.json index ea27417e3572..281531feda89 100644 --- a/101-data-factory-v2-transform-using-spark/prereqs/prereq.azuredeploy.parameters.json +++ b/101-data-factory-v2-transform-using-spark/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-data-lake-analytics/azuredeploy.json b/101-data-lake-analytics/azuredeploy.json index 3cffb771e27f..a38d17976185 100644 --- a/101-data-lake-analytics/azuredeploy.json +++ b/101-data-lake-analytics/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adlAnalyticsName": { diff --git a/101-data-lake-analytics/azuredeploy.parameters.json b/101-data-lake-analytics/azuredeploy.parameters.json index bab17551bc3b..7ca89191577e 100644 --- a/101-data-lake-analytics/azuredeploy.parameters.json +++ b/101-data-lake-analytics/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adlAnalyticsName": { diff --git a/101-data-lake-store-encryption-adls/azuredeploy.json b/101-data-lake-store-encryption-adls/azuredeploy.json index d5c4abb398f8..dfb3b83588e3 100644 --- a/101-data-lake-store-encryption-adls/azuredeploy.json +++ b/101-data-lake-store-encryption-adls/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-data-lake-store-encryption-adls/azuredeploy.parameters.json b/101-data-lake-store-encryption-adls/azuredeploy.parameters.json index 627b0128c2e7..69d6348d99eb 100644 --- a/101-data-lake-store-encryption-adls/azuredeploy.parameters.json +++ b/101-data-lake-store-encryption-adls/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-data-lake-store-encryption-key-vault/azuredeploy.json b/101-data-lake-store-encryption-key-vault/azuredeploy.json index aee632872246..a90e41604a6f 100644 --- a/101-data-lake-store-encryption-key-vault/azuredeploy.json +++ b/101-data-lake-store-encryption-key-vault/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "0.9.0.0", "parameters": { "dataLakeStoreName": { @@ -78,7 +78,7 @@ "properties": { "mode": "Incremental", "template": { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "0.9.0.0", "resources": [ { @@ -115,7 +115,7 @@ "properties": { "mode": "Incremental", "template": { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "0.9.0.0", "resources": [ { diff --git a/101-data-lake-store-encryption-key-vault/azuredeploy.parameters.json b/101-data-lake-store-encryption-key-vault/azuredeploy.parameters.json index 5052298a20ee..3c2d510734a3 100644 --- a/101-data-lake-store-encryption-key-vault/azuredeploy.parameters.json +++ b/101-data-lake-store-encryption-key-vault/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dataLakeStoreName": { diff --git a/101-data-lake-store-no-encryption/azuredeploy.json b/101-data-lake-store-no-encryption/azuredeploy.json index 5b516b809dc4..30d712b0fd2f 100644 --- a/101-data-lake-store-no-encryption/azuredeploy.json +++ b/101-data-lake-store-no-encryption/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-data-lake-store-no-encryption/azuredeploy.parameters.json b/101-data-lake-store-no-encryption/azuredeploy.parameters.json index 627b0128c2e7..69d6348d99eb 100644 --- a/101-data-lake-store-no-encryption/azuredeploy.parameters.json +++ b/101-data-lake-store-no-encryption/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-databricks-all-in-one-template-for-vnet-injection/azuredeploy.json b/101-databricks-all-in-one-template-for-vnet-injection/azuredeploy.json index 4633b73207c4..fb74ffdc6b1d 100644 --- a/101-databricks-all-in-one-template-for-vnet-injection/azuredeploy.json +++ b/101-databricks-all-in-one-template-for-vnet-injection/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nsgName": { diff --git a/101-databricks-all-in-one-template-for-vnet-injection/azuredeploy.parameters.json b/101-databricks-all-in-one-template-for-vnet-injection/azuredeploy.parameters.json index 00b28ae4a5c7..0df23080c387 100644 --- a/101-databricks-all-in-one-template-for-vnet-injection/azuredeploy.parameters.json +++ b/101-databricks-all-in-one-template-for-vnet-injection/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/101-databricks-vnet-for-vnet-injection/azuredeploy.json b/101-databricks-vnet-for-vnet-injection/azuredeploy.json index 496593001257..054a1ab6c6f7 100644 --- a/101-databricks-vnet-for-vnet-injection/azuredeploy.json +++ b/101-databricks-vnet-for-vnet-injection/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nsgId": { diff --git a/101-databricks-vnet-for-vnet-injection/azuredeploy.parameters.json b/101-databricks-vnet-for-vnet-injection/azuredeploy.parameters.json index 6531e713e08f..0781c9997501 100644 --- a/101-databricks-vnet-for-vnet-injection/azuredeploy.parameters.json +++ b/101-databricks-vnet-for-vnet-injection/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "nsgId": { diff --git a/101-databricks-vnet-for-vnet-injection/prereqs/prereq.azuredeploy.json b/101-databricks-vnet-for-vnet-injection/prereqs/prereq.azuredeploy.json index a7fa4a9f829e..861cf8077272 100644 --- a/101-databricks-vnet-for-vnet-injection/prereqs/prereq.azuredeploy.json +++ b/101-databricks-vnet-for-vnet-injection/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-databricks-vnet-for-vnet-injection/prereqs/prereq.azuredeploy.parameters.json b/101-databricks-vnet-for-vnet-injection/prereqs/prereq.azuredeploy.parameters.json index c3f18cd2728e..4be9503d56d6 100644 --- a/101-databricks-vnet-for-vnet-injection/prereqs/prereq.azuredeploy.parameters.json +++ b/101-databricks-vnet-for-vnet-injection/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-databricks-workspace-with-custom-vnet-address/azuredeploy.json b/101-databricks-workspace-with-custom-vnet-address/azuredeploy.json index 17450d0bdc0d..d813b3d6470c 100644 --- a/101-databricks-workspace-with-custom-vnet-address/azuredeploy.json +++ b/101-databricks-workspace-with-custom-vnet-address/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/101-databricks-workspace-with-custom-vnet-address/azuredeploy.parameters.json b/101-databricks-workspace-with-custom-vnet-address/azuredeploy.parameters.json index ce901c1b8f0f..260b164ef236 100644 --- a/101-databricks-workspace-with-custom-vnet-address/azuredeploy.parameters.json +++ b/101-databricks-workspace-with-custom-vnet-address/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/101-databricks-workspace-with-vnet-injection/azuredeploy.json b/101-databricks-workspace-with-vnet-injection/azuredeploy.json index 7c1f6ccc2d35..ba20cc7383bc 100644 --- a/101-databricks-workspace-with-vnet-injection/azuredeploy.json +++ b/101-databricks-workspace-with-vnet-injection/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/101-databricks-workspace-with-vnet-injection/azuredeploy.parameters.json b/101-databricks-workspace-with-vnet-injection/azuredeploy.parameters.json index 6668c19a7496..444c132ad426 100644 --- a/101-databricks-workspace-with-vnet-injection/azuredeploy.parameters.json +++ b/101-databricks-workspace-with-vnet-injection/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/101-databricks-workspace-with-vnet-injection/prereqs/prereq.azuredeploy.json b/101-databricks-workspace-with-vnet-injection/prereqs/prereq.azuredeploy.json index 8869be65228b..6c60ffde4f7e 100644 --- a/101-databricks-workspace-with-vnet-injection/prereqs/prereq.azuredeploy.json +++ b/101-databricks-workspace-with-vnet-injection/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-databricks-workspace-with-vnet-injection/prereqs/prereq.azuredeploy.parameters.json b/101-databricks-workspace-with-vnet-injection/prereqs/prereq.azuredeploy.parameters.json index c3f18cd2728e..4be9503d56d6 100644 --- a/101-databricks-workspace-with-vnet-injection/prereqs/prereq.azuredeploy.parameters.json +++ b/101-databricks-workspace-with-vnet-injection/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-databricks-workspace/azuredeploy.json b/101-databricks-workspace/azuredeploy.json index 93e4e10a5455..645fef64c229 100644 --- a/101-databricks-workspace/azuredeploy.json +++ b/101-databricks-workspace/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/101-databricks-workspace/azuredeploy.parameters.json b/101-databricks-workspace/azuredeploy.parameters.json index ce901c1b8f0f..260b164ef236 100644 --- a/101-databricks-workspace/azuredeploy.parameters.json +++ b/101-databricks-workspace/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/101-default-shared-dashboard/azuredeploy.json b/101-default-shared-dashboard/azuredeploy.json index 9a34c3ee7e32..e9a0aa2d33bc 100644 --- a/101-default-shared-dashboard/azuredeploy.json +++ b/101-default-shared-dashboard/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dashboardName": { diff --git a/101-default-shared-dashboard/azuredeploy.parameters.json b/101-default-shared-dashboard/azuredeploy.parameters.json index a5712f5ce11e..7fdd55f014fe 100644 --- a/101-default-shared-dashboard/azuredeploy.parameters.json +++ b/101-default-shared-dashboard/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dashboardName": { diff --git a/101-dtl-create-lab/azuredeploy.json b/101-dtl-create-lab/azuredeploy.json index 520ccd211087..2b50c1a0afc8 100644 --- a/101-dtl-create-lab/azuredeploy.json +++ b/101-dtl-create-lab/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newLabName": { diff --git a/101-dtl-create-lab/azuredeploy.parameters.json b/101-dtl-create-lab/azuredeploy.parameters.json index 69f871018e83..a4259f36823d 100644 --- a/101-dtl-create-lab/azuredeploy.parameters.json +++ b/101-dtl-create-lab/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newLabName": { diff --git a/101-event-grid-cloudevents/azuredeploy.json b/101-event-grid-cloudevents/azuredeploy.json index cdc50a455ffa..0b170a8572c8 100644 --- a/101-event-grid-cloudevents/azuredeploy.json +++ b/101-event-grid-cloudevents/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-event-grid-cloudevents/azuredeploy.parameters.json b/101-event-grid-cloudevents/azuredeploy.parameters.json index 6047325d5f88..7f903cfaf2cf 100644 --- a/101-event-grid-cloudevents/azuredeploy.parameters.json +++ b/101-event-grid-cloudevents/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "logicAppName": { diff --git a/101-event-grid-event-hubs-handler/azuredeploy.json b/101-event-grid-event-hubs-handler/azuredeploy.json index 0cd25fd893b8..3ff8ada3e600 100644 --- a/101-event-grid-event-hubs-handler/azuredeploy.json +++ b/101-event-grid-event-hubs-handler/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "topicName": { diff --git a/101-event-grid-event-hubs-handler/azuredeploy.parameters.json b/101-event-grid-event-hubs-handler/azuredeploy.parameters.json index 158b560bac80..07d4a5ac3400 100644 --- a/101-event-grid-event-hubs-handler/azuredeploy.parameters.json +++ b/101-event-grid-event-hubs-handler/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "topicName": { diff --git a/101-event-grid-resource-events-to-webhook/azuredeploy.json b/101-event-grid-resource-events-to-webhook/azuredeploy.json index 353262de42ce..cca49739a22c 100644 --- a/101-event-grid-resource-events-to-webhook/azuredeploy.json +++ b/101-event-grid-resource-events-to-webhook/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "eventSubName": { diff --git a/101-event-grid-resource-events-to-webhook/azuredeploy.parameters.json b/101-event-grid-resource-events-to-webhook/azuredeploy.parameters.json index 68b332caeae4..a53f771a8ee4 100644 --- a/101-event-grid-resource-events-to-webhook/azuredeploy.parameters.json +++ b/101-event-grid-resource-events-to-webhook/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "endpoint": { diff --git a/101-event-grid-resource-events-to-webhook/prereqs/prereq.azuredeploy.json b/101-event-grid-resource-events-to-webhook/prereqs/prereq.azuredeploy.json index 58e5beacaa64..de4a7903b02d 100644 --- a/101-event-grid-resource-events-to-webhook/prereqs/prereq.azuredeploy.json +++ b/101-event-grid-resource-events-to-webhook/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-event-grid-resource-events-to-webhook/prereqs/prereq.azuredeploy.parameters.json b/101-event-grid-resource-events-to-webhook/prereqs/prereq.azuredeploy.parameters.json index aec682e5674c..c79c2da6de3d 100644 --- a/101-event-grid-resource-events-to-webhook/prereqs/prereq.azuredeploy.parameters.json +++ b/101-event-grid-resource-events-to-webhook/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-event-grid-subscription-and-storage/azuredeploy.json b/101-event-grid-subscription-and-storage/azuredeploy.json index 9a011a9483f1..f6ec250b5bd3 100644 --- a/101-event-grid-subscription-and-storage/azuredeploy.json +++ b/101-event-grid-subscription-and-storage/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageName": { diff --git a/101-event-grid-subscription-and-storage/azuredeploy.parameters.json b/101-event-grid-subscription-and-storage/azuredeploy.parameters.json index 6a4916d3f710..8563384f8680 100644 --- a/101-event-grid-subscription-and-storage/azuredeploy.parameters.json +++ b/101-event-grid-subscription-and-storage/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "endpoint": { diff --git a/101-event-grid-subscription-and-storage/prereqs/prereq.azuredeploy.json b/101-event-grid-subscription-and-storage/prereqs/prereq.azuredeploy.json index 58e5beacaa64..de4a7903b02d 100644 --- a/101-event-grid-subscription-and-storage/prereqs/prereq.azuredeploy.json +++ b/101-event-grid-subscription-and-storage/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-event-grid-subscription-and-storage/prereqs/prereq.azuredeploy.parameters.json b/101-event-grid-subscription-and-storage/prereqs/prereq.azuredeploy.parameters.json index aec682e5674c..c79c2da6de3d 100644 --- a/101-event-grid-subscription-and-storage/prereqs/prereq.azuredeploy.parameters.json +++ b/101-event-grid-subscription-and-storage/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-event-grid/azuredeploy.json b/101-event-grid/azuredeploy.json index abef3850a6e0..913fb9e30a13 100644 --- a/101-event-grid/azuredeploy.json +++ b/101-event-grid/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "eventGridTopicName": { diff --git a/101-event-grid/azuredeploy.parameters.json b/101-event-grid/azuredeploy.parameters.json index 3d98b7c3ad92..216bc1642985 100644 --- a/101-event-grid/azuredeploy.parameters.json +++ b/101-event-grid/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "eventGridTopicName": { diff --git a/101-eventhubs-create-namespace-and-eventhub/azuredeploy.json b/101-eventhubs-create-namespace-and-eventhub/azuredeploy.json index e641c50aecca..d5360d8c235d 100644 --- a/101-eventhubs-create-namespace-and-eventhub/azuredeploy.json +++ b/101-eventhubs-create-namespace-and-eventhub/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "projectName":{ diff --git a/101-eventhubs-create-namespace-and-eventhub/azuredeploy.parameters.json b/101-eventhubs-create-namespace-and-eventhub/azuredeploy.parameters.json index 7108e4ec7dd3..505a7a117b23 100644 --- a/101-eventhubs-create-namespace-and-eventhub/azuredeploy.parameters.json +++ b/101-eventhubs-create-namespace-and-eventhub/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "projectName": { diff --git a/101-expressroute-circuit-create/azuredeploy.json b/101-expressroute-circuit-create/azuredeploy.json index cf0dce109135..36de50813fb6 100644 --- a/101-expressroute-circuit-create/azuredeploy.json +++ b/101-expressroute-circuit-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "circuitName": { diff --git a/101-expressroute-circuit-create/azuredeploy.parameters.json b/101-expressroute-circuit-create/azuredeploy.parameters.json index 1b2fd3d5ec7d..32ecfe79af5b 100644 --- a/101-expressroute-circuit-create/azuredeploy.parameters.json +++ b/101-expressroute-circuit-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "circuitName": { diff --git a/101-front-door-create-basic/azuredeploy.json b/101-front-door-create-basic/azuredeploy.json index d17e0bdd3b58..6970e7e7e755 100644 --- a/101-front-door-create-basic/azuredeploy.json +++ b/101-front-door-create-basic/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "frontDoorName": { diff --git a/101-front-door-create-basic/azuredeploy.parameters.json b/101-front-door-create-basic/azuredeploy.parameters.json index e8b67c50a873..be0bce1b6457 100644 --- a/101-front-door-create-basic/azuredeploy.parameters.json +++ b/101-front-door-create-basic/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "frontDoorName": { diff --git a/101-front-door-create-multiple-backends/azuredeploy.parameters.json b/101-front-door-create-multiple-backends/azuredeploy.parameters.json index 122457b8810b..b64a64274e6b 100644 --- a/101-front-door-create-multiple-backends/azuredeploy.parameters.json +++ b/101-front-door-create-multiple-backends/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "frontDoorName": { diff --git a/101-front-door-custom-domain/azuredeploy.json b/101-front-door-custom-domain/azuredeploy.json index e4495f5ceecb..6e68153cce7f 100644 --- a/101-front-door-custom-domain/azuredeploy.json +++ b/101-front-door-custom-domain/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "frontDoorName": { diff --git a/101-front-door-custom-domain/azuredeploy.parameters.json b/101-front-door-custom-domain/azuredeploy.parameters.json index 8dc07023f5b0..5651bbd301b2 100644 --- a/101-front-door-custom-domain/azuredeploy.parameters.json +++ b/101-front-door-custom-domain/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "frontDoorName": { diff --git a/101-front-door-geo-filtering/azuredeploy.json b/101-front-door-geo-filtering/azuredeploy.json index b09371d8dcd1..1861fef4d7b0 100644 --- a/101-front-door-geo-filtering/azuredeploy.json +++ b/101-front-door-geo-filtering/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "wafPolicyName": { diff --git a/101-front-door-geo-filtering/azuredeploy.parameters.json b/101-front-door-geo-filtering/azuredeploy.parameters.json index 5b33017d5596..b8eb5e1d05bc 100644 --- a/101-front-door-geo-filtering/azuredeploy.parameters.json +++ b/101-front-door-geo-filtering/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "wafPolicyName": { diff --git a/101-function-app-create-dedicated/azuredeploy.json b/101-function-app-create-dedicated/azuredeploy.json index 06107ea45db3..9421e71bdf7c 100644 --- a/101-function-app-create-dedicated/azuredeploy.json +++ b/101-function-app-create-dedicated/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "appName": { diff --git a/101-function-app-create-dedicated/azuredeploy.parameters.json b/101-function-app-create-dedicated/azuredeploy.parameters.json index 586358cfd4ac..25e7885b9155 100644 --- a/101-function-app-create-dedicated/azuredeploy.parameters.json +++ b/101-function-app-create-dedicated/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "appName": { diff --git a/101-function-app-create-dynamic/azuredeploy.json b/101-function-app-create-dynamic/azuredeploy.json index fd8192f2a3bd..1491398635af 100644 --- a/101-function-app-create-dynamic/azuredeploy.json +++ b/101-function-app-create-dynamic/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "appName": { diff --git a/101-function-app-create-dynamic/azuredeploy.parameters.json b/101-function-app-create-dynamic/azuredeploy.parameters.json index 586358cfd4ac..25e7885b9155 100644 --- a/101-function-app-create-dynamic/azuredeploy.parameters.json +++ b/101-function-app-create-dynamic/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "appName": { diff --git a/101-functions-managed-identity/azuredeploy.json b/101-functions-managed-identity/azuredeploy.json index 2f9950ae5021..234f58750d7b 100644 --- a/101-functions-managed-identity/azuredeploy.json +++ b/101-functions-managed-identity/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "functionAppName": { diff --git a/101-functions-managed-identity/azuredeploy.parameters.json b/101-functions-managed-identity/azuredeploy.parameters.json index 553653cb7fb2..3149fe929986 100644 --- a/101-functions-managed-identity/azuredeploy.parameters.json +++ b/101-functions-managed-identity/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "functionAppName": { diff --git a/101-hdinsight-custom-ambari-db/azuredeploy.json b/101-hdinsight-custom-ambari-db/azuredeploy.json index 09678ca06c6d..e7c7fe01f729 100644 --- a/101-hdinsight-custom-ambari-db/azuredeploy.json +++ b/101-hdinsight-custom-ambari-db/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion":"1.0.0.0", "parameters":{ "clusterName":{ @@ -152,7 +152,7 @@ "properties":{ "mode":"Incremental", "template":{ - "$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion":"1.0.0.0", "resources":[ { diff --git a/101-hdinsight-custom-ambari-db/azuredeploy.parameters.json b/101-hdinsight-custom-ambari-db/azuredeploy.parameters.json index fb35cc3bddcc..ee3fe47bef20 100644 --- a/101-hdinsight-custom-ambari-db/azuredeploy.parameters.json +++ b/101-hdinsight-custom-ambari-db/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-custom-ambari-db/prereqs/prereq.azuredeploy.json b/101-hdinsight-custom-ambari-db/prereqs/prereq.azuredeploy.json index e004184d40e9..b3be6d0095e5 100644 --- a/101-hdinsight-custom-ambari-db/prereqs/prereq.azuredeploy.json +++ b/101-hdinsight-custom-ambari-db/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "databaseAdminUsername": { diff --git a/101-hdinsight-custom-ambari-db/prereqs/prereq.azuredeploy.parameters.json b/101-hdinsight-custom-ambari-db/prereqs/prereq.azuredeploy.parameters.json index f4da90d73ad7..ea6a9b52dea7 100644 --- a/101-hdinsight-custom-ambari-db/prereqs/prereq.azuredeploy.parameters.json +++ b/101-hdinsight-custom-ambari-db/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "databaseAdminUsername": { diff --git a/101-hdinsight-hbase-enhancedwrite/azuredeploy.json b/101-hdinsight-hbase-enhancedwrite/azuredeploy.json index 18e869361d22..c3a7078adacf 100644 --- a/101-hdinsight-hbase-enhancedwrite/azuredeploy.json +++ b/101-hdinsight-hbase-enhancedwrite/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-hbase-enhancedwrite/azuredeploy.parameters.json b/101-hdinsight-hbase-enhancedwrite/azuredeploy.parameters.json index 0f3a22e97f9b..910e6846403c 100644 --- a/101-hdinsight-hbase-enhancedwrite/azuredeploy.parameters.json +++ b/101-hdinsight-hbase-enhancedwrite/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-hbase-linux-vnet/azuredeploy.json b/101-hdinsight-hbase-linux-vnet/azuredeploy.json index b467e5722015..bbda35b7e1b3 100644 --- a/101-hdinsight-hbase-linux-vnet/azuredeploy.json +++ b/101-hdinsight-hbase-linux-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-hbase-linux-vnet/azuredeploy.parameters.json b/101-hdinsight-hbase-linux-vnet/azuredeploy.parameters.json index 11edbf29ffa6..d9d9d78f7ccb 100644 --- a/101-hdinsight-hbase-linux-vnet/azuredeploy.parameters.json +++ b/101-hdinsight-hbase-linux-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-hbase-linux/azuredeploy.json b/101-hdinsight-hbase-linux/azuredeploy.json index a2451bd59466..1ae100d527f8 100644 --- a/101-hdinsight-hbase-linux/azuredeploy.json +++ b/101-hdinsight-hbase-linux/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-hbase-linux/azuredeploy.parameters.json b/101-hdinsight-hbase-linux/azuredeploy.parameters.json index 0f3a22e97f9b..910e6846403c 100644 --- a/101-hdinsight-hbase-linux/azuredeploy.parameters.json +++ b/101-hdinsight-hbase-linux/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-hbase-replication-geo/azuredeploy.json b/101-hdinsight-hbase-replication-geo/azuredeploy.json index faa7a7548976..7f2f1e7d116e 100644 --- a/101-hdinsight-hbase-replication-geo/azuredeploy.json +++ b/101-hdinsight-hbase-replication-geo/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterNamePrefix": { diff --git a/101-hdinsight-hbase-replication-geo/azuredeploy.parameters.json b/101-hdinsight-hbase-replication-geo/azuredeploy.parameters.json index 01b7a03e433d..61b06452faf2 100644 --- a/101-hdinsight-hbase-replication-geo/azuredeploy.parameters.json +++ b/101-hdinsight-hbase-replication-geo/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterNamePrefix": { diff --git a/101-hdinsight-hbase-replication-one-vnet/azuredeploy.json b/101-hdinsight-hbase-replication-one-vnet/azuredeploy.json index 7a5abd6436b1..dc2497691c6e 100644 --- a/101-hdinsight-hbase-replication-one-vnet/azuredeploy.json +++ b/101-hdinsight-hbase-replication-one-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterNamePrefix": { diff --git a/101-hdinsight-hbase-replication-one-vnet/azuredeploy.parameters.json b/101-hdinsight-hbase-replication-one-vnet/azuredeploy.parameters.json index 99dd067d3a02..ab2ef7dbacd4 100644 --- a/101-hdinsight-hbase-replication-one-vnet/azuredeploy.parameters.json +++ b/101-hdinsight-hbase-replication-one-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterNamePrefix": { diff --git a/101-hdinsight-hbase-replication-two-vnets-same-region/azuredeploy.json b/101-hdinsight-hbase-replication-two-vnets-same-region/azuredeploy.json index 04e6f92455fb..20d23dccfbd0 100644 --- a/101-hdinsight-hbase-replication-two-vnets-same-region/azuredeploy.json +++ b/101-hdinsight-hbase-replication-two-vnets-same-region/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterNamePrefix": { diff --git a/101-hdinsight-hbase-replication-two-vnets-same-region/azuredeploy.parameters.json b/101-hdinsight-hbase-replication-two-vnets-same-region/azuredeploy.parameters.json index 99dd067d3a02..ab2ef7dbacd4 100644 --- a/101-hdinsight-hbase-replication-two-vnets-same-region/azuredeploy.parameters.json +++ b/101-hdinsight-hbase-replication-two-vnets-same-region/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterNamePrefix": { diff --git a/101-hdinsight-interactive-hive/azuredeploy.json b/101-hdinsight-interactive-hive/azuredeploy.json index c125a2515bb2..ab6c7f7ae760 100644 --- a/101-hdinsight-interactive-hive/azuredeploy.json +++ b/101-hdinsight-interactive-hive/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-interactive-hive/azuredeploy.parameters.json b/101-hdinsight-interactive-hive/azuredeploy.parameters.json index fa6db867c1ac..55ddfb74309f 100644 --- a/101-hdinsight-interactive-hive/azuredeploy.parameters.json +++ b/101-hdinsight-interactive-hive/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-kafka-with-edge-schema-registry/azuredeploy.json b/101-hdinsight-kafka-with-edge-schema-registry/azuredeploy.json index 0327dd79941d..2da012cfe621 100644 --- a/101-hdinsight-kafka-with-edge-schema-registry/azuredeploy.json +++ b/101-hdinsight-kafka-with-edge-schema-registry/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-kafka-with-edge-schema-registry/azuredeploy.parameters.json b/101-hdinsight-kafka-with-edge-schema-registry/azuredeploy.parameters.json index 5a7bdb6ea3f9..3ed9a769e7a6 100644 --- a/101-hdinsight-kafka-with-edge-schema-registry/azuredeploy.parameters.json +++ b/101-hdinsight-kafka-with-edge-schema-registry/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.1", "parameters": { "clusterLoginUserName": { diff --git a/101-hdinsight-kafka/azuredeploy.json b/101-hdinsight-kafka/azuredeploy.json index 14a828be1730..5a7a7683af85 100644 --- a/101-hdinsight-kafka/azuredeploy.json +++ b/101-hdinsight-kafka/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-kafka/azuredeploy.parameters.json b/101-hdinsight-kafka/azuredeploy.parameters.json index 0d68c673addd..6d887ac81004 100644 --- a/101-hdinsight-kafka/azuredeploy.parameters.json +++ b/101-hdinsight-kafka/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-add-edge-node/azuredeploy.json b/101-hdinsight-linux-add-edge-node/azuredeploy.json index 860016590fb0..d05b742a53b0 100644 --- a/101-hdinsight-linux-add-edge-node/azuredeploy.json +++ b/101-hdinsight-linux-add-edge-node/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-add-edge-node/azuredeploy.parameters.json b/101-hdinsight-linux-add-edge-node/azuredeploy.parameters.json index 1b67a90a2f63..9d6bca02a635 100644 --- a/101-hdinsight-linux-add-edge-node/azuredeploy.parameters.json +++ b/101-hdinsight-linux-add-edge-node/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-add-edge-node/prereqs/prereq.azuredeploy.json b/101-hdinsight-linux-add-edge-node/prereqs/prereq.azuredeploy.json index f1da2d2b6d0b..ac4bf1d08a5a 100644 --- a/101-hdinsight-linux-add-edge-node/prereqs/prereq.azuredeploy.json +++ b/101-hdinsight-linux-add-edge-node/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-add-edge-node/prereqs/prereq.azuredeploy.parameters.json b/101-hdinsight-linux-add-edge-node/prereqs/prereq.azuredeploy.parameters.json index 55a1dc5519a6..747d1991d29e 100644 --- a/101-hdinsight-linux-add-edge-node/prereqs/prereq.azuredeploy.parameters.json +++ b/101-hdinsight-linux-add-edge-node/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-ssh-password/azuredeploy.json b/101-hdinsight-linux-ssh-password/azuredeploy.json index 06189a36461d..a5b9cb1c1eaf 100644 --- a/101-hdinsight-linux-ssh-password/azuredeploy.json +++ b/101-hdinsight-linux-ssh-password/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-ssh-password/azuredeploy.parameters.json b/101-hdinsight-linux-ssh-password/azuredeploy.parameters.json index fe8b41016f90..63b905e619ce 100644 --- a/101-hdinsight-linux-ssh-password/azuredeploy.parameters.json +++ b/101-hdinsight-linux-ssh-password/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-ssh-publickey-metastore-vnet/azuredeploy.json b/101-hdinsight-linux-ssh-publickey-metastore-vnet/azuredeploy.json index f5b03d17d19d..6cc2029d2123 100644 --- a/101-hdinsight-linux-ssh-publickey-metastore-vnet/azuredeploy.json +++ b/101-hdinsight-linux-ssh-publickey-metastore-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-ssh-publickey-metastore-vnet/azuredeploy.parameters.json b/101-hdinsight-linux-ssh-publickey-metastore-vnet/azuredeploy.parameters.json index fe70137a8837..17bafe41d767 100644 --- a/101-hdinsight-linux-ssh-publickey-metastore-vnet/azuredeploy.parameters.json +++ b/101-hdinsight-linux-ssh-publickey-metastore-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-ssh-publickey-metastore-vnet/prereqs/prereq.azuredeploy.json b/101-hdinsight-linux-ssh-publickey-metastore-vnet/prereqs/prereq.azuredeploy.json index 6e325bb88952..b95185799827 100644 --- a/101-hdinsight-linux-ssh-publickey-metastore-vnet/prereqs/prereq.azuredeploy.json +++ b/101-hdinsight-linux-ssh-publickey-metastore-vnet/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "databaseAdminUsername": { diff --git a/101-hdinsight-linux-ssh-publickey-metastore-vnet/prereqs/prereq.azuredeploy.parameters.json b/101-hdinsight-linux-ssh-publickey-metastore-vnet/prereqs/prereq.azuredeploy.parameters.json index 1e1f3f4e0e56..49cd33ff80e6 100644 --- a/101-hdinsight-linux-ssh-publickey-metastore-vnet/prereqs/prereq.azuredeploy.parameters.json +++ b/101-hdinsight-linux-ssh-publickey-metastore-vnet/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "databaseAdminUsername": { diff --git a/101-hdinsight-linux-ssh-publickey/azuredeploy.json b/101-hdinsight-linux-ssh-publickey/azuredeploy.json index 81c58ddd33fd..e56c97370744 100644 --- a/101-hdinsight-linux-ssh-publickey/azuredeploy.json +++ b/101-hdinsight-linux-ssh-publickey/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterType": { diff --git a/101-hdinsight-linux-ssh-publickey/azuredeploy.parameters.json b/101-hdinsight-linux-ssh-publickey/azuredeploy.parameters.json index 73c3ed714e75..58dd358e74ab 100644 --- a/101-hdinsight-linux-ssh-publickey/azuredeploy.parameters.json +++ b/101-hdinsight-linux-ssh-publickey/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-with-edge-node/azuredeploy.json b/101-hdinsight-linux-with-edge-node/azuredeploy.json index af4f619e8a79..8c9acc239a3b 100644 --- a/101-hdinsight-linux-with-edge-node/azuredeploy.json +++ b/101-hdinsight-linux-with-edge-node/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-with-edge-node/azuredeploy.parameters.json b/101-hdinsight-linux-with-edge-node/azuredeploy.parameters.json index a6dc539bb770..e6d84ae621f7 100644 --- a/101-hdinsight-linux-with-edge-node/azuredeploy.parameters.json +++ b/101-hdinsight-linux-with-edge-node/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-with-existing-default-storage-account/azuredeploy.json b/101-hdinsight-linux-with-existing-default-storage-account/azuredeploy.json index f83274ec1506..8b241d209c84 100644 --- a/101-hdinsight-linux-with-existing-default-storage-account/azuredeploy.json +++ b/101-hdinsight-linux-with-existing-default-storage-account/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-with-existing-default-storage-account/azuredeploy.parameters.json b/101-hdinsight-linux-with-existing-default-storage-account/azuredeploy.parameters.json index 8ec4e0ca32d5..7978230438d7 100644 --- a/101-hdinsight-linux-with-existing-default-storage-account/azuredeploy.parameters.json +++ b/101-hdinsight-linux-with-existing-default-storage-account/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-with-existing-linked-storage-account/azuredeploy.json b/101-hdinsight-linux-with-existing-linked-storage-account/azuredeploy.json index 9de8470337b5..f3cbea62e9ba 100644 --- a/101-hdinsight-linux-with-existing-linked-storage-account/azuredeploy.json +++ b/101-hdinsight-linux-with-existing-linked-storage-account/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-with-existing-linked-storage-account/azuredeploy.parameters.json b/101-hdinsight-linux-with-existing-linked-storage-account/azuredeploy.parameters.json index b5b145824db8..93f1809826f2 100644 --- a/101-hdinsight-linux-with-existing-linked-storage-account/azuredeploy.parameters.json +++ b/101-hdinsight-linux-with-existing-linked-storage-account/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-with-sql-database/azuredeploy.json b/101-hdinsight-linux-with-sql-database/azuredeploy.json index 93314e85ff62..58c414f76bcd 100644 --- a/101-hdinsight-linux-with-sql-database/azuredeploy.json +++ b/101-hdinsight-linux-with-sql-database/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-linux-with-sql-database/azuredeploy.parameters.json b/101-hdinsight-linux-with-sql-database/azuredeploy.parameters.json index 81dbd9a35881..4d763bbb4ed7 100644 --- a/101-hdinsight-linux-with-sql-database/azuredeploy.parameters.json +++ b/101-hdinsight-linux-with-sql-database/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-minimum-tls/azuredeploy.json b/101-hdinsight-minimum-tls/azuredeploy.json index b7ed20d0be82..756986dc9369 100644 --- a/101-hdinsight-minimum-tls/azuredeploy.json +++ b/101-hdinsight-minimum-tls/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion":"1.0.0.0", "parameters":{ "clusterName":{ diff --git a/101-hdinsight-minimum-tls/azuredeploy.parameters.json b/101-hdinsight-minimum-tls/azuredeploy.parameters.json index d2effb5bab5a..bdb0ea020243 100644 --- a/101-hdinsight-minimum-tls/azuredeploy.parameters.json +++ b/101-hdinsight-minimum-tls/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-minimum-tls/prereqs/prereq.azuredeploy.json b/101-hdinsight-minimum-tls/prereqs/prereq.azuredeploy.json index 44db907058bb..be4056c6e095 100644 --- a/101-hdinsight-minimum-tls/prereqs/prereq.azuredeploy.json +++ b/101-hdinsight-minimum-tls/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-hdinsight-minimum-tls/prereqs/prereq.azuredeploy.parameters.json b/101-hdinsight-minimum-tls/prereqs/prereq.azuredeploy.parameters.json index ea27417e3572..281531feda89 100644 --- a/101-hdinsight-minimum-tls/prereqs/prereq.azuredeploy.parameters.json +++ b/101-hdinsight-minimum-tls/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-hdinsight-rserver/azuredeploy.json b/101-hdinsight-rserver/azuredeploy.json index 366ead36c8a3..ab4894d91e7e 100644 --- a/101-hdinsight-rserver/azuredeploy.json +++ b/101-hdinsight-rserver/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-rserver/azuredeploy.parameters.json b/101-hdinsight-rserver/azuredeploy.parameters.json index f0f4a2426e30..469d92cc8bed 100644 --- a/101-hdinsight-rserver/azuredeploy.parameters.json +++ b/101-hdinsight-rserver/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-secure-vnet/azuredeploy.json b/101-hdinsight-secure-vnet/azuredeploy.json index 333dc9d415fd..268f9d0a5e56 100644 --- a/101-hdinsight-secure-vnet/azuredeploy.json +++ b/101-hdinsight-secure-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-secure-vnet/azuredeploy.parameters.json b/101-hdinsight-secure-vnet/azuredeploy.parameters.json index 7b25f8a3422f..332a4dd0772a 100644 --- a/101-hdinsight-secure-vnet/azuredeploy.parameters.json +++ b/101-hdinsight-secure-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-spark-linux-vnet/azuredeploy.json b/101-hdinsight-spark-linux-vnet/azuredeploy.json index 38bbc294173c..b2f65a253f45 100644 --- a/101-hdinsight-spark-linux-vnet/azuredeploy.json +++ b/101-hdinsight-spark-linux-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-spark-linux-vnet/azuredeploy.parameters.json b/101-hdinsight-spark-linux-vnet/azuredeploy.parameters.json index 0f3a22e97f9b..910e6846403c 100644 --- a/101-hdinsight-spark-linux-vnet/azuredeploy.parameters.json +++ b/101-hdinsight-spark-linux-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-spark-linux/azuredeploy.json b/101-hdinsight-spark-linux/azuredeploy.json index 7d2b0061ab40..a881a2a9c95e 100644 --- a/101-hdinsight-spark-linux/azuredeploy.json +++ b/101-hdinsight-spark-linux/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-hdinsight-spark-linux/azuredeploy.parameters.json b/101-hdinsight-spark-linux/azuredeploy.parameters.json index bbfa3f07ef6c..1c84813f5fc6 100644 --- a/101-hdinsight-spark-linux/azuredeploy.parameters.json +++ b/101-hdinsight-spark-linux/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion":"1.0.0.0", "parameters":{ "clusterName":{ diff --git a/101-hub-and-spoke-sandbox/azuredeploy.json b/101-hub-and-spoke-sandbox/azuredeploy.json index fe209d172ebb..c2a71a814a3d 100644 --- a/101-hub-and-spoke-sandbox/azuredeploy.json +++ b/101-hub-and-spoke-sandbox/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion":"1.0.0.0", "parameters":{ "windowsOSVersion":{ diff --git a/101-hub-and-spoke-sandbox/azuredeploy.parameters.json b/101-hub-and-spoke-sandbox/azuredeploy.parameters.json index 96d569be63b6..d861f279c2aa 100644 --- a/101-hub-and-spoke-sandbox/azuredeploy.parameters.json +++ b/101-hub-and-spoke-sandbox/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema":"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion":"1.0.0.0", "parameters": { "winVmUser": { diff --git a/101-integrationpatterns-messagerouter-logicapp/azuredeploy.json b/101-integrationpatterns-messagerouter-logicapp/azuredeploy.json index 78035de32bda..f0cd908bfffe 100644 --- a/101-integrationpatterns-messagerouter-logicapp/azuredeploy.json +++ b/101-integrationpatterns-messagerouter-logicapp/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "logicAppName": { diff --git a/101-integrationpatterns-messagerouter-logicapp/azuredeploy.parameters.json b/101-integrationpatterns-messagerouter-logicapp/azuredeploy.parameters.json index 26d3308ce12e..1be78a2dec76 100644 --- a/101-integrationpatterns-messagerouter-logicapp/azuredeploy.parameters.json +++ b/101-integrationpatterns-messagerouter-logicapp/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": {} } \ No newline at end of file diff --git a/101-integrationpatterns-messagerouter-servicebus/azuredeploy.json b/101-integrationpatterns-messagerouter-servicebus/azuredeploy.json index 63c94cb48c30..73b13724cd0c 100644 --- a/101-integrationpatterns-messagerouter-servicebus/azuredeploy.json +++ b/101-integrationpatterns-messagerouter-servicebus/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "IncomingDeliveryRequestsTopicname": { diff --git a/101-integrationpatterns-messagerouter-servicebus/azuredeploy.parameters.json b/101-integrationpatterns-messagerouter-servicebus/azuredeploy.parameters.json index 26d3308ce12e..1be78a2dec76 100644 --- a/101-integrationpatterns-messagerouter-servicebus/azuredeploy.parameters.json +++ b/101-integrationpatterns-messagerouter-servicebus/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": {} } \ No newline at end of file diff --git a/101-internal-loadbalancer-create/azuredeploy.json b/101-internal-loadbalancer-create/azuredeploy.json index 73ac443ab311..ec1a71627917 100644 --- a/101-internal-loadbalancer-create/azuredeploy.json +++ b/101-internal-loadbalancer-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetAddressPrefix": { diff --git a/101-internal-loadbalancer-create/azuredeploy.parameters.json b/101-internal-loadbalancer-create/azuredeploy.parameters.json index d682881b1a6a..e26267b92836 100644 --- a/101-internal-loadbalancer-create/azuredeploy.parameters.json +++ b/101-internal-loadbalancer-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetAddressPrefix": { diff --git a/101-iothub-with-consumergroup-create/azuredeploy.json b/101-iothub-with-consumergroup-create/azuredeploy.json index 5e9144982b4f..d3d47bc19bfe 100644 --- a/101-iothub-with-consumergroup-create/azuredeploy.json +++ b/101-iothub-with-consumergroup-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "iotHubName": { diff --git a/101-iothub-with-consumergroup-create/azuredeploy.parameters.json b/101-iothub-with-consumergroup-create/azuredeploy.parameters.json index 3b30aa2b65d7..a6466efee7da 100644 --- a/101-iothub-with-consumergroup-create/azuredeploy.parameters.json +++ b/101-iothub-with-consumergroup-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "iotHubName": { diff --git a/101-jenkins-with-ssh-public-key/azuredeploy.json b/101-jenkins-with-ssh-public-key/azuredeploy.json index 426398535b91..f5dee3d99b9d 100644 --- a/101-jenkins-with-ssh-public-key/azuredeploy.json +++ b/101-jenkins-with-ssh-public-key/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-jenkins-with-ssh-public-key/azuredeploy.parameters.json b/101-jenkins-with-ssh-public-key/azuredeploy.parameters.json index 704bcfb20b97..5e673f164351 100644 --- a/101-jenkins-with-ssh-public-key/azuredeploy.parameters.json +++ b/101-jenkins-with-ssh-public-key/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-jenkins/azuredeploy.json b/101-jenkins/azuredeploy.json index 19d7721153c0..ca1fd3e98f4f 100644 --- a/101-jenkins/azuredeploy.json +++ b/101-jenkins/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-jenkins/azuredeploy.parameters.json b/101-jenkins/azuredeploy.parameters.json index 2e5eed920f39..987cb27fcf8d 100644 --- a/101-jenkins/azuredeploy.parameters.json +++ b/101-jenkins/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-key-vault-create/azuredeploy.json b/101-key-vault-create/azuredeploy.json index 66ac4e3ab5f5..c755d94ce34f 100644 --- a/101-key-vault-create/azuredeploy.json +++ b/101-key-vault-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "keyVaultName": { diff --git a/101-key-vault-create/azuredeploy.parameters.json b/101-key-vault-create/azuredeploy.parameters.json index 711c11a0e262..c3c4eba8ae5d 100644 --- a/101-key-vault-create/azuredeploy.parameters.json +++ b/101-key-vault-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "keyVaultName": { diff --git a/101-keyvault-add-access-policy/azuredeploy.json b/101-keyvault-add-access-policy/azuredeploy.json index 0e38eae582d0..ab5c2c866069 100644 --- a/101-keyvault-add-access-policy/azuredeploy.json +++ b/101-keyvault-add-access-policy/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "keyVaultName": { diff --git a/101-keyvault-add-access-policy/azuredeploy.parameters.json b/101-keyvault-add-access-policy/azuredeploy.parameters.json index 259f6ce42db8..689b63e25a6d 100644 --- a/101-keyvault-add-access-policy/azuredeploy.parameters.json +++ b/101-keyvault-add-access-policy/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "keyVaultName": { diff --git a/101-keyvault-add-access-policy/prereqs/prereq.azuredeploy.json b/101-keyvault-add-access-policy/prereqs/prereq.azuredeploy.json index 1819a9aacdc4..5855b8979dba 100644 --- a/101-keyvault-add-access-policy/prereqs/prereq.azuredeploy.json +++ b/101-keyvault-add-access-policy/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "keyVaultName": { diff --git a/101-keyvault-add-access-policy/prereqs/prereq.azuredeploy.parameters.json b/101-keyvault-add-access-policy/prereqs/prereq.azuredeploy.parameters.json index 308c17b1d051..88fe705383e0 100644 --- a/101-keyvault-add-access-policy/prereqs/prereq.azuredeploy.parameters.json +++ b/101-keyvault-add-access-policy/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "keyVaultName": { diff --git a/101-kusto-cluster-database/azuredeploy.json b/101-kusto-cluster-database/azuredeploy.json index 82dd821bbcde..64b4221ca335 100644 --- a/101-kusto-cluster-database/azuredeploy.json +++ b/101-kusto-cluster-database/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusters_kustocluster_name": { diff --git a/101-kusto-cluster-database/azuredeploy.parameters.json b/101-kusto-cluster-database/azuredeploy.parameters.json index 9c313f06f698..255f44a8196e 100644 --- a/101-kusto-cluster-database/azuredeploy.parameters.json +++ b/101-kusto-cluster-database/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-kusto-vnet/azuredeploy.json b/101-kusto-vnet/azuredeploy.json index db666d9ff6c3..67109911352c 100644 --- a/101-kusto-vnet/azuredeploy.json +++ b/101-kusto-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/101-kusto-vnet/azuredeploy.parameters.json b/101-kusto-vnet/azuredeploy.parameters.json index 9c313f06f698..255f44a8196e 100644 --- a/101-kusto-vnet/azuredeploy.parameters.json +++ b/101-kusto-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-load-balancer-standard-create/azuredeploy.json b/101-load-balancer-standard-create/azuredeploy.json index 6b4c6d75723b..bf20038e05d9 100644 --- a/101-load-balancer-standard-create/azuredeploy.json +++ b/101-load-balancer-standard-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "projectName": { diff --git a/101-load-balancer-standard-create/azuredeploy.parameters.json b/101-load-balancer-standard-create/azuredeploy.parameters.json index 55515b9e09dd..1f7ba5ab58c9 100644 --- a/101-load-balancer-standard-create/azuredeploy.parameters.json +++ b/101-load-balancer-standard-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-loadbalancer-with-multivip/azuredeploy.json b/101-loadbalancer-with-multivip/azuredeploy.json index f155b300343c..f8269f0d4851 100644 --- a/101-loadbalancer-with-multivip/azuredeploy.json +++ b/101-loadbalancer-with-multivip/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsNameforLBIP": { diff --git a/101-loadbalancer-with-multivip/azuredeploy.parameters.json b/101-loadbalancer-with-multivip/azuredeploy.parameters.json index 72a5fea90538..95d9b7013ec8 100644 --- a/101-loadbalancer-with-multivip/azuredeploy.parameters.json +++ b/101-loadbalancer-with-multivip/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsNameforLBIP": { diff --git a/101-loadbalancer-with-nat-rule/azuredeploy.json b/101-loadbalancer-with-nat-rule/azuredeploy.json index 1f75ad111ef1..32d3782609c6 100644 --- a/101-loadbalancer-with-nat-rule/azuredeploy.json +++ b/101-loadbalancer-with-nat-rule/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsNameforLBIP": { diff --git a/101-loadbalancer-with-nat-rule/azuredeploy.parameters.json b/101-loadbalancer-with-nat-rule/azuredeploy.parameters.json index 72a5fea90538..95d9b7013ec8 100644 --- a/101-loadbalancer-with-nat-rule/azuredeploy.parameters.json +++ b/101-loadbalancer-with-nat-rule/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsNameforLBIP": { diff --git a/101-logic-app-and-function-app/azuredeploy.json b/101-logic-app-and-function-app/azuredeploy.json index 5263fc224a82..2067a1c25fbb 100644 --- a/101-logic-app-and-function-app/azuredeploy.json +++ b/101-logic-app-and-function-app/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "LogicAppName": { diff --git a/101-logic-app-and-function-app/azuredeploy.parameters.json b/101-logic-app-and-function-app/azuredeploy.parameters.json index 0ac191e6bf52..9039799911bb 100644 --- a/101-logic-app-and-function-app/azuredeploy.parameters.json +++ b/101-logic-app-and-function-app/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "LogicAppName": { diff --git a/101-logic-app-create/azuredeploy.json b/101-logic-app-create/azuredeploy.json index 3646cc90d769..cce35b0dbcc8 100644 --- a/101-logic-app-create/azuredeploy.json +++ b/101-logic-app-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "logicAppName": { diff --git a/101-logic-app-create/azuredeploy.parameters.json b/101-logic-app-create/azuredeploy.parameters.json index 2953b8e58964..39f9a11dbcc3 100644 --- a/101-logic-app-create/azuredeploy.parameters.json +++ b/101-logic-app-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "logicAppName": { diff --git a/101-logic-app-ftp-to-blob/azuredeploy.json b/101-logic-app-ftp-to-blob/azuredeploy.json index acb6614fa144..a6b0daafddc2 100644 --- a/101-logic-app-ftp-to-blob/azuredeploy.json +++ b/101-logic-app-ftp-to-blob/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "logicAppName": { diff --git a/101-logic-app-ftp-to-blob/azuredeploy.parameters.json b/101-logic-app-ftp-to-blob/azuredeploy.parameters.json index 0ba52a990bfd..1c7961002602 100644 --- a/101-logic-app-ftp-to-blob/azuredeploy.parameters.json +++ b/101-logic-app-ftp-to-blob/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "logicAppName": { diff --git a/101-logic-app-sendgrid/azuredeploy.json b/101-logic-app-sendgrid/azuredeploy.json index ecafbc44ebac..59e53c0d025d 100644 --- a/101-logic-app-sendgrid/azuredeploy.json +++ b/101-logic-app-sendgrid/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "logicAppName": { diff --git a/101-logic-app-sendgrid/azuredeploy.parameters.json b/101-logic-app-sendgrid/azuredeploy.parameters.json index 38f0f1903bd2..578aa3e9ce59 100644 --- a/101-logic-app-sendgrid/azuredeploy.parameters.json +++ b/101-logic-app-sendgrid/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "logicAppName": { diff --git a/101-logic-app-sql-proc/azuredeploy.json b/101-logic-app-sql-proc/azuredeploy.json index 03c9d4643d60..d74c0e2978f5 100644 --- a/101-logic-app-sql-proc/azuredeploy.json +++ b/101-logic-app-sql-proc/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "logicAppName": { diff --git a/101-logic-app-sql-proc/azuredeploy.parameters.json b/101-logic-app-sql-proc/azuredeploy.parameters.json index cc83322e87ff..d0ea6cdfa763 100644 --- a/101-logic-app-sql-proc/azuredeploy.parameters.json +++ b/101-logic-app-sql-proc/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "logicAppName": { diff --git a/101-machine-learning-create/azuredeploy.json b/101-machine-learning-create/azuredeploy.json index 94439ff587b9..c698bfd50a2e 100644 --- a/101-machine-learning-create/azuredeploy.json +++ b/101-machine-learning-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/101-machine-learning-create/azuredeploy.parameters.json b/101-machine-learning-create/azuredeploy.parameters.json index 61121aa7e3e4..294990022fb9 100644 --- a/101-machine-learning-create/azuredeploy.parameters.json +++ b/101-machine-learning-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/101-managed-application-with-linked-templates/artifacts/ManagedAppZip/linkedtemplates/storageAccountdeploy.json b/101-managed-application-with-linked-templates/artifacts/ManagedAppZip/linkedtemplates/storageAccountdeploy.json index 2a42aa84026e..e386cdec6c56 100644 --- a/101-managed-application-with-linked-templates/artifacts/ManagedAppZip/linkedtemplates/storageAccountdeploy.json +++ b/101-managed-application-with-linked-templates/artifacts/ManagedAppZip/linkedtemplates/storageAccountdeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-managed-application-with-linked-templates/artifacts/ManagedAppZip/mainTemplate.json b/101-managed-application-with-linked-templates/artifacts/ManagedAppZip/mainTemplate.json index f46b34c01677..9c5665d696f9 100644 --- a/101-managed-application-with-linked-templates/artifacts/ManagedAppZip/mainTemplate.json +++ b/101-managed-application-with-linked-templates/artifacts/ManagedAppZip/mainTemplate.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-managed-application-with-linked-templates/azuredeploy.json b/101-managed-application-with-linked-templates/azuredeploy.json index 96988e6c565a..546aef6b6612 100644 --- a/101-managed-application-with-linked-templates/azuredeploy.json +++ b/101-managed-application-with-linked-templates/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-managed-application-with-linked-templates/azuredeploy.parameters.json b/101-managed-application-with-linked-templates/azuredeploy.parameters.json index 1f3e5908473b..b8b434d25c96 100644 --- a/101-managed-application-with-linked-templates/azuredeploy.parameters.json +++ b/101-managed-application-with-linked-templates/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "applicationName": { diff --git a/101-managed-application-with-metrics-and-alerts/artifacts/ManagedAppZip/mainTemplate.json b/101-managed-application-with-metrics-and-alerts/artifacts/ManagedAppZip/mainTemplate.json index 00aabf99791a..528e34c7b356 100644 --- a/101-managed-application-with-metrics-and-alerts/artifacts/ManagedAppZip/mainTemplate.json +++ b/101-managed-application-with-metrics-and-alerts/artifacts/ManagedAppZip/mainTemplate.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-managed-application-with-metrics-and-alerts/azuredeploy.json b/101-managed-application-with-metrics-and-alerts/azuredeploy.json index 4f9488ac1e15..ccc7d11c0e15 100644 --- a/101-managed-application-with-metrics-and-alerts/azuredeploy.json +++ b/101-managed-application-with-metrics-and-alerts/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-managed-application-with-metrics-and-alerts/azuredeploy.parameters.json b/101-managed-application-with-metrics-and-alerts/azuredeploy.parameters.json index 1f3e5908473b..b8b434d25c96 100644 --- a/101-managed-application-with-metrics-and-alerts/azuredeploy.parameters.json +++ b/101-managed-application-with-metrics-and-alerts/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "applicationName": { diff --git a/101-managed-application/artifacts/ManagedAppZip/mainTemplate.json b/101-managed-application/artifacts/ManagedAppZip/mainTemplate.json index 8971322e1631..b75403273358 100644 --- a/101-managed-application/artifacts/ManagedAppZip/mainTemplate.json +++ b/101-managed-application/artifacts/ManagedAppZip/mainTemplate.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-managed-application/azuredeploy.json b/101-managed-application/azuredeploy.json index e53508f83a76..675ed1c1e6d8 100644 --- a/101-managed-application/azuredeploy.json +++ b/101-managed-application/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-managed-application/azuredeploy.parameters.json b/101-managed-application/azuredeploy.parameters.json index 1f3e5908473b..b8b434d25c96 100644 --- a/101-managed-application/azuredeploy.parameters.json +++ b/101-managed-application/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "applicationName": { diff --git a/101-managed-mysql-with-vnet/azuredeploy.json b/101-managed-mysql-with-vnet/azuredeploy.json index d95865ec8c69..65f15a75a9f1 100644 --- a/101-managed-mysql-with-vnet/azuredeploy.json +++ b/101-managed-mysql-with-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serverName": { diff --git a/101-managed-mysql-with-vnet/azuredeploy.parameters.json b/101-managed-mysql-with-vnet/azuredeploy.parameters.json index b698eb19d904..aea49f63dbeb 100644 --- a/101-managed-mysql-with-vnet/azuredeploy.parameters.json +++ b/101-managed-mysql-with-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serverName": { diff --git a/101-media-services-create/azuredeploy.json b/101-media-services-create/azuredeploy.json index 15a593a20fa5..a0bdf3e1b0fa 100644 --- a/101-media-services-create/azuredeploy.json +++ b/101-media-services-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "mediaServiceName": { diff --git a/101-media-services-create/azuredeploy.parameters.json b/101-media-services-create/azuredeploy.parameters.json index ee86420faa30..538df73a3c07 100644 --- a/101-media-services-create/azuredeploy.parameters.json +++ b/101-media-services-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "mediaServiceName": { diff --git a/101-mobile-app-create/azuredeploy.json b/101-mobile-app-create/azuredeploy.json index 0432a75b391e..e28706305e95 100644 --- a/101-mobile-app-create/azuredeploy.json +++ b/101-mobile-app-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "appName": { diff --git a/101-mobile-app-create/azuredeploy.parameters.json b/101-mobile-app-create/azuredeploy.parameters.json index 64325af8cf60..f1cb74f4ac3d 100644 --- a/101-mobile-app-create/azuredeploy.parameters.json +++ b/101-mobile-app-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "appName": { diff --git a/101-mutiple-vms-with-data-management-gateway/azuredeploy.json b/101-mutiple-vms-with-data-management-gateway/azuredeploy.json index 6ffcd99f4a74..2449fd2cda1e 100644 --- a/101-mutiple-vms-with-data-management-gateway/azuredeploy.json +++ b/101-mutiple-vms-with-data-management-gateway/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingDataFactoryName": { @@ -102,7 +102,7 @@ "properties": { "mode": "Incremental", "template": { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, diff --git a/101-mutiple-vms-with-data-management-gateway/azuredeploy.parameters.json b/101-mutiple-vms-with-data-management-gateway/azuredeploy.parameters.json index 13691882c946..f38aefcbc2a9 100644 --- a/101-mutiple-vms-with-data-management-gateway/azuredeploy.parameters.json +++ b/101-mutiple-vms-with-data-management-gateway/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingDataFactoryName": { diff --git a/101-mutiple-vms-with-data-management-gateway/nested/VMtemplate.json b/101-mutiple-vms-with-data-management-gateway/nested/VMtemplate.json index eba3eb8d31e2..02524dbd7af7 100644 --- a/101-mutiple-vms-with-data-management-gateway/nested/VMtemplate.json +++ b/101-mutiple-vms-with-data-management-gateway/nested/VMtemplate.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "gatewayId": { diff --git a/101-networkwatcher-create/azuredeploy.json b/101-networkwatcher-create/azuredeploy.json index 3fad588e83e7..0af3955eb3fc 100644 --- a/101-networkwatcher-create/azuredeploy.json +++ b/101-networkwatcher-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "networkWatcherName": { diff --git a/101-networkwatcher-create/azuredeploy.parameters.json b/101-networkwatcher-create/azuredeploy.parameters.json index f08d6ca99a93..dae67d951eff 100644 --- a/101-networkwatcher-create/azuredeploy.parameters.json +++ b/101-networkwatcher-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "networkWatcherName": { diff --git a/101-networkwatcher-flowLogs-create/azuredeploy.json b/101-networkwatcher-flowLogs-create/azuredeploy.json index cef3cac54709..a2908b2f233e 100644 --- a/101-networkwatcher-flowLogs-create/azuredeploy.json +++ b/101-networkwatcher-flowLogs-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-networkwatcher-flowLogs-create/azuredeploy.parameters.json b/101-networkwatcher-flowLogs-create/azuredeploy.parameters.json index ed01bb9ea8ab..306bb7c520a0 100644 --- a/101-networkwatcher-flowLogs-create/azuredeploy.parameters.json +++ b/101-networkwatcher-flowLogs-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingNSG": { diff --git a/101-networkwatcher-flowLogs-create/prereqs/prereq.azuredeploy.json b/101-networkwatcher-flowLogs-create/prereqs/prereq.azuredeploy.json index adc723b50a8f..6ec2c33af14f 100644 --- a/101-networkwatcher-flowLogs-create/prereqs/prereq.azuredeploy.json +++ b/101-networkwatcher-flowLogs-create/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/101-networkwatcher-flowLogs-create/prereqs/prereq.azuredeploy.parameters.json b/101-networkwatcher-flowLogs-create/prereqs/prereq.azuredeploy.parameters.json index 0d05e205a84a..6f9d49ba5d64 100644 --- a/101-networkwatcher-flowLogs-create/prereqs/prereq.azuredeploy.parameters.json +++ b/101-networkwatcher-flowLogs-create/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/101-nic-publicip-dns-vnet/azuredeploy.json b/101-nic-publicip-dns-vnet/azuredeploy.json index 4cf7651bd3aa..77f84a9f88fb 100644 --- a/101-nic-publicip-dns-vnet/azuredeploy.json +++ b/101-nic-publicip-dns-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/101-nic-publicip-dns-vnet/azuredeploy.parameters.json b/101-nic-publicip-dns-vnet/azuredeploy.parameters.json index 18706059a2d4..67082c08c09a 100644 --- a/101-nic-publicip-dns-vnet/azuredeploy.parameters.json +++ b/101-nic-publicip-dns-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/101-notification-hub/azuredeploy.json b/101-notification-hub/azuredeploy.json index f644bffc3bba..0dd177022369 100644 --- a/101-notification-hub/azuredeploy.json +++ b/101-notification-hub/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "namespaceName": { diff --git a/101-notification-hub/azuredeploy.parameters.json b/101-notification-hub/azuredeploy.parameters.json index 0f731951c928..237511cf4eb3 100644 --- a/101-notification-hub/azuredeploy.parameters.json +++ b/101-notification-hub/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "namespaceName": { diff --git a/101-point-to-site/azuredeploy.json b/101-point-to-site/azuredeploy.json index 807908a6ac25..0fb67e7c1f27 100644 --- a/101-point-to-site/azuredeploy.json +++ b/101-point-to-site/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/101-point-to-site/azuredeploy.parameters.json b/101-point-to-site/azuredeploy.parameters.json index 4d2be8cb911e..33d554d6a591 100644 --- a/101-point-to-site/azuredeploy.parameters.json +++ b/101-point-to-site/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/101-powerbi-workspace-create/azuredeploy.json b/101-powerbi-workspace-create/azuredeploy.json index f9fb5998e039..9172356b28c4 100644 --- a/101-powerbi-workspace-create/azuredeploy.json +++ b/101-powerbi-workspace-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "powerbiWorkspaceName": { diff --git a/101-powerbi-workspace-create/azuredeploy.parameters.json b/101-powerbi-workspace-create/azuredeploy.parameters.json index 8da4260812fa..145e57349dfb 100644 --- a/101-powerbi-workspace-create/azuredeploy.parameters.json +++ b/101-powerbi-workspace-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "powerbiWorkspaceName": { diff --git a/101-private-dns-zone/azuredeploy.json b/101-private-dns-zone/azuredeploy.json index ba2313199308..59174f63d819 100644 --- a/101-private-dns-zone/azuredeploy.json +++ b/101-private-dns-zone/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "privateDnsZoneName": { diff --git a/101-private-dns-zone/azuredeploy.parameters.json b/101-private-dns-zone/azuredeploy.parameters.json index 9c313f06f698..255f44a8196e 100644 --- a/101-private-dns-zone/azuredeploy.parameters.json +++ b/101-private-dns-zone/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-rbac-builtinrole-resourcegroup/azuredeploy.json b/101-rbac-builtinrole-resourcegroup/azuredeploy.json index 370e500f1e9c..a99df07e3691 100644 --- a/101-rbac-builtinrole-resourcegroup/azuredeploy.json +++ b/101-rbac-builtinrole-resourcegroup/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "roleAssignmentName": { diff --git a/101-rbac-builtinrole-resourcegroup/azuredeploy.parameters.json b/101-rbac-builtinrole-resourcegroup/azuredeploy.parameters.json index 56b041093fbd..666a628f1c52 100644 --- a/101-rbac-builtinrole-resourcegroup/azuredeploy.parameters.json +++ b/101-rbac-builtinrole-resourcegroup/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "roleAssignmentName":{ diff --git a/101-rbac-builtinrole-virtualmachine/azuredeploy.json b/101-rbac-builtinrole-virtualmachine/azuredeploy.json index abbbe7297b4d..c992666d0f84 100644 --- a/101-rbac-builtinrole-virtualmachine/azuredeploy.json +++ b/101-rbac-builtinrole-virtualmachine/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "principalId": { diff --git a/101-rbac-builtinrole-virtualmachine/azuredeploy.parameters.json b/101-rbac-builtinrole-virtualmachine/azuredeploy.parameters.json index 74e4897a9e22..f2608d627b5d 100644 --- a/101-rbac-builtinrole-virtualmachine/azuredeploy.parameters.json +++ b/101-rbac-builtinrole-virtualmachine/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "principalId": { diff --git a/101-rbac-builtinrole-virtualmachine/prereqs/prereq.azuredeploy.json b/101-rbac-builtinrole-virtualmachine/prereqs/prereq.azuredeploy.json index b81ad23a77cf..ae7ea9a306eb 100644 --- a/101-rbac-builtinrole-virtualmachine/prereqs/prereq.azuredeploy.json +++ b/101-rbac-builtinrole-virtualmachine/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-rbac-builtinrole-virtualmachine/prereqs/prereq.azuredeploy.parameters.json b/101-rbac-builtinrole-virtualmachine/prereqs/prereq.azuredeploy.parameters.json index be34983de9fe..57d1b1890cb6 100644 --- a/101-rbac-builtinrole-virtualmachine/prereqs/prereq.azuredeploy.parameters.json +++ b/101-rbac-builtinrole-virtualmachine/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-recovery-services-backup-vms/azuredeploy.json b/101-recovery-services-backup-vms/azuredeploy.json index 3b4334270597..71f8f5865566 100644 --- a/101-recovery-services-backup-vms/azuredeploy.json +++ b/101-recovery-services-backup-vms/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVirtualMachinesResourceGroup": { diff --git a/101-recovery-services-backup-vms/azuredeploy.parameters.json b/101-recovery-services-backup-vms/azuredeploy.parameters.json index 63225db78bc4..b4cbd6b9f810 100644 --- a/101-recovery-services-backup-vms/azuredeploy.parameters.json +++ b/101-recovery-services-backup-vms/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVirtualMachinesResourceGroup": { diff --git a/101-recovery-services-create-vault-enable-diagnostics/azuredeploy.json b/101-recovery-services-create-vault-enable-diagnostics/azuredeploy.json index 398412e24b30..46449a4a7d0a 100644 --- a/101-recovery-services-create-vault-enable-diagnostics/azuredeploy.json +++ b/101-recovery-services-create-vault-enable-diagnostics/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vaultName": { diff --git a/101-recovery-services-create-vault-enable-diagnostics/azuredeploy.parameters.json b/101-recovery-services-create-vault-enable-diagnostics/azuredeploy.parameters.json index 2f2184a5d90c..6e62966df788 100644 --- a/101-recovery-services-create-vault-enable-diagnostics/azuredeploy.parameters.json +++ b/101-recovery-services-create-vault-enable-diagnostics/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vaultName": { diff --git a/101-recovery-services-create-vm-and-configure-backup/azuredeploy.json b/101-recovery-services-create-vm-and-configure-backup/azuredeploy.json index 30afcd2b278f..4920e43c4323 100644 --- a/101-recovery-services-create-vm-and-configure-backup/azuredeploy.json +++ b/101-recovery-services-create-vm-and-configure-backup/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "projectName": { diff --git a/101-recovery-services-create-vm-and-configure-backup/azuredeploy.parameters.json b/101-recovery-services-create-vm-and-configure-backup/azuredeploy.parameters.json index ef84506656e9..8f1e8d7f2195 100644 --- a/101-recovery-services-create-vm-and-configure-backup/azuredeploy.parameters.json +++ b/101-recovery-services-create-vm-and-configure-backup/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "projectName": { diff --git a/101-recovery-services-daily-backup-policy-create/azuredeploy.json b/101-recovery-services-daily-backup-policy-create/azuredeploy.json index 828cc43f5c4c..30b25e562f22 100644 --- a/101-recovery-services-daily-backup-policy-create/azuredeploy.json +++ b/101-recovery-services-daily-backup-policy-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vaultName": { diff --git a/101-recovery-services-daily-backup-policy-create/azuredeploy.parameters.json b/101-recovery-services-daily-backup-policy-create/azuredeploy.parameters.json index eb6296ee2320..f7eda5358364 100644 --- a/101-recovery-services-daily-backup-policy-create/azuredeploy.parameters.json +++ b/101-recovery-services-daily-backup-policy-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vaultName": { diff --git a/101-recovery-services-vault-create/azuredeploy.json b/101-recovery-services-vault-create/azuredeploy.json index 518f97c69be2..4a062830d21b 100644 --- a/101-recovery-services-vault-create/azuredeploy.json +++ b/101-recovery-services-vault-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vaultName": { diff --git a/101-recovery-services-vault-create/azuredeploy.parameters.json b/101-recovery-services-vault-create/azuredeploy.parameters.json index 49b8a8e6cec5..e059d4517961 100644 --- a/101-recovery-services-vault-create/azuredeploy.parameters.json +++ b/101-recovery-services-vault-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vaultName": { diff --git a/101-recovery-services-vm-workload-backup/azuredeploy.json b/101-recovery-services-vm-workload-backup/azuredeploy.json index 3fdfaab7ed54..a081069e5036 100644 --- a/101-recovery-services-vm-workload-backup/azuredeploy.json +++ b/101-recovery-services-vm-workload-backup/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vaultName": { diff --git a/101-recovery-services-vm-workload-backup/azuredeploy.parameters.json b/101-recovery-services-vm-workload-backup/azuredeploy.parameters.json index 4dbd74b2694a..49f1cacfd4fb 100644 --- a/101-recovery-services-vm-workload-backup/azuredeploy.parameters.json +++ b/101-recovery-services-vm-workload-backup/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "policyName": { diff --git a/101-recovery-services-vm-workload-backup/prereqs/prereq.azuredeploy.json b/101-recovery-services-vm-workload-backup/prereqs/prereq.azuredeploy.json index c2f8275f1832..fe844dbfee89 100644 --- a/101-recovery-services-vm-workload-backup/prereqs/prereq.azuredeploy.json +++ b/101-recovery-services-vm-workload-backup/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualMachineName": { diff --git a/101-recovery-services-vm-workload-backup/prereqs/prereq.azuredeploy.parameters.json b/101-recovery-services-vm-workload-backup/prereqs/prereq.azuredeploy.parameters.json index 17e308245aed..6c900a31dad8 100644 --- a/101-recovery-services-vm-workload-backup/prereqs/prereq.azuredeploy.parameters.json +++ b/101-recovery-services-vm-workload-backup/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualMachineName": { diff --git a/101-recovery-services-weekly-backup-policy-create/azuredeploy.json b/101-recovery-services-weekly-backup-policy-create/azuredeploy.json index ca0a2d6dc241..e610dd3034c2 100644 --- a/101-recovery-services-weekly-backup-policy-create/azuredeploy.json +++ b/101-recovery-services-weekly-backup-policy-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vaultName": { diff --git a/101-recovery-services-weekly-backup-policy-create/azuredeploy.parameters.json b/101-recovery-services-weekly-backup-policy-create/azuredeploy.parameters.json index 7f96abef786a..0431b6228a0b 100644 --- a/101-recovery-services-weekly-backup-policy-create/azuredeploy.parameters.json +++ b/101-recovery-services-weekly-backup-policy-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vaultName": { diff --git a/101-redis-cache/azuredeploy.json b/101-redis-cache/azuredeploy.json index 79d1a927e23c..3bcfef36ae6e 100644 --- a/101-redis-cache/azuredeploy.json +++ b/101-redis-cache/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "redisCacheName": { diff --git a/101-redis-cache/azuredeploy.parameters.json b/101-redis-cache/azuredeploy.parameters.json index 58f0fff0c32f..44f276d9526e 100644 --- a/101-redis-cache/azuredeploy.parameters.json +++ b/101-redis-cache/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "redisCacheName": { diff --git a/101-redis-cache/prereqs/prereq.azuredeploy.json b/101-redis-cache/prereqs/prereq.azuredeploy.json index 6fd1e96faa4d..efeeff15b29c 100644 --- a/101-redis-cache/prereqs/prereq.azuredeploy.json +++ b/101-redis-cache/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-redis-cache/prereqs/prereq.azuredeploy.parameters.json b/101-redis-cache/prereqs/prereq.azuredeploy.parameters.json index abc1324aa7e7..4c451f19bb2f 100644 --- a/101-redis-cache/prereqs/prereq.azuredeploy.parameters.json +++ b/101-redis-cache/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-scheduler-service-bus/azuredeploy.json b/101-scheduler-service-bus/azuredeploy.json index b02d7db87aa2..97134d31021a 100644 --- a/101-scheduler-service-bus/azuredeploy.json +++ b/101-scheduler-service-bus/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/101-scheduler-service-bus/azuredeploy.parameters.json b/101-scheduler-service-bus/azuredeploy.parameters.json index b273bffd9220..c1621f0e8545 100644 --- a/101-scheduler-service-bus/azuredeploy.parameters.json +++ b/101-scheduler-service-bus/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/101-security-group-create/azuredeploy.json b/101-security-group-create/azuredeploy.json index 245829cd8407..fce270f59c6d 100644 --- a/101-security-group-create/azuredeploy.json +++ b/101-security-group-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/101-security-group-create/azuredeploy.parameters.json b/101-security-group-create/azuredeploy.parameters.json index fa0cf540c8c8..063c60366c8f 100644 --- a/101-security-group-create/azuredeploy.parameters.json +++ b/101-security-group-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/101-servicebus-create-namespace-geo-recoveryconfiguration/azuredeploy.json b/101-servicebus-create-namespace-geo-recoveryconfiguration/azuredeploy.json index 9d2141b949f4..c911ca8737ff 100644 --- a/101-servicebus-create-namespace-geo-recoveryconfiguration/azuredeploy.json +++ b/101-servicebus-create-namespace-geo-recoveryconfiguration/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceNamePrimary": { diff --git a/101-servicebus-create-namespace-geo-recoveryconfiguration/azuredeploy.parameters.json b/101-servicebus-create-namespace-geo-recoveryconfiguration/azuredeploy.parameters.json index 0ca445e36ac1..79d9ce253f55 100644 --- a/101-servicebus-create-namespace-geo-recoveryconfiguration/azuredeploy.parameters.json +++ b/101-servicebus-create-namespace-geo-recoveryconfiguration/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceNamePrimary": { diff --git a/101-servicebus-create-namespace/azuredeploy.json b/101-servicebus-create-namespace/azuredeploy.json index 433202e72cbb..45a19f61a3c3 100644 --- a/101-servicebus-create-namespace/azuredeploy.json +++ b/101-servicebus-create-namespace/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/101-servicebus-create-namespace/azuredeploy.parameters.json b/101-servicebus-create-namespace/azuredeploy.parameters.json index f9857f9849ef..8a593c9064e2 100644 --- a/101-servicebus-create-namespace/azuredeploy.parameters.json +++ b/101-servicebus-create-namespace/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/101-servicebus-namespace/azuredeploy.json b/101-servicebus-namespace/azuredeploy.json index fcf1e2f136f8..53263e9d7043 100644 --- a/101-servicebus-namespace/azuredeploy.json +++ b/101-servicebus-namespace/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/101-servicebus-namespace/azuredeploy.parameters.json b/101-servicebus-namespace/azuredeploy.parameters.json index 2d38cc4cfd4b..8db265e31a74 100644 --- a/101-servicebus-namespace/azuredeploy.parameters.json +++ b/101-servicebus-namespace/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/101-servicebus-pn-ar/azuredeploy.json b/101-servicebus-pn-ar/azuredeploy.json index 9432270a8db0..1f52867ecd89 100644 --- a/101-servicebus-pn-ar/azuredeploy.json +++ b/101-servicebus-pn-ar/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "premiumNamespaceName": { diff --git a/101-servicebus-pn-ar/azuredeploy.parameters.json b/101-servicebus-pn-ar/azuredeploy.parameters.json index d64cf9dce9b6..f69e079aaa59 100644 --- a/101-servicebus-pn-ar/azuredeploy.parameters.json +++ b/101-servicebus-pn-ar/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "premiumNamespaceName": { diff --git a/101-servicebus-queue/azuredeploy.json b/101-servicebus-queue/azuredeploy.json index 4de12243dea8..6d38c26fb2f0 100644 --- a/101-servicebus-queue/azuredeploy.json +++ b/101-servicebus-queue/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/101-servicebus-queue/azuredeploy.parameters.json b/101-servicebus-queue/azuredeploy.parameters.json index 961b0f0c0864..d798e6e21872 100644 --- a/101-servicebus-queue/azuredeploy.parameters.json +++ b/101-servicebus-queue/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/101-servicebus-topic-subscription-sqlfilter/azuredeploy.json b/101-servicebus-topic-subscription-sqlfilter/azuredeploy.json index 54288d3d8b2a..224ec416fc87 100644 --- a/101-servicebus-topic-subscription-sqlfilter/azuredeploy.json +++ b/101-servicebus-topic-subscription-sqlfilter/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/101-servicebus-topic-subscription-sqlfilter/azuredeploy.parameters.json b/101-servicebus-topic-subscription-sqlfilter/azuredeploy.parameters.json index a368c4fed7b6..1e8355bb7b04 100644 --- a/101-servicebus-topic-subscription-sqlfilter/azuredeploy.parameters.json +++ b/101-servicebus-topic-subscription-sqlfilter/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/101-servicebus-topic-subscription/azuredeploy.json b/101-servicebus-topic-subscription/azuredeploy.json index 5e50dafb8b39..87946d539ecb 100644 --- a/101-servicebus-topic-subscription/azuredeploy.json +++ b/101-servicebus-topic-subscription/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/101-servicebus-topic-subscription/azuredeploy.parameters.json b/101-servicebus-topic-subscription/azuredeploy.parameters.json index 36db959d4f08..dbad8a1d7357 100644 --- a/101-servicebus-topic-subscription/azuredeploy.parameters.json +++ b/101-servicebus-topic-subscription/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/101-servicebus-topic/azuredeploy.json b/101-servicebus-topic/azuredeploy.json index d540d322fa11..6cccfa5be7b3 100644 --- a/101-servicebus-topic/azuredeploy.json +++ b/101-servicebus-topic/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/101-servicebus-topic/azuredeploy.parameters.json b/101-servicebus-topic/azuredeploy.parameters.json index 19843945226a..90bddec926cd 100644 --- a/101-servicebus-topic/azuredeploy.parameters.json +++ b/101-servicebus-topic/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/101-sig-create/azuredeploy.json b/101-sig-create/azuredeploy.json index 7cb6519cf0f4..bac7804b1bcf 100644 --- a/101-sig-create/azuredeploy.json +++ b/101-sig-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "galleryName": { diff --git a/101-sig-create/azuredeploy.parameters.json b/101-sig-create/azuredeploy.parameters.json index e5cf79a72a60..ce73296fa2fa 100644 --- a/101-sig-create/azuredeploy.parameters.json +++ b/101-sig-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "galleryName": { diff --git a/101-sig-image-definition-create/azuredeploy.json b/101-sig-image-definition-create/azuredeploy.json index 7deefcd63056..1fde85a44715 100644 --- a/101-sig-image-definition-create/azuredeploy.json +++ b/101-sig-image-definition-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "galleryName": { diff --git a/101-sig-image-definition-create/azuredeploy.parameters.json b/101-sig-image-definition-create/azuredeploy.parameters.json index c7f48635d483..d8e220196efd 100644 --- a/101-sig-image-definition-create/azuredeploy.parameters.json +++ b/101-sig-image-definition-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "galleryName": { diff --git a/101-sig-image-version-create/azuredeploy.json b/101-sig-image-version-create/azuredeploy.json index b30d8208f527..a9628b810b5f 100644 --- a/101-sig-image-version-create/azuredeploy.json +++ b/101-sig-image-version-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sourceManagedImageResourceId": { diff --git a/101-sig-image-version-create/azuredeploy.parameters.json b/101-sig-image-version-create/azuredeploy.parameters.json index 90068a8a20df..83487480dc7b 100644 --- a/101-sig-image-version-create/azuredeploy.parameters.json +++ b/101-sig-image-version-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sourceManagedImageResourceId": { diff --git a/101-signalr/azuredeploy.json b/101-signalr/azuredeploy.json index 5a986c08e13c..f9d5a845eb3e 100644 --- a/101-signalr/azuredeploy.json +++ b/101-signalr/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/101-signalr/azuredeploy.parameters.json b/101-signalr/azuredeploy.parameters.json index e1c1b3794dc9..d8758475db72 100644 --- a/101-signalr/azuredeploy.parameters.json +++ b/101-signalr/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/101-site-to-site-vpn-create/azuredeploy.json b/101-site-to-site-vpn-create/azuredeploy.json index ac89254b5d92..ecdc2c623355 100644 --- a/101-site-to-site-vpn-create/azuredeploy.json +++ b/101-site-to-site-vpn-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vpnType": { diff --git a/101-site-to-site-vpn-create/azuredeploy.parameters.json b/101-site-to-site-vpn-create/azuredeploy.parameters.json index 6e3364cf9a52..8707c94babbc 100644 --- a/101-site-to-site-vpn-create/azuredeploy.parameters.json +++ b/101-site-to-site-vpn-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vpnType": { diff --git a/101-spinnaker-existing-vnet/azuredeploy.json b/101-spinnaker-existing-vnet/azuredeploy.json index 362c825bec5d..aa9f87bca2e9 100644 --- a/101-spinnaker-existing-vnet/azuredeploy.json +++ b/101-spinnaker-existing-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-spinnaker-existing-vnet/azuredeploy.parameters.json b/101-spinnaker-existing-vnet/azuredeploy.parameters.json index 631389b0c896..e4d2d6163d3e 100644 --- a/101-spinnaker-existing-vnet/azuredeploy.parameters.json +++ b/101-spinnaker-existing-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-spinnaker-existing-vnet/prereqs/prereq.azuredeploy.json b/101-spinnaker-existing-vnet/prereqs/prereq.azuredeploy.json index 6e00a3eb1da1..d17c91552a22 100644 --- a/101-spinnaker-existing-vnet/prereqs/prereq.azuredeploy.json +++ b/101-spinnaker-existing-vnet/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-spinnaker-existing-vnet/prereqs/prereq.azuredeploy.parameters.json b/101-spinnaker-existing-vnet/prereqs/prereq.azuredeploy.parameters.json index 838e75bdbe64..2df20a6d1780 100644 --- a/101-spinnaker-existing-vnet/prereqs/prereq.azuredeploy.parameters.json +++ b/101-spinnaker-existing-vnet/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } } \ No newline at end of file diff --git a/101-spinnaker/azuredeploy.json b/101-spinnaker/azuredeploy.json index 3d39cd038ee6..758bd9272265 100644 --- a/101-spinnaker/azuredeploy.json +++ b/101-spinnaker/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-spinnaker/azuredeploy.parameters.json b/101-spinnaker/azuredeploy.parameters.json index 22d000877f22..5bf98524c486 100644 --- a/101-spinnaker/azuredeploy.parameters.json +++ b/101-spinnaker/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-sql-elastic-pool-create/azuredeploy.json b/101-sql-elastic-pool-create/azuredeploy.json index 702dba4b170a..a84c1bbafd49 100644 --- a/101-sql-elastic-pool-create/azuredeploy.json +++ b/101-sql-elastic-pool-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "administratorLogin": { diff --git a/101-sql-elastic-pool-create/azuredeploy.parameters.json b/101-sql-elastic-pool-create/azuredeploy.parameters.json index 2dc0c6e19a4d..d088811d31bf 100644 --- a/101-sql-elastic-pool-create/azuredeploy.parameters.json +++ b/101-sql-elastic-pool-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "administratorLogin": { diff --git a/101-sql-logical-server/azuredeploy.json b/101-sql-logical-server/azuredeploy.json index e0c654f07183..c4b1efec6de2 100644 --- a/101-sql-logical-server/azuredeploy.json +++ b/101-sql-logical-server/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serverName": { diff --git a/101-sql-logical-server/azuredeploy.parameters.json b/101-sql-logical-server/azuredeploy.parameters.json index 474cf1c77f8a..6fb14912756f 100644 --- a/101-sql-logical-server/azuredeploy.parameters.json +++ b/101-sql-logical-server/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serverName": { diff --git a/101-sql-managed-instance-azure-environment/azuredeploy.json b/101-sql-managed-instance-azure-environment/azuredeploy.json index 68619f4850cd..819623f4725d 100644 --- a/101-sql-managed-instance-azure-environment/azuredeploy.json +++ b/101-sql-managed-instance-azure-environment/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/101-sql-managed-instance-azure-environment/azuredeploy.parameters.json b/101-sql-managed-instance-azure-environment/azuredeploy.parameters.json index 221f5a818778..6c4f61a7e2b0 100644 --- a/101-sql-managed-instance-azure-environment/azuredeploy.parameters.json +++ b/101-sql-managed-instance-azure-environment/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/101-sql-vm-ag-setup/azuredeploy.json b/101-sql-vm-ag-setup/azuredeploy.json index 0ddb44baa230..54decf99a2ac 100644 --- a/101-sql-vm-ag-setup/azuredeploy.json +++ b/101-sql-vm-ag-setup/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "failoverClusterName": { diff --git a/101-sql-vm-ag-setup/nested/join-cluster.json b/101-sql-vm-ag-setup/nested/join-cluster.json index 582d75484f37..42790d26fc0d 100644 --- a/101-sql-vm-ag-setup/nested/join-cluster.json +++ b/101-sql-vm-ag-setup/nested/join-cluster.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-sql-vm-aglistener-setup/azuredeploy.json b/101-sql-vm-aglistener-setup/azuredeploy.json index 802c622e3fa3..fbb0f2eb662b 100644 --- a/101-sql-vm-aglistener-setup/azuredeploy.json +++ b/101-sql-vm-aglistener-setup/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingFailoverClusterName": { diff --git a/101-sql-vm-new-storage-ultrassd/azuredeploy.json b/101-sql-vm-new-storage-ultrassd/azuredeploy.json index a32694430637..63c70d59b127 100644 --- a/101-sql-vm-new-storage-ultrassd/azuredeploy.json +++ b/101-sql-vm-new-storage-ultrassd/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualMachineName": { diff --git a/101-sql-vm-new-storage-ultrassd/azuredeploy.parameters.json b/101-sql-vm-new-storage-ultrassd/azuredeploy.parameters.json index ee7db9326e3a..7c98e9e79672 100644 --- a/101-sql-vm-new-storage-ultrassd/azuredeploy.parameters.json +++ b/101-sql-vm-new-storage-ultrassd/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualMachineName": { diff --git a/101-sql-vm-new-storage-ultrassd/prereqs/prereq.azuredeploy.json b/101-sql-vm-new-storage-ultrassd/prereqs/prereq.azuredeploy.json index 778263afdcd4..1cb1365a47c6 100644 --- a/101-sql-vm-new-storage-ultrassd/prereqs/prereq.azuredeploy.json +++ b/101-sql-vm-new-storage-ultrassd/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-sql-vm-new-storage-ultrassd/prereqs/prereq.azuredeploy.parameters.json b/101-sql-vm-new-storage-ultrassd/prereqs/prereq.azuredeploy.parameters.json index 74586147bf07..a7022673a9ba 100644 --- a/101-sql-vm-new-storage-ultrassd/prereqs/prereq.azuredeploy.parameters.json +++ b/101-sql-vm-new-storage-ultrassd/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-sql-vm-new-storage/azuredeploy.json b/101-sql-vm-new-storage/azuredeploy.json index 91de0e6ace16..ed4a57e24f3c 100644 --- a/101-sql-vm-new-storage/azuredeploy.json +++ b/101-sql-vm-new-storage/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualMachineName": { diff --git a/101-sql-vm-new-storage/azuredeploy.parameters.json b/101-sql-vm-new-storage/azuredeploy.parameters.json index b4f42b4b9819..980149867e9a 100644 --- a/101-sql-vm-new-storage/azuredeploy.parameters.json +++ b/101-sql-vm-new-storage/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualMachineName": { diff --git a/101-sql-vm-new-storage/prereqs/prereq.azuredeploy.json b/101-sql-vm-new-storage/prereqs/prereq.azuredeploy.json index b87bdbad57f9..023d3ff23432 100644 --- a/101-sql-vm-new-storage/prereqs/prereq.azuredeploy.json +++ b/101-sql-vm-new-storage/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-sql-vm-new-storage/prereqs/prereq.azuredeploy.parameters.json b/101-sql-vm-new-storage/prereqs/prereq.azuredeploy.parameters.json index 74586147bf07..a7022673a9ba 100644 --- a/101-sql-vm-new-storage/prereqs/prereq.azuredeploy.parameters.json +++ b/101-sql-vm-new-storage/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-sql-with-failover-group/azuredeploy.json b/101-sql-with-failover-group/azuredeploy.json index 5419261af247..a96aca61199f 100644 --- a/101-sql-with-failover-group/azuredeploy.json +++ b/101-sql-with-failover-group/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerPrimaryName": { diff --git a/101-sql-with-failover-group/azuredeploy.parameters.json b/101-sql-with-failover-group/azuredeploy.parameters.json index 5f42aa416b79..cb4159cccfbc 100644 --- a/101-sql-with-failover-group/azuredeploy.parameters.json +++ b/101-sql-with-failover-group/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerPrimaryName": { diff --git a/101-sqlmi-new-vnet/azuredeploy.json b/101-sqlmi-new-vnet/azuredeploy.json index 6018beb70aed..fca0454cb8af 100644 --- a/101-sqlmi-new-vnet/azuredeploy.json +++ b/101-sqlmi-new-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.1", "parameters": { "managedInstanceName": { diff --git a/101-sqlmi-new-vnet/azuredeploy.parameters.json b/101-sqlmi-new-vnet/azuredeploy.parameters.json index f7c3e09c9fb1..1d2e2530c3a5 100644 --- a/101-sqlmi-new-vnet/azuredeploy.parameters.json +++ b/101-sqlmi-new-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "managedInstanceName": { diff --git a/101-storage-account-create/azuredeploy.json b/101-storage-account-create/azuredeploy.json index 2904e974d1c2..dde689b7aa0e 100644 --- a/101-storage-account-create/azuredeploy.json +++ b/101-storage-account-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountType": { diff --git a/101-storage-account-create/azuredeploy.parameters.json b/101-storage-account-create/azuredeploy.parameters.json index 2b157da71457..d0c246565bac 100644 --- a/101-storage-account-create/azuredeploy.parameters.json +++ b/101-storage-account-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } } diff --git a/101-storage-blob-container/azuredeploy.json b/101-storage-blob-container/azuredeploy.json index 2275d196ffd2..a94687159c88 100644 --- a/101-storage-blob-container/azuredeploy.json +++ b/101-storage-blob-container/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/101-storage-blob-container/azuredeploy.parameters.json b/101-storage-blob-container/azuredeploy.parameters.json index 7a412938bd38..f158be25d1dd 100644 --- a/101-storage-blob-container/azuredeploy.parameters.json +++ b/101-storage-blob-container/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/101-storage-file-share/azuredeploy.json b/101-storage-file-share/azuredeploy.json index 552e6d91030d..73a9be31dc4e 100644 --- a/101-storage-file-share/azuredeploy.json +++ b/101-storage-file-share/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/101-storage-file-share/azuredeploy.parameters.json b/101-storage-file-share/azuredeploy.parameters.json index a7ab199dfc3f..82aea88bfe85 100644 --- a/101-storage-file-share/azuredeploy.parameters.json +++ b/101-storage-file-share/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/101-storage-multi-blob-container/azuredeploy.json b/101-storage-multi-blob-container/azuredeploy.json index e17015ac183c..9ef4ac2ce961 100644 --- a/101-storage-multi-blob-container/azuredeploy.json +++ b/101-storage-multi-blob-container/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/101-storage-multi-blob-container/azuredeploy.parameters.json b/101-storage-multi-blob-container/azuredeploy.parameters.json index 7a412938bd38..f158be25d1dd 100644 --- a/101-storage-multi-blob-container/azuredeploy.parameters.json +++ b/101-storage-multi-blob-container/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/101-storage-multi-file-share/azuredeploy.json b/101-storage-multi-file-share/azuredeploy.json index d61f656f8b55..6335e0afb117 100644 --- a/101-storage-multi-file-share/azuredeploy.json +++ b/101-storage-multi-file-share/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/101-storage-multi-file-share/azuredeploy.parameters.json b/101-storage-multi-file-share/azuredeploy.parameters.json index 7a412938bd38..f158be25d1dd 100644 --- a/101-storage-multi-file-share/azuredeploy.parameters.json +++ b/101-storage-multi-file-share/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/101-streamanalytics-create/azuredeploy.json b/101-streamanalytics-create/azuredeploy.json index 6745606d69d4..08f9d6bbab34 100644 --- a/101-streamanalytics-create/azuredeploy.json +++ b/101-streamanalytics-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.1.0.0", "parameters": { "location": { diff --git a/101-streamanalytics-create/azuredeploy.parameters.json b/101-streamanalytics-create/azuredeploy.parameters.json index 8b3059172c97..333d9fe3c569 100644 --- a/101-streamanalytics-create/azuredeploy.parameters.json +++ b/101-streamanalytics-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "streamAnalyticsJobName": { diff --git a/101-subnet-add-vnet-existing/azuredeploy.json b/101-subnet-add-vnet-existing/azuredeploy.json index 97a3e6f77955..fff254960789 100644 --- a/101-subnet-add-vnet-existing/azuredeploy.json +++ b/101-subnet-add-vnet-existing/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVNETName": { diff --git a/101-subnet-add-vnet-existing/azuredeploy.parameters.json b/101-subnet-add-vnet-existing/azuredeploy.parameters.json index 190dbb82e18a..b7ceef5fa674 100644 --- a/101-subnet-add-vnet-existing/azuredeploy.parameters.json +++ b/101-subnet-add-vnet-existing/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVNETName": { diff --git a/101-subnet-add-vnet-existing/prereqs/prereq.azuredeploy.json b/101-subnet-add-vnet-existing/prereqs/prereq.azuredeploy.json index bb78a2f88c5f..86dc3f9f0f1c 100644 --- a/101-subnet-add-vnet-existing/prereqs/prereq.azuredeploy.json +++ b/101-subnet-add-vnet-existing/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-subnet-add-vnet-existing/prereqs/prereq.azuredeploy.parameters.json b/101-subnet-add-vnet-existing/prereqs/prereq.azuredeploy.parameters.json index c3f18cd2728e..4be9503d56d6 100644 --- a/101-subnet-add-vnet-existing/prereqs/prereq.azuredeploy.parameters.json +++ b/101-subnet-add-vnet-existing/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-traffic-manager-external-endpoint/azuredeploy.json b/101-traffic-manager-external-endpoint/azuredeploy.json index d6e4888aacbe..16b4f066f97c 100644 --- a/101-traffic-manager-external-endpoint/azuredeploy.json +++ b/101-traffic-manager-external-endpoint/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "uniqueDnsName": { diff --git a/101-traffic-manager-external-endpoint/azuredeploy.parameters.json b/101-traffic-manager-external-endpoint/azuredeploy.parameters.json index f0330be759e3..52e36a01ac6a 100644 --- a/101-traffic-manager-external-endpoint/azuredeploy.parameters.json +++ b/101-traffic-manager-external-endpoint/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "uniqueDnsName": { diff --git a/101-ubuntu-mate-desktop-vscode/azuredeploy.json b/101-ubuntu-mate-desktop-vscode/azuredeploy.json index 5a39da05e922..c971b8dcf8ed 100644 --- a/101-ubuntu-mate-desktop-vscode/azuredeploy.json +++ b/101-ubuntu-mate-desktop-vscode/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/101-ubuntu-mate-desktop-vscode/azuredeploy.parameters.json b/101-ubuntu-mate-desktop-vscode/azuredeploy.parameters.json index 810be66bf6a1..ee79bb6a8e01 100644 --- a/101-ubuntu-mate-desktop-vscode/azuredeploy.parameters.json +++ b/101-ubuntu-mate-desktop-vscode/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/101-virtual-wan/azuredeploy.json b/101-virtual-wan/azuredeploy.json index 1220ce7a1d91..ae5b9b8886d8 100644 --- a/101-virtual-wan/azuredeploy.json +++ b/101-virtual-wan/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-virtual-wan/azuredeploy.parameters.json b/101-virtual-wan/azuredeploy.parameters.json index 6750a61ba956..1eec1803687f 100644 --- a/101-virtual-wan/azuredeploy.parameters.json +++ b/101-virtual-wan/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vpnsiteAddressspaceList": { diff --git a/101-visual-studio-team-services-project-create/azuredeploy.json b/101-visual-studio-team-services-project-create/azuredeploy.json index a3c46c3b2ef1..17e3f968bf59 100644 --- a/101-visual-studio-team-services-project-create/azuredeploy.json +++ b/101-visual-studio-team-services-project-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-visual-studio-team-services-project-create/azuredeploy.parameters.json b/101-visual-studio-team-services-project-create/azuredeploy.parameters.json index 9964b37f50ed..4140a67a6e0a 100644 --- a/101-visual-studio-team-services-project-create/azuredeploy.parameters.json +++ b/101-visual-studio-team-services-project-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountName": { diff --git a/101-vm-automatic-static-ip/azuredeploy.json b/101-vm-automatic-static-ip/azuredeploy.json index c959faad1fbb..7e273b3aa4bd 100644 --- a/101-vm-automatic-static-ip/azuredeploy.json +++ b/101-vm-automatic-static-ip/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-automatic-static-ip/azuredeploy.parameters.json b/101-vm-automatic-static-ip/azuredeploy.parameters.json index be34983de9fe..57d1b1890cb6 100644 --- a/101-vm-automatic-static-ip/azuredeploy.parameters.json +++ b/101-vm-automatic-static-ip/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-automatic-static-ip/nested/update-nic.json b/101-vm-automatic-static-ip/nested/update-nic.json index b39e8f12c896..d2d12d5b1880 100644 --- a/101-vm-automatic-static-ip/nested/update-nic.json +++ b/101-vm-automatic-static-ip/nested/update-nic.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nicName": { diff --git a/101-vm-customdata/azuredeploy.json b/101-vm-customdata/azuredeploy.json index 304f1a77f83f..52d825d553ad 100644 --- a/101-vm-customdata/azuredeploy.json +++ b/101-vm-customdata/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/101-vm-customdata/azuredeploy.parameters.json b/101-vm-customdata/azuredeploy.parameters.json index 596dd0dbd828..b0d4eb4c2b8d 100644 --- a/101-vm-customdata/azuredeploy.parameters.json +++ b/101-vm-customdata/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-from-sig/azuredeploy.json b/101-vm-from-sig/azuredeploy.json index 02ab48a68f35..80a3b3e1ea8a 100644 --- a/101-vm-from-sig/azuredeploy.json +++ b/101-vm-from-sig/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-from-sig/azuredeploy.parameters.json b/101-vm-from-sig/azuredeploy.parameters.json index feb293644ca2..43f91c036df9 100644 --- a/101-vm-from-sig/azuredeploy.parameters.json +++ b/101-vm-from-sig/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-from-user-image/azuredeploy.json b/101-vm-from-user-image/azuredeploy.json index a4e52bf42e90..6751e8227074 100644 --- a/101-vm-from-user-image/azuredeploy.json +++ b/101-vm-from-user-image/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "customVmName": { diff --git a/101-vm-from-user-image/azuredeploy.parameters.json b/101-vm-from-user-image/azuredeploy.parameters.json index 5dec037bc1f6..d184c6292d92 100644 --- a/101-vm-from-user-image/azuredeploy.parameters.json +++ b/101-vm-from-user-image/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "customVmName": { diff --git a/101-vm-from-user-image/existingvnet.json b/101-vm-from-user-image/existingvnet.json index 294e942f6d98..cf028f24614f 100644 --- a/101-vm-from-user-image/existingvnet.json +++ b/101-vm-from-user-image/existingvnet.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/101-vm-from-user-image/newvnet.json b/101-vm-from-user-image/newvnet.json index bafeb58999f4..ced913bdfe06 100644 --- a/101-vm-from-user-image/newvnet.json +++ b/101-vm-from-user-image/newvnet.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/101-vm-from-user-image/prereqs/prereq.azuredeploy.json b/101-vm-from-user-image/prereqs/prereq.azuredeploy.json index 192e4e870178..01ef1dacb90b 100644 --- a/101-vm-from-user-image/prereqs/prereq.azuredeploy.json +++ b/101-vm-from-user-image/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-vm-from-user-image/prereqs/prereq.azuredeploy.parameters.json b/101-vm-from-user-image/prereqs/prereq.azuredeploy.parameters.json index e33c9838ab99..6b61823aedb9 100644 --- a/101-vm-from-user-image/prereqs/prereq.azuredeploy.parameters.json +++ b/101-vm-from-user-image/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-vm-linux-Jupyterhub/azuredeploy.json b/101-vm-linux-Jupyterhub/azuredeploy.json index 20456be2bd02..070a0882f0ff 100644 --- a/101-vm-linux-Jupyterhub/azuredeploy.json +++ b/101-vm-linux-Jupyterhub/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-linux-Jupyterhub/azuredeploy.parameters.json b/101-vm-linux-Jupyterhub/azuredeploy.parameters.json index 28184dda4182..eb8814b0e30f 100644 --- a/101-vm-linux-Jupyterhub/azuredeploy.parameters.json +++ b/101-vm-linux-Jupyterhub/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-linux-serial-output/azuredeploy.json b/101-vm-linux-serial-output/azuredeploy.json index 2e68e7e82546..af4cfa1556e1 100644 --- a/101-vm-linux-serial-output/azuredeploy.json +++ b/101-vm-linux-serial-output/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-linux-serial-output/azuredeploy.parameters.json b/101-vm-linux-serial-output/azuredeploy.parameters.json index f16cdb2dcdcb..b608d52194ba 100644 --- a/101-vm-linux-serial-output/azuredeploy.parameters.json +++ b/101-vm-linux-serial-output/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-multiple-data-disk/azuredeploy.json b/101-vm-multiple-data-disk/azuredeploy.json index 3c520a95009d..d03eba67232e 100644 --- a/101-vm-multiple-data-disk/azuredeploy.json +++ b/101-vm-multiple-data-disk/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/101-vm-multiple-data-disk/azuredeploy.parameters.json b/101-vm-multiple-data-disk/azuredeploy.parameters.json index e75b8f8d9703..7d03c03c6159 100644 --- a/101-vm-multiple-data-disk/azuredeploy.parameters.json +++ b/101-vm-multiple-data-disk/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-multiple-ipconfig/azuredeploy.json b/101-vm-multiple-ipconfig/azuredeploy.json index 32cbfbe46a74..5f842dc22193 100644 --- a/101-vm-multiple-ipconfig/azuredeploy.json +++ b/101-vm-multiple-ipconfig/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-multiple-ipconfig/azuredeploy.parameters.json b/101-vm-multiple-ipconfig/azuredeploy.parameters.json index 072e0e3ef227..70e3bae325c2 100644 --- a/101-vm-multiple-ipconfig/azuredeploy.parameters.json +++ b/101-vm-multiple-ipconfig/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-secure-password/azuredeploy.json b/101-vm-secure-password/azuredeploy.json index efcc55df5566..86567a3397bf 100644 --- a/101-vm-secure-password/azuredeploy.json +++ b/101-vm-secure-password/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-secure-password/azuredeploy.parameters.json b/101-vm-secure-password/azuredeploy.parameters.json index 1b80882f6ede..47723fb42bb8 100644 --- a/101-vm-secure-password/azuredeploy.parameters.json +++ b/101-vm-secure-password/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-simple-freebsd/azuredeploy.json b/101-vm-simple-freebsd/azuredeploy.json index 47cc66887b3d..7e838483975f 100644 --- a/101-vm-simple-freebsd/azuredeploy.json +++ b/101-vm-simple-freebsd/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-simple-freebsd/azuredeploy.parameters.json b/101-vm-simple-freebsd/azuredeploy.parameters.json index a2b7907f1c18..80704fbf9ed0 100644 --- a/101-vm-simple-freebsd/azuredeploy.parameters.json +++ b/101-vm-simple-freebsd/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-simple-linux-with-accelerated-networking/azuredeploy.json b/101-vm-simple-linux-with-accelerated-networking/azuredeploy.json index 91cc11f0856e..f3d9f000270a 100644 --- a/101-vm-simple-linux-with-accelerated-networking/azuredeploy.json +++ b/101-vm-simple-linux-with-accelerated-networking/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-simple-linux-with-accelerated-networking/azuredeploy.parameters.json b/101-vm-simple-linux-with-accelerated-networking/azuredeploy.parameters.json index a2b7907f1c18..80704fbf9ed0 100644 --- a/101-vm-simple-linux-with-accelerated-networking/azuredeploy.parameters.json +++ b/101-vm-simple-linux-with-accelerated-networking/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-simple-linux/azuredeploy.json b/101-vm-simple-linux/azuredeploy.json index 8aa0908af7ea..4459348ad3e1 100644 --- a/101-vm-simple-linux/azuredeploy.json +++ b/101-vm-simple-linux/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/101-vm-simple-linux/azuredeploy.parameters.json b/101-vm-simple-linux/azuredeploy.parameters.json index 992ecd53ed24..ee35455b0f4d 100755 --- a/101-vm-simple-linux/azuredeploy.parameters.json +++ b/101-vm-simple-linux/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-simple-rhel-unmanaged/azuredeploy.json b/101-vm-simple-rhel-unmanaged/azuredeploy.json index f0766a484de0..ab1e822f78b2 100644 --- a/101-vm-simple-rhel-unmanaged/azuredeploy.json +++ b/101-vm-simple-rhel-unmanaged/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-simple-rhel-unmanaged/azuredeploy.parameters.json b/101-vm-simple-rhel-unmanaged/azuredeploy.parameters.json index 12649600cedf..ebce227f8b1d 100644 --- a/101-vm-simple-rhel-unmanaged/azuredeploy.parameters.json +++ b/101-vm-simple-rhel-unmanaged/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-simple-rhel/azuredeploy.json b/101-vm-simple-rhel/azuredeploy.json index 6dee7a86184e..03d8840dac6e 100644 --- a/101-vm-simple-rhel/azuredeploy.json +++ b/101-vm-simple-rhel/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-simple-rhel/azuredeploy.parameters.json b/101-vm-simple-rhel/azuredeploy.parameters.json index 9b3ad6107dd8..988890ce256c 100644 --- a/101-vm-simple-rhel/azuredeploy.parameters.json +++ b/101-vm-simple-rhel/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-simple-windows-visualstudio2019/azuredeploy.json b/101-vm-simple-windows-visualstudio2019/azuredeploy.json index 2b2401a59b14..32a6a0ac84d9 100755 --- a/101-vm-simple-windows-visualstudio2019/azuredeploy.json +++ b/101-vm-simple-windows-visualstudio2019/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/101-vm-simple-windows-visualstudio2019/azuredeploy.parameters.json b/101-vm-simple-windows-visualstudio2019/azuredeploy.parameters.json index 884ea4b87e29..e22f911a7c99 100755 --- a/101-vm-simple-windows-visualstudio2019/azuredeploy.parameters.json +++ b/101-vm-simple-windows-visualstudio2019/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-simple-windows/azuredeploy.json b/101-vm-simple-windows/azuredeploy.json index d5e3db07db54..d2467e166e36 100644 --- a/101-vm-simple-windows/azuredeploy.json +++ b/101-vm-simple-windows/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-simple-windows/azuredeploy.parameters.json b/101-vm-simple-windows/azuredeploy.parameters.json index 09291036e7d9..2dd96099efb8 100644 --- a/101-vm-simple-windows/azuredeploy.parameters.json +++ b/101-vm-simple-windows/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-simple-zones/azuredeploy.json b/101-vm-simple-zones/azuredeploy.json index 75d3ca72123c..e4f47509be3f 100644 --- a/101-vm-simple-zones/azuredeploy.json +++ b/101-vm-simple-zones/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-vm-simple-zones/azuredeploy.parameters.json b/101-vm-simple-zones/azuredeploy.parameters.json index a2b7907f1c18..80704fbf9ed0 100644 --- a/101-vm-simple-zones/azuredeploy.parameters.json +++ b/101-vm-simple-zones/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-sql-existing-autobackup-update/azuredeploy.json b/101-vm-sql-existing-autobackup-update/azuredeploy.json index c613979ae45b..1337be69fe2a 100644 --- a/101-vm-sql-existing-autobackup-update/azuredeploy.json +++ b/101-vm-sql-existing-autobackup-update/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVirtualMachineName": { diff --git a/101-vm-sql-existing-autobackup-update/azuredeploy.parameters.json b/101-vm-sql-existing-autobackup-update/azuredeploy.parameters.json index 707b22694128..950933e536ec 100644 --- a/101-vm-sql-existing-autobackup-update/azuredeploy.parameters.json +++ b/101-vm-sql-existing-autobackup-update/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVirtualMachineName": { diff --git a/101-vm-sql-existing-autobackup-update/prereqs/prereq.azuredeploy.json b/101-vm-sql-existing-autobackup-update/prereqs/prereq.azuredeploy.json index bbb3f8ae4d8e..939abe4b9838 100644 --- a/101-vm-sql-existing-autobackup-update/prereqs/prereq.azuredeploy.json +++ b/101-vm-sql-existing-autobackup-update/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-sql-existing-autobackup-update/prereqs/prereq.azuredeploy.parameters.json b/101-vm-sql-existing-autobackup-update/prereqs/prereq.azuredeploy.parameters.json index 1997bd23c76d..45bce5f0c56a 100644 --- a/101-vm-sql-existing-autobackup-update/prereqs/prereq.azuredeploy.parameters.json +++ b/101-vm-sql-existing-autobackup-update/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-sql-existing-autopatching-update/azuredeploy.json b/101-vm-sql-existing-autopatching-update/azuredeploy.json index e2ab347e9d04..92fb159908b3 100644 --- a/101-vm-sql-existing-autopatching-update/azuredeploy.json +++ b/101-vm-sql-existing-autopatching-update/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVirtualMachineName": { diff --git a/101-vm-sql-existing-autopatching-update/azuredeploy.parameters.json b/101-vm-sql-existing-autopatching-update/azuredeploy.parameters.json index 78558f64c0f5..6abd917b9609 100644 --- a/101-vm-sql-existing-autopatching-update/azuredeploy.parameters.json +++ b/101-vm-sql-existing-autopatching-update/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVirtualMachineName": { diff --git a/101-vm-sql-existing-autopatching-update/prereqs/prereq.azuredeploy.json b/101-vm-sql-existing-autopatching-update/prereqs/prereq.azuredeploy.json index 5e7b2b0a54d3..d5a3c048f2f1 100644 --- a/101-vm-sql-existing-autopatching-update/prereqs/prereq.azuredeploy.json +++ b/101-vm-sql-existing-autopatching-update/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-sql-existing-autopatching-update/prereqs/prereq.azuredeploy.parameters.json b/101-vm-sql-existing-autopatching-update/prereqs/prereq.azuredeploy.parameters.json index 1997bd23c76d..45bce5f0c56a 100644 --- a/101-vm-sql-existing-autopatching-update/prereqs/prereq.azuredeploy.parameters.json +++ b/101-vm-sql-existing-autopatching-update/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-sql-existing-keyvault-update/azuredeploy.json b/101-vm-sql-existing-keyvault-update/azuredeploy.json index 56b41420bacd..4366c86963cb 100644 --- a/101-vm-sql-existing-keyvault-update/azuredeploy.json +++ b/101-vm-sql-existing-keyvault-update/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVirtualMachineName": { diff --git a/101-vm-sql-existing-keyvault-update/azuredeploy.parameters.json b/101-vm-sql-existing-keyvault-update/azuredeploy.parameters.json index c8538bdcac9a..030f30cf8560 100644 --- a/101-vm-sql-existing-keyvault-update/azuredeploy.parameters.json +++ b/101-vm-sql-existing-keyvault-update/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVirtualMachineName": { diff --git a/101-vm-sshkey/azuredeploy.json b/101-vm-sshkey/azuredeploy.json index d4e5fd187c55..2b2a510d3729 100644 --- a/101-vm-sshkey/azuredeploy.json +++ b/101-vm-sshkey/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "projectName": { diff --git a/101-vm-sshkey/azuredeploy.parameters.json b/101-vm-sshkey/azuredeploy.parameters.json index 54a7b4fcb8aa..ef4938b74ae1 100644 --- a/101-vm-sshkey/azuredeploy.parameters.json +++ b/101-vm-sshkey/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "projectName":{ diff --git a/101-vm-tags/azuredeploy.json b/101-vm-tags/azuredeploy.json index a105821cc1cf..3c7fe30b6870 100644 --- a/101-vm-tags/azuredeploy.json +++ b/101-vm-tags/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-tags/azuredeploy.parameters.json b/101-vm-tags/azuredeploy.parameters.json index 6a3f874b3f1b..048a036b2956 100644 --- a/101-vm-tags/azuredeploy.parameters.json +++ b/101-vm-tags/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-ubuntu-DSVM-GPU-or-CPU/azuredeploy.json b/101-vm-ubuntu-DSVM-GPU-or-CPU/azuredeploy.json index 4d3c81fa400a..102552e6690c 100644 --- a/101-vm-ubuntu-DSVM-GPU-or-CPU/azuredeploy.json +++ b/101-vm-ubuntu-DSVM-GPU-or-CPU/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-ubuntu-DSVM-GPU-or-CPU/azuredeploy.parameters.json b/101-vm-ubuntu-DSVM-GPU-or-CPU/azuredeploy.parameters.json index 28184dda4182..eb8814b0e30f 100644 --- a/101-vm-ubuntu-DSVM-GPU-or-CPU/azuredeploy.parameters.json +++ b/101-vm-ubuntu-DSVM-GPU-or-CPU/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-user-image-data-disks/azuredeploy.json b/101-vm-user-image-data-disks/azuredeploy.json index faf44425673f..7e8e51af839e 100644 --- a/101-vm-user-image-data-disks/azuredeploy.json +++ b/101-vm-user-image-data-disks/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "customVmName": { diff --git a/101-vm-user-image-data-disks/azuredeploy.parameters.json b/101-vm-user-image-data-disks/azuredeploy.parameters.json index 1ec6ebdc5c8c..0b4708f9a4fe 100644 --- a/101-vm-user-image-data-disks/azuredeploy.parameters.json +++ b/101-vm-user-image-data-disks/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "customVmName": { diff --git a/101-vm-user-image-data-disks/existingvnet.json b/101-vm-user-image-data-disks/existingvnet.json index 294e942f6d98..cf028f24614f 100644 --- a/101-vm-user-image-data-disks/existingvnet.json +++ b/101-vm-user-image-data-disks/existingvnet.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/101-vm-user-image-data-disks/newvnet.json b/101-vm-user-image-data-disks/newvnet.json index bafeb58999f4..ced913bdfe06 100644 --- a/101-vm-user-image-data-disks/newvnet.json +++ b/101-vm-user-image-data-disks/newvnet.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/101-vm-windows-copy-datadisks/azuredeploy.json b/101-vm-windows-copy-datadisks/azuredeploy.json index fd8e6bcc02d9..f2eeef0becec 100644 --- a/101-vm-windows-copy-datadisks/azuredeploy.json +++ b/101-vm-windows-copy-datadisks/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-windows-copy-datadisks/azuredeploy.parameters.json b/101-vm-windows-copy-datadisks/azuredeploy.parameters.json index f9b8ed4a107c..db78c08fb5b9 100644 --- a/101-vm-windows-copy-datadisks/azuredeploy.parameters.json +++ b/101-vm-windows-copy-datadisks/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/101-vm-with-data-management-gateway/azuredeploy.json b/101-vm-with-data-management-gateway/azuredeploy.json index 327403f1452f..bbe7ea269147 100644 --- a/101-vm-with-data-management-gateway/azuredeploy.json +++ b/101-vm-with-data-management-gateway/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingDataFactoryName": { diff --git a/101-vm-with-data-management-gateway/azuredeploy.parameters.json b/101-vm-with-data-management-gateway/azuredeploy.parameters.json index 45d902a9c689..34b0decc7c7c 100644 --- a/101-vm-with-data-management-gateway/azuredeploy.parameters.json +++ b/101-vm-with-data-management-gateway/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingDataFactoryName": { diff --git a/101-vm-with-data-management-gateway/nested/noIncomingRemote.json b/101-vm-with-data-management-gateway/nested/noIncomingRemote.json index 83a8de31bd9d..6344b6a16dff 100644 --- a/101-vm-with-data-management-gateway/nested/noIncomingRemote.json +++ b/101-vm-with-data-management-gateway/nested/noIncomingRemote.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/101-vm-with-data-management-gateway/nested/yesIncomingRemote.json b/101-vm-with-data-management-gateway/nested/yesIncomingRemote.json index d57fc1cf5f64..8c7f5a228ac4 100644 --- a/101-vm-with-data-management-gateway/nested/yesIncomingRemote.json +++ b/101-vm-with-data-management-gateway/nested/yesIncomingRemote.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/101-vm-with-rdp-port/azuredeploy.json b/101-vm-with-rdp-port/azuredeploy.json index 6f3bf0d3c0f8..02ca45306975 100644 --- a/101-vm-with-rdp-port/azuredeploy.json +++ b/101-vm-with-rdp-port/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/101-vm-with-rdp-port/azuredeploy.parameters.json b/101-vm-with-rdp-port/azuredeploy.parameters.json index b838f422899d..ae621ffc981b 100644 --- a/101-vm-with-rdp-port/azuredeploy.parameters.json +++ b/101-vm-with-rdp-port/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/101-vm-with-standardssd-disk/azuredeploy.json b/101-vm-with-standardssd-disk/azuredeploy.json index c2ab04cfd417..7cab3a3bfcbb 100644 --- a/101-vm-with-standardssd-disk/azuredeploy.json +++ b/101-vm-with-standardssd-disk/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualMachineName": { diff --git a/101-vm-with-standardssd-disk/azuredeploy.parameters.json b/101-vm-with-standardssd-disk/azuredeploy.parameters.json index e486c69e6657..ec43186aef8b 100644 --- a/101-vm-with-standardssd-disk/azuredeploy.parameters.json +++ b/101-vm-with-standardssd-disk/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualMachineName": { diff --git a/101-vmms-with-public-ip-prefix/azuredeploy.json b/101-vmms-with-public-ip-prefix/azuredeploy.json index 90d5882d83d3..ed19bd8a8818 100644 --- a/101-vmms-with-public-ip-prefix/azuredeploy.json +++ b/101-vmms-with-public-ip-prefix/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-vmms-with-public-ip-prefix/azuredeploy.parameters.json b/101-vmms-with-public-ip-prefix/azuredeploy.parameters.json index 2b2b1aca5afa..889dbb10ff3b 100644 --- a/101-vmms-with-public-ip-prefix/azuredeploy.parameters.json +++ b/101-vmms-with-public-ip-prefix/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmssName": { diff --git a/101-vms-with-selfhost-integration-runtime/azuredeploy.parameters.json b/101-vms-with-selfhost-integration-runtime/azuredeploy.parameters.json index 66ee542ffc19..6aadc2dcbd6c 100644 --- a/101-vms-with-selfhost-integration-runtime/azuredeploy.parameters.json +++ b/101-vms-with-selfhost-integration-runtime/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingDataFactoryName": { diff --git a/101-vms-with-selfhost-integration-runtime/prereqs/prereq.azuredeploy.json b/101-vms-with-selfhost-integration-runtime/prereqs/prereq.azuredeploy.json index 857ed93bab8e..ff683ef8e8f2 100644 --- a/101-vms-with-selfhost-integration-runtime/prereqs/prereq.azuredeploy.json +++ b/101-vms-with-selfhost-integration-runtime/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/101-vms-with-selfhost-integration-runtime/prereqs/prereq.azuredeploy.parameters.json b/101-vms-with-selfhost-integration-runtime/prereqs/prereq.azuredeploy.parameters.json index 8a0727c7abae..3a74fdc48f34 100644 --- a/101-vms-with-selfhost-integration-runtime/prereqs/prereq.azuredeploy.parameters.json +++ b/101-vms-with-selfhost-integration-runtime/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dataFactoryLocation": { diff --git a/101-vnet-two-subnets/azuredeploy.json b/101-vnet-two-subnets/azuredeploy.json index 32b0e50870b4..96e765864c37 100644 --- a/101-vnet-two-subnets/azuredeploy.json +++ b/101-vnet-two-subnets/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/101-vnet-two-subnets/azuredeploy.parameters.json b/101-vnet-two-subnets/azuredeploy.parameters.json index 9c313f06f698..255f44a8196e 100644 --- a/101-vnet-two-subnets/azuredeploy.parameters.json +++ b/101-vnet-two-subnets/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/101-vsts-cloudloadtest-rig/azuredeploy.json b/101-vsts-cloudloadtest-rig/azuredeploy.json index e0de4ff9912c..4c0022c3e759 100644 --- a/101-vsts-cloudloadtest-rig/azuredeploy.json +++ b/101-vsts-cloudloadtest-rig/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "azureDevOpsServicesAccount": { diff --git a/101-vsts-cloudloadtest-rig/azuredeploy.parameters.json b/101-vsts-cloudloadtest-rig/azuredeploy.parameters.json index afd370faaceb..f00f9527af35 100644 --- a/101-vsts-cloudloadtest-rig/azuredeploy.parameters.json +++ b/101-vsts-cloudloadtest-rig/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "azureDevOpsServicesAccount": { diff --git a/101-webapp-basic-linux/azuredeploy.json b/101-webapp-basic-linux/azuredeploy.json index 9bdb2a5512d4..51564176eff6 100644 --- a/101-webapp-basic-linux/azuredeploy.json +++ b/101-webapp-basic-linux/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "webAppName": { diff --git a/101-webapp-basic-linux/azuredeploy.parameters.json b/101-webapp-basic-linux/azuredeploy.parameters.json index 615586f7c82a..eb3b07f862e9 100644 --- a/101-webapp-basic-linux/azuredeploy.parameters.json +++ b/101-webapp-basic-linux/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "webAppName": { diff --git a/101-webapp-basic-windows/azuredeploy.json b/101-webapp-basic-windows/azuredeploy.json index c558aaaead07..8139a05926c4 100644 --- a/101-webapp-basic-windows/azuredeploy.json +++ b/101-webapp-basic-windows/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "webAppName": { diff --git a/101-webapp-basic-windows/azuredeploy.parameters.json b/101-webapp-basic-windows/azuredeploy.parameters.json index 96370b7c680f..661d2609b652 100644 --- a/101-webapp-basic-windows/azuredeploy.parameters.json +++ b/101-webapp-basic-windows/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "webAppName": { diff --git a/101-webapp-custom-deployment-slots/azuredeploy.json b/101-webapp-custom-deployment-slots/azuredeploy.json index ca81a45ac438..2e0bddf03392 100644 --- a/101-webapp-custom-deployment-slots/azuredeploy.json +++ b/101-webapp-custom-deployment-slots/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "baseResourceName": { diff --git a/101-webapp-custom-deployment-slots/azuredeploy.parameters.json b/101-webapp-custom-deployment-slots/azuredeploy.parameters.json index e1fb2a66853a..418b5e5263c9 100644 --- a/101-webapp-custom-deployment-slots/azuredeploy.parameters.json +++ b/101-webapp-custom-deployment-slots/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "baseResourceName": { diff --git a/101-webapp-linux-airflow-postgresql/azuredeploy.json b/101-webapp-linux-airflow-postgresql/azuredeploy.json index 0cf52d6634a6..c7be7ac7721c 100644 --- a/101-webapp-linux-airflow-postgresql/azuredeploy.json +++ b/101-webapp-linux-airflow-postgresql/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webapp-linux-airflow-postgresql/azuredeploy.parameters.json b/101-webapp-linux-airflow-postgresql/azuredeploy.parameters.json index 7428129866c6..2194cb0894ff 100644 --- a/101-webapp-linux-airflow-postgresql/azuredeploy.parameters.json +++ b/101-webapp-linux-airflow-postgresql/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "administratorLogin": { diff --git a/101-webapp-linux-django/azuredeploy.json b/101-webapp-linux-django/azuredeploy.json index 0006a1f081d3..aa0c71ec8542 100644 --- a/101-webapp-linux-django/azuredeploy.json +++ b/101-webapp-linux-django/azuredeploy.json @@ -1,6 +1,6 @@ { "contentVersion": "1.0.0.0", - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "parameters": { "webAppName": { "type": "string", diff --git a/101-webapp-linux-django/azuredeploy.parameters.json b/101-webapp-linux-django/azuredeploy.parameters.json index 77aabc025668..ae0841e92619 100644 --- a/101-webapp-linux-django/azuredeploy.parameters.json +++ b/101-webapp-linux-django/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "webAppName": { diff --git a/101-webapp-linux-flask/azuredeploy.json b/101-webapp-linux-flask/azuredeploy.json index bce9bc616a81..89e99884dfba 100644 --- a/101-webapp-linux-flask/azuredeploy.json +++ b/101-webapp-linux-flask/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "webAppName": { diff --git a/101-webapp-linux-flask/azuredeploy.parameters.json b/101-webapp-linux-flask/azuredeploy.parameters.json index 77aabc025668..ae0841e92619 100644 --- a/101-webapp-linux-flask/azuredeploy.parameters.json +++ b/101-webapp-linux-flask/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "webAppName": { diff --git a/101-webapp-linux-managed-mysql/azuredeploy.json b/101-webapp-linux-managed-mysql/azuredeploy.json index 2c9243a6f37d..ce9458f86897 100644 --- a/101-webapp-linux-managed-mysql/azuredeploy.json +++ b/101-webapp-linux-managed-mysql/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webapp-linux-managed-mysql/azuredeploy.parameters.json b/101-webapp-linux-managed-mysql/azuredeploy.parameters.json index a2536608ab97..cbbfc9e0ad26 100644 --- a/101-webapp-linux-managed-mysql/azuredeploy.parameters.json +++ b/101-webapp-linux-managed-mysql/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webapp-linux-managed-postgresql/azuredeploy.json b/101-webapp-linux-managed-postgresql/azuredeploy.json index 7d286bfbef45..b0c0bbbda5ad 100644 --- a/101-webapp-linux-managed-postgresql/azuredeploy.json +++ b/101-webapp-linux-managed-postgresql/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webapp-linux-managed-postgresql/azuredeploy.parameters.json b/101-webapp-linux-managed-postgresql/azuredeploy.parameters.json index 78195285161e..f1a4860f9efd 100644 --- a/101-webapp-linux-managed-postgresql/azuredeploy.parameters.json +++ b/101-webapp-linux-managed-postgresql/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webapp-linux-node/azuredeploy.json b/101-webapp-linux-node/azuredeploy.json index cdab8920f795..976067e63704 100644 --- a/101-webapp-linux-node/azuredeploy.json +++ b/101-webapp-linux-node/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "webAppName": { diff --git a/101-webapp-linux-node/azuredeploy.parameters.json b/101-webapp-linux-node/azuredeploy.parameters.json index 77aabc025668..ae0841e92619 100644 --- a/101-webapp-linux-node/azuredeploy.parameters.json +++ b/101-webapp-linux-node/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "webAppName": { diff --git a/101-webapp-linux-sonarqube-azuresql/azuredeploy.json b/101-webapp-linux-sonarqube-azuresql/azuredeploy.json index 7f09dfef17a2..91b9be5ad984 100644 --- a/101-webapp-linux-sonarqube-azuresql/azuredeploy.json +++ b/101-webapp-linux-sonarqube-azuresql/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webapp-linux-sonarqube-azuresql/azuredeploy.parameters.json b/101-webapp-linux-sonarqube-azuresql/azuredeploy.parameters.json index 7bf56f410e39..e2550501c79c 100644 --- a/101-webapp-linux-sonarqube-azuresql/azuredeploy.parameters.json +++ b/101-webapp-linux-sonarqube-azuresql/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webapp-linux-sonarqube-mysql/azuredeploy.json b/101-webapp-linux-sonarqube-mysql/azuredeploy.json index 36d4fb23d0ab..2479ee627461 100644 --- a/101-webapp-linux-sonarqube-mysql/azuredeploy.json +++ b/101-webapp-linux-sonarqube-mysql/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webapp-linux-sonarqube-mysql/azuredeploy.parameters.json b/101-webapp-linux-sonarqube-mysql/azuredeploy.parameters.json index 1262b2a54ff3..cc95bcc4c563 100644 --- a/101-webapp-linux-sonarqube-mysql/azuredeploy.parameters.json +++ b/101-webapp-linux-sonarqube-mysql/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webapp-linux-sonarqube-postgresql/azuredeploy.json b/101-webapp-linux-sonarqube-postgresql/azuredeploy.json index c98361bfaf80..534a4ac048bd 100644 --- a/101-webapp-linux-sonarqube-postgresql/azuredeploy.json +++ b/101-webapp-linux-sonarqube-postgresql/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webapp-linux-sonarqube-postgresql/azuredeploy.parameters.json b/101-webapp-linux-sonarqube-postgresql/azuredeploy.parameters.json index 1262b2a54ff3..cc95bcc4c563 100644 --- a/101-webapp-linux-sonarqube-postgresql/azuredeploy.parameters.json +++ b/101-webapp-linux-sonarqube-postgresql/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webapp-managed-mysql/azuredeploy.json b/101-webapp-managed-mysql/azuredeploy.json index f6ee95dba928..7055cdd19567 100644 --- a/101-webapp-managed-mysql/azuredeploy.json +++ b/101-webapp-managed-mysql/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webapp-managed-mysql/azuredeploy.parameters.json b/101-webapp-managed-mysql/azuredeploy.parameters.json index e3995bfee375..08d67e83bb45 100644 --- a/101-webapp-managed-mysql/azuredeploy.parameters.json +++ b/101-webapp-managed-mysql/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webapp-managed-postgresql/azuredeploy.json b/101-webapp-managed-postgresql/azuredeploy.json index ba2ddf63cc25..663bf08f50a9 100644 --- a/101-webapp-managed-postgresql/azuredeploy.json +++ b/101-webapp-managed-postgresql/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webapp-managed-postgresql/azuredeploy.parameters.json b/101-webapp-managed-postgresql/azuredeploy.parameters.json index 78195285161e..f1a4860f9efd 100644 --- a/101-webapp-managed-postgresql/azuredeploy.parameters.json +++ b/101-webapp-managed-postgresql/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webapp-windows-ASPNET/azuredeploy.json b/101-webapp-windows-ASPNET/azuredeploy.json index 4cc1ba9fac9b..9810a3746e11 100644 --- a/101-webapp-windows-ASPNET/azuredeploy.json +++ b/101-webapp-windows-ASPNET/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "webAppName": { diff --git a/101-webapp-windows-ASPNET/azuredeploy.parameters.json b/101-webapp-windows-ASPNET/azuredeploy.parameters.json index 77aabc025668..ae0841e92619 100644 --- a/101-webapp-windows-ASPNET/azuredeploy.parameters.json +++ b/101-webapp-windows-ASPNET/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "webAppName": { diff --git a/101-webapp-with-golang/azuredeploy.json b/101-webapp-with-golang/azuredeploy.json index 16eb2c99aec9..fe8bf9d174c7 100644 --- a/101-webapp-with-golang/azuredeploy.json +++ b/101-webapp-with-golang/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webapp-with-golang/azuredeploy.parameters.json b/101-webapp-with-golang/azuredeploy.parameters.json index 6e8b944d886e..5979bd8e54fe 100644 --- a/101-webapp-with-golang/azuredeploy.parameters.json +++ b/101-webapp-with-golang/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/101-webappazure-oms-monitoring/azuredeploy.json b/101-webappazure-oms-monitoring/azuredeploy.json index 986dd4c67859..06334538ac62 100644 --- a/101-webappazure-oms-monitoring/azuredeploy.json +++ b/101-webappazure-oms-monitoring/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/101-webappazure-oms-monitoring/azuredeploy.parameters.json b/101-webappazure-oms-monitoring/azuredeploy.parameters.json index 53625b4e6670..85930520c62e 100644 --- a/101-webappazure-oms-monitoring/azuredeploy.parameters.json +++ b/101-webappazure-oms-monitoring/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceLocation": { diff --git a/201-1-vm-loadbalancer-2-nics/azuredeploy.json b/201-1-vm-loadbalancer-2-nics/azuredeploy.json index 9529d77ff81a..ba7f6a0a04eb 100644 --- a/201-1-vm-loadbalancer-2-nics/azuredeploy.json +++ b/201-1-vm-loadbalancer-2-nics/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/201-1-vm-loadbalancer-2-nics/azuredeploy.parameters.json b/201-1-vm-loadbalancer-2-nics/azuredeploy.parameters.json index 46672a829763..fd32075811a6 100644 --- a/201-1-vm-loadbalancer-2-nics/azuredeploy.parameters.json +++ b/201-1-vm-loadbalancer-2-nics/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/201-2-vms-internal-load-balancer/azuredeploy.json b/201-2-vms-internal-load-balancer/azuredeploy.json index 76b4534fb903..1e439ff2af51 100644 --- a/201-2-vms-internal-load-balancer/azuredeploy.json +++ b/201-2-vms-internal-load-balancer/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-2-vms-internal-load-balancer/azuredeploy.parameters.json b/201-2-vms-internal-load-balancer/azuredeploy.parameters.json index a6602854eb1e..eb8482e7df20 100644 --- a/201-2-vms-internal-load-balancer/azuredeploy.parameters.json +++ b/201-2-vms-internal-load-balancer/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-2-vms-loadbalancer-lbrules/azuredeploy.json b/201-2-vms-loadbalancer-lbrules/azuredeploy.json index 3fb49c7fc43a..210804d28a0b 100644 --- a/201-2-vms-loadbalancer-lbrules/azuredeploy.json +++ b/201-2-vms-loadbalancer-lbrules/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/201-2-vms-loadbalancer-lbrules/azuredeploy.parameters.json b/201-2-vms-loadbalancer-lbrules/azuredeploy.parameters.json index 7bc6c13aec9b..ece8db3bf82f 100644 --- a/201-2-vms-loadbalancer-lbrules/azuredeploy.parameters.json +++ b/201-2-vms-loadbalancer-lbrules/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/201-2-vms-loadbalancer-natrules/azuredeploy.json b/201-2-vms-loadbalancer-natrules/azuredeploy.json index 547b41143291..df62784a3de7 100644 --- a/201-2-vms-loadbalancer-natrules/azuredeploy.json +++ b/201-2-vms-loadbalancer-natrules/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-2-vms-loadbalancer-natrules/azuredeploy.parameters.json b/201-2-vms-loadbalancer-natrules/azuredeploy.parameters.json index 466fcc256f8c..e228bce8d208 100644 --- a/201-2-vms-loadbalancer-natrules/azuredeploy.parameters.json +++ b/201-2-vms-loadbalancer-natrules/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-IoT-IotHub-EdgeEmulator-VM/azuredeploy.json b/201-IoT-IotHub-EdgeEmulator-VM/azuredeploy.json index dd0f2b81e7ca..46cf6c862830 100755 --- a/201-IoT-IotHub-EdgeEmulator-VM/azuredeploy.json +++ b/201-IoT-IotHub-EdgeEmulator-VM/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-IoT-IotHub-EdgeEmulator-VM/azuredeploy.parameters.json b/201-IoT-IotHub-EdgeEmulator-VM/azuredeploy.parameters.json index db2a4af97a0e..d381ee4172eb 100755 --- a/201-IoT-IotHub-EdgeEmulator-VM/azuredeploy.parameters.json +++ b/201-IoT-IotHub-EdgeEmulator-VM/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-aci-linuxcontainer-healthprobe/azuredeploy.json b/201-aci-linuxcontainer-healthprobe/azuredeploy.json index 4ed6a5711421..de2cca99a7d5 100644 --- a/201-aci-linuxcontainer-healthprobe/azuredeploy.json +++ b/201-aci-linuxcontainer-healthprobe/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "containergroupname": { diff --git a/201-aci-linuxcontainer-healthprobe/azuredeploy.parameters.json b/201-aci-linuxcontainer-healthprobe/azuredeploy.parameters.json index a57fd6159106..b0d08cb72476 100644 --- a/201-aci-linuxcontainer-healthprobe/azuredeploy.parameters.json +++ b/201-aci-linuxcontainer-healthprobe/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "containergroupname": { diff --git a/201-aci-linuxcontainer-secure-environmentvariables/azuredeploy.json b/201-aci-linuxcontainer-secure-environmentvariables/azuredeploy.json index 7a0fd51d03f3..af5328cc7987 100644 --- a/201-aci-linuxcontainer-secure-environmentvariables/azuredeploy.json +++ b/201-aci-linuxcontainer-secure-environmentvariables/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "containergroupname": { diff --git a/201-aci-linuxcontainer-secure-environmentvariables/azuredeploy.parameters.json b/201-aci-linuxcontainer-secure-environmentvariables/azuredeploy.parameters.json index 6cac1c41196c..7892ba7d95bf 100644 --- a/201-aci-linuxcontainer-secure-environmentvariables/azuredeploy.parameters.json +++ b/201-aci-linuxcontainer-secure-environmentvariables/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "containergroupname": { diff --git a/201-aci-linuxcontainer-volume-emptydir/azuredeploy.json b/201-aci-linuxcontainer-volume-emptydir/azuredeploy.json index a8ffccf4c4a5..ed253b111076 100644 --- a/201-aci-linuxcontainer-volume-emptydir/azuredeploy.json +++ b/201-aci-linuxcontainer-volume-emptydir/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "containergroupname": { diff --git a/201-aci-linuxcontainer-volume-emptydir/azuredeploy.parameters.json b/201-aci-linuxcontainer-volume-emptydir/azuredeploy.parameters.json index ba2f245fc5e3..be3c97e5a3cf 100644 --- a/201-aci-linuxcontainer-volume-emptydir/azuredeploy.parameters.json +++ b/201-aci-linuxcontainer-volume-emptydir/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "containergroupname": { diff --git a/201-aci-linuxcontainer-volume-gitrepo/azuredeploy.json b/201-aci-linuxcontainer-volume-gitrepo/azuredeploy.json index b76d06c42690..f1d45c97c341 100644 --- a/201-aci-linuxcontainer-volume-gitrepo/azuredeploy.json +++ b/201-aci-linuxcontainer-volume-gitrepo/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "containergroupname": { diff --git a/201-aci-linuxcontainer-volume-gitrepo/azuredeploy.parameters.json b/201-aci-linuxcontainer-volume-gitrepo/azuredeploy.parameters.json index dd7390be9c95..0640ae964c18 100644 --- a/201-aci-linuxcontainer-volume-gitrepo/azuredeploy.parameters.json +++ b/201-aci-linuxcontainer-volume-gitrepo/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "containergroupname": { diff --git a/201-aci-linuxcontainer-volume-secret/azuredeploy.json b/201-aci-linuxcontainer-volume-secret/azuredeploy.json index c4837051a068..5ca1817dbd72 100644 --- a/201-aci-linuxcontainer-volume-secret/azuredeploy.json +++ b/201-aci-linuxcontainer-volume-secret/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "containergroupname": { diff --git a/201-aci-linuxcontainer-volume-secret/azuredeploy.parameters.json b/201-aci-linuxcontainer-volume-secret/azuredeploy.parameters.json index f02c6f22965b..da1aca0c02f8 100644 --- a/201-aci-linuxcontainer-volume-secret/azuredeploy.parameters.json +++ b/201-aci-linuxcontainer-volume-secret/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "containergroupname": { diff --git a/201-aci-sftp-files-existing-storage/azuredeploy.json b/201-aci-sftp-files-existing-storage/azuredeploy.json index cee498935b45..96757c52a5b1 100644 --- a/201-aci-sftp-files-existing-storage/azuredeploy.json +++ b/201-aci-sftp-files-existing-storage/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingStorageAccountResourceGroupName": { @@ -55,7 +55,7 @@ "properties": { "mode": "Incremental", "template": { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "resources": [] } diff --git a/201-aci-sftp-files-existing-storage/azuredeploy.parameters.json b/201-aci-sftp-files-existing-storage/azuredeploy.parameters.json index f4e93bee44de..f51b3912c66e 100644 --- a/201-aci-sftp-files-existing-storage/azuredeploy.parameters.json +++ b/201-aci-sftp-files-existing-storage/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sftpUser": { diff --git a/201-aci-sftp-files-existing-storage/prereqs/prereq.azuredeploy.json b/201-aci-sftp-files-existing-storage/prereqs/prereq.azuredeploy.json index eaf857a9524a..2a2a230048a7 100644 --- a/201-aci-sftp-files-existing-storage/prereqs/prereq.azuredeploy.json +++ b/201-aci-sftp-files-existing-storage/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { }, diff --git a/201-aci-sftp-files-existing-storage/prereqs/prereq.azuredeploy.parameters.json b/201-aci-sftp-files-existing-storage/prereqs/prereq.azuredeploy.parameters.json index 0c3975662be1..fb2d7f1a9715 100644 --- a/201-aci-sftp-files-existing-storage/prereqs/prereq.azuredeploy.parameters.json +++ b/201-aci-sftp-files-existing-storage/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-aci-sftp-files/azuredeploy.json b/201-aci-sftp-files/azuredeploy.json index c021a60b3bfd..a0759f8db02c 100644 --- a/201-aci-sftp-files/azuredeploy.json +++ b/201-aci-sftp-files/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountType": { @@ -58,7 +58,7 @@ "properties": { "mode": "Incremental", "template": { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "resources": [] } diff --git a/201-aci-sftp-files/azuredeploy.parameters.json b/201-aci-sftp-files/azuredeploy.parameters.json index 2ab34564391b..eb65feb244c3 100644 --- a/201-aci-sftp-files/azuredeploy.parameters.json +++ b/201-aci-sftp-files/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sftpUser": { diff --git a/201-aci-udp/azuredeploy.json b/201-aci-udp/azuredeploy.json index b93cf3c13392..871140d873e2 100644 --- a/201-aci-udp/azuredeploy.json +++ b/201-aci-udp/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "containerName": { diff --git a/201-aci-udp/azuredeploy.parameters.json b/201-aci-udp/azuredeploy.parameters.json index a1d8f92eda92..64d4f17f0354 100644 --- a/201-aci-udp/azuredeploy.parameters.json +++ b/201-aci-udp/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "containerName": { diff --git a/201-aci-wordpress-vnet/azuredeploy.json b/201-aci-wordpress-vnet/azuredeploy.json index 2c7a79905cae..735c280af7e7 100644 --- a/201-aci-wordpress-vnet/azuredeploy.json +++ b/201-aci-wordpress-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/201-aci-wordpress-vnet/azuredeploy.parameters.json b/201-aci-wordpress-vnet/azuredeploy.parameters.json index cf3ea2d453ed..412215011ca6 100644 --- a/201-aci-wordpress-vnet/azuredeploy.parameters.json +++ b/201-aci-wordpress-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "mysqlPassword": { diff --git a/201-aci-wordpress/azuredeploy.json b/201-aci-wordpress/azuredeploy.json index b50e87078dff..b77318f4610b 100644 --- a/201-aci-wordpress/azuredeploy.json +++ b/201-aci-wordpress/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountType": { diff --git a/201-aci-wordpress/azuredeploy.parameters.json b/201-aci-wordpress/azuredeploy.parameters.json index 9d4a5f96a64c..412215011ca6 100644 --- a/201-aci-wordpress/azuredeploy.parameters.json +++ b/201-aci-wordpress/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "mysqlPassword": { diff --git a/201-aks-sql-server-always-on/azuredeploy.json b/201-aks-sql-server-always-on/azuredeploy.json index 831961a1e155..c6d3a895df29 100644 --- a/201-aks-sql-server-always-on/azuredeploy.json +++ b/201-aks-sql-server-always-on/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "aks_cluster_name": { diff --git a/201-aks-sql-server-always-on/azuredeploy.parameters.json b/201-aks-sql-server-always-on/azuredeploy.parameters.json index 1cad7a007157..26adb8fa44db 100644 --- a/201-aks-sql-server-always-on/azuredeploy.parameters.json +++ b/201-aks-sql-server-always-on/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "azure_client_id": { diff --git a/201-alert-to-queue-with-logic-app/azuredeploy.json b/201-alert-to-queue-with-logic-app/azuredeploy.json index 51d5e8ac1903..280dbf499b26 100644 --- a/201-alert-to-queue-with-logic-app/azuredeploy.json +++ b/201-alert-to-queue-with-logic-app/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "logicAppName": { diff --git a/201-alert-to-queue-with-logic-app/azuredeploy.parameters.json b/201-alert-to-queue-with-logic-app/azuredeploy.parameters.json index 043daf4be70a..03a87258f52d 100644 --- a/201-alert-to-queue-with-logic-app/azuredeploy.parameters.json +++ b/201-alert-to-queue-with-logic-app/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "logicAppName": { diff --git a/201-alert-to-slack-with-logic-app/azuredeploy.json b/201-alert-to-slack-with-logic-app/azuredeploy.json index 5c8b88902515..e7affff379ff 100644 --- a/201-alert-to-slack-with-logic-app/azuredeploy.json +++ b/201-alert-to-slack-with-logic-app/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "logicAppName": { diff --git a/201-alert-to-slack-with-logic-app/azuredeploy.parameters.json b/201-alert-to-slack-with-logic-app/azuredeploy.parameters.json index 6fdc71a3409c..afc937122a73 100644 --- a/201-alert-to-slack-with-logic-app/azuredeploy.parameters.json +++ b/201-alert-to-slack-with-logic-app/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "logicAppName": { diff --git a/201-alert-to-text-message-with-logic-app/azuredeploy.json b/201-alert-to-text-message-with-logic-app/azuredeploy.json index 89a2b4f325ed..4338795e3e2d 100644 --- a/201-alert-to-text-message-with-logic-app/azuredeploy.json +++ b/201-alert-to-text-message-with-logic-app/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "logicAppName": { diff --git a/201-alert-to-text-message-with-logic-app/azuredeploy.parameters.json b/201-alert-to-text-message-with-logic-app/azuredeploy.parameters.json index 7b93158afcbd..b236744341fc 100644 --- a/201-alert-to-text-message-with-logic-app/azuredeploy.parameters.json +++ b/201-alert-to-text-message-with-logic-app/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "logicAppName": { diff --git a/201-api-management-create-all-resources/azuredeploy.json b/201-api-management-create-all-resources/azuredeploy.json index 872d4e2a2f10..e47fa4b97573 100644 --- a/201-api-management-create-all-resources/azuredeploy.json +++ b/201-api-management-create-all-resources/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/201-api-management-create-all-resources/azuredeploy.parameters.json b/201-api-management-create-all-resources/azuredeploy.parameters.json index e9808b497344..510c43df2525 100644 --- a/201-api-management-create-all-resources/azuredeploy.parameters.json +++ b/201-api-management-create-all-resources/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/201-api-management-create-with-external-vnet/azuredeploy.json b/201-api-management-create-with-external-vnet/azuredeploy.json index 1438dc67a0c0..91578bcc018e 100644 --- a/201-api-management-create-with-external-vnet/azuredeploy.json +++ b/201-api-management-create-with-external-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "apiManagementServiceName": { diff --git a/201-api-management-create-with-external-vnet/azuredeploy.parameters.json b/201-api-management-create-with-external-vnet/azuredeploy.parameters.json index e2d9fbc34021..9cbc7845651d 100644 --- a/201-api-management-create-with-external-vnet/azuredeploy.parameters.json +++ b/201-api-management-create-with-external-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/201-api-management-create-with-hostname/azuredeploy.json b/201-api-management-create-with-hostname/azuredeploy.json index d896b85b819d..192631cd1ac3 100644 --- a/201-api-management-create-with-hostname/azuredeploy.json +++ b/201-api-management-create-with-hostname/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/201-api-management-create-with-hostname/azuredeploy.parameters.json b/201-api-management-create-with-hostname/azuredeploy.parameters.json index 54891dca9883..e94c941c4281 100644 --- a/201-api-management-create-with-hostname/azuredeploy.parameters.json +++ b/201-api-management-create-with-hostname/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/201-api-management-create-with-internal-vnet/azuredeploy.json b/201-api-management-create-with-internal-vnet/azuredeploy.json index 0925321a2562..c8759bc4c43e 100644 --- a/201-api-management-create-with-internal-vnet/azuredeploy.json +++ b/201-api-management-create-with-internal-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "apiManagementServiceName": { diff --git a/201-api-management-create-with-internal-vnet/azuredeploy.parameters.json b/201-api-management-create-with-internal-vnet/azuredeploy.parameters.json index e2d9fbc34021..9cbc7845651d 100644 --- a/201-api-management-create-with-internal-vnet/azuredeploy.parameters.json +++ b/201-api-management-create-with-internal-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/201-api-management-create-with-keyvault-ssl/azuredeploy.json b/201-api-management-create-with-keyvault-ssl/azuredeploy.json index 24e43fff3fc8..c71f0932e44e 100644 --- a/201-api-management-create-with-keyvault-ssl/azuredeploy.json +++ b/201-api-management-create-with-keyvault-ssl/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/201-api-management-create-with-keyvault-ssl/azuredeploy.parameters.json b/201-api-management-create-with-keyvault-ssl/azuredeploy.parameters.json index aeb09cbf3d99..25aef591668f 100644 --- a/201-api-management-create-with-keyvault-ssl/azuredeploy.parameters.json +++ b/201-api-management-create-with-keyvault-ssl/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/201-api-management-create-with-keyvault-ssl/nestedtemplate/update-apim-with-keyvaultssl.json b/201-api-management-create-with-keyvault-ssl/nestedtemplate/update-apim-with-keyvaultssl.json index 9222cbdc1bdc..b985df62d147 100644 --- a/201-api-management-create-with-keyvault-ssl/nestedtemplate/update-apim-with-keyvaultssl.json +++ b/201-api-management-create-with-keyvault-ssl/nestedtemplate/update-apim-with-keyvaultssl.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/201-api-management-create-with-multiregion/azuredeploy.json b/201-api-management-create-with-multiregion/azuredeploy.json index 9d58e5f58770..b515618a2465 100644 --- a/201-api-management-create-with-multiregion/azuredeploy.json +++ b/201-api-management-create-with-multiregion/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "apiManagementServiceName":{ diff --git a/201-api-management-create-with-multiregion/azuredeploy.parameters.json b/201-api-management-create-with-multiregion/azuredeploy.parameters.json index 0f55182b0790..2ffbecf78f71 100644 --- a/201-api-management-create-with-multiregion/azuredeploy.parameters.json +++ b/201-api-management-create-with-multiregion/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/201-api-management-create-with-reference-keyvault/azuredeploy.json b/201-api-management-create-with-reference-keyvault/azuredeploy.json index 9b10549a4881..ed56a0ba67be 100644 --- a/201-api-management-create-with-reference-keyvault/azuredeploy.json +++ b/201-api-management-create-with-reference-keyvault/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/201-api-management-create-with-reference-keyvault/azuredeploy.parameters.json b/201-api-management-create-with-reference-keyvault/azuredeploy.parameters.json index 7568d00f3802..342ecbdaaefa 100644 --- a/201-api-management-create-with-reference-keyvault/azuredeploy.parameters.json +++ b/201-api-management-create-with-reference-keyvault/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/201-api-management-logs-oms-integration/azuredeploy.json b/201-api-management-logs-oms-integration/azuredeploy.json index 032de0e95433..048f18e2eab3 100644 --- a/201-api-management-logs-oms-integration/azuredeploy.json +++ b/201-api-management-logs-oms-integration/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "apiManagementPublisherEmail": { diff --git a/201-api-management-logs-oms-integration/azuredeploy.parameters.json b/201-api-management-logs-oms-integration/azuredeploy.parameters.json index 2d59e3d13662..91ca5016c622 100644 --- a/201-api-management-logs-oms-integration/azuredeploy.parameters.json +++ b/201-api-management-logs-oms-integration/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "publisherEmail": { diff --git a/201-application-gateway-2vms-iis-ssl/azuredeploy.json b/201-application-gateway-2vms-iis-ssl/azuredeploy.json index c07c82ac6a0d..5684ec677740 100644 --- a/201-application-gateway-2vms-iis-ssl/azuredeploy.json +++ b/201-application-gateway-2vms-iis-ssl/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-application-gateway-2vms-iis-ssl/azuredeploy.parameters.json b/201-application-gateway-2vms-iis-ssl/azuredeploy.parameters.json index 3a433b66b337..5ac0705ae00c 100644 --- a/201-application-gateway-2vms-iis-ssl/azuredeploy.parameters.json +++ b/201-application-gateway-2vms-iis-ssl/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-application-gateway-multihosting/azuredeploy.json b/201-application-gateway-multihosting/azuredeploy.json index 8eefa72c6646..7c8638581420 100644 --- a/201-application-gateway-multihosting/azuredeploy.json +++ b/201-application-gateway-multihosting/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetAddressPrefix": { diff --git a/201-application-gateway-multihosting/azuredeploy.parameters.json b/201-application-gateway-multihosting/azuredeploy.parameters.json index d90e58808aae..831776818b58 100644 --- a/201-application-gateway-multihosting/azuredeploy.parameters.json +++ b/201-application-gateway-multihosting/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetAddressPrefix": { diff --git a/201-application-gateway-path-override/azuredeploy.json b/201-application-gateway-path-override/azuredeploy.json index 045d853571b8..666eb62264b3 100644 --- a/201-application-gateway-path-override/azuredeploy.json +++ b/201-application-gateway-path-override/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/201-application-gateway-path-override/azuredeploy.parameters.json b/201-application-gateway-path-override/azuredeploy.parameters.json index 1de7aea51d2c..1bdee4300e28 100644 --- a/201-application-gateway-path-override/azuredeploy.parameters.json +++ b/201-application-gateway-path-override/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/201-application-gateway-probe/azuredeploy.json b/201-application-gateway-probe/azuredeploy.json index a6c990727900..5d5b4d06a7d5 100644 --- a/201-application-gateway-probe/azuredeploy.json +++ b/201-application-gateway-probe/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/201-application-gateway-probe/azuredeploy.parameters.json b/201-application-gateway-probe/azuredeploy.parameters.json index 64679b41759e..08c533ff5fcd 100644 --- a/201-application-gateway-probe/azuredeploy.parameters.json +++ b/201-application-gateway-probe/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/201-application-gateway-sslpolicy-custom/azuredeploy.json b/201-application-gateway-sslpolicy-custom/azuredeploy.json index d381601500ff..f947323a7833 100644 --- a/201-application-gateway-sslpolicy-custom/azuredeploy.json +++ b/201-application-gateway-sslpolicy-custom/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/201-application-gateway-sslpolicy-custom/azuredeploy.parameters.json b/201-application-gateway-sslpolicy-custom/azuredeploy.parameters.json index 44621762d694..ff4254163b1c 100644 --- a/201-application-gateway-sslpolicy-custom/azuredeploy.parameters.json +++ b/201-application-gateway-sslpolicy-custom/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/201-application-gateway-sslpolicy-predefined/azuredeploy.json b/201-application-gateway-sslpolicy-predefined/azuredeploy.json index 4155f19a8ab8..c0dfd787b7a9 100644 --- a/201-application-gateway-sslpolicy-predefined/azuredeploy.json +++ b/201-application-gateway-sslpolicy-predefined/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/201-application-gateway-sslpolicy-predefined/azuredeploy.parameters.json b/201-application-gateway-sslpolicy-predefined/azuredeploy.parameters.json index 44621762d694..ff4254163b1c 100644 --- a/201-application-gateway-sslpolicy-predefined/azuredeploy.parameters.json +++ b/201-application-gateway-sslpolicy-predefined/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/201-application-gateway-url-path-based-routing/azuredeploy.json b/201-application-gateway-url-path-based-routing/azuredeploy.json index cf6163366170..9c601fa85aeb 100644 --- a/201-application-gateway-url-path-based-routing/azuredeploy.json +++ b/201-application-gateway-url-path-based-routing/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/201-application-gateway-url-path-based-routing/azuredeploy.parameters.json b/201-application-gateway-url-path-based-routing/azuredeploy.parameters.json index 59733265f2ad..257360b96660 100644 --- a/201-application-gateway-url-path-based-routing/azuredeploy.parameters.json +++ b/201-application-gateway-url-path-based-routing/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/201-application-gateway-webapp-iprestriction/azuredeploy.json b/201-application-gateway-webapp-iprestriction/azuredeploy.json index 71dea0ddb111..05cfb3da4688 100644 --- a/201-application-gateway-webapp-iprestriction/azuredeploy.json +++ b/201-application-gateway-webapp-iprestriction/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/201-application-gateway-webapp-iprestriction/azuredeploy.parameters.json b/201-application-gateway-webapp-iprestriction/azuredeploy.parameters.json index 327884dc4ac5..4a505fc2f35d 100644 --- a/201-application-gateway-webapp-iprestriction/azuredeploy.parameters.json +++ b/201-application-gateway-webapp-iprestriction/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "siteName": { diff --git a/201-application-gateway-webapp-iprestriction/fetchIpAddress.json b/201-application-gateway-webapp-iprestriction/fetchIpAddress.json index aa21b284d6e9..d9c7c5655e75 100644 --- a/201-application-gateway-webapp-iprestriction/fetchIpAddress.json +++ b/201-application-gateway-webapp-iprestriction/fetchIpAddress.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publicIPAddressId": { diff --git a/201-application-gateway-webapps/azuredeploy.json b/201-application-gateway-webapps/azuredeploy.json index 268e7380bcbd..0f036bba55a2 100644 --- a/201-application-gateway-webapps/azuredeploy.json +++ b/201-application-gateway-webapps/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/201-application-gateway-webapps/azuredeploy.parameters.json b/201-application-gateway-webapps/azuredeploy.parameters.json index 486ea50b60f8..a45eb083ed6a 100644 --- a/201-application-gateway-webapps/azuredeploy.parameters.json +++ b/201-application-gateway-webapps/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "addressPrefix": { diff --git a/201-application-security-group/azuredeploy.json b/201-application-security-group/azuredeploy.json index d2ec990aa288..d672672009d9 100644 --- a/201-application-security-group/azuredeploy.json +++ b/201-application-security-group/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { diff --git a/201-application-security-group/azuredeploy.parameters.json b/201-application-security-group/azuredeploy.parameters.json index 5ade6ef196d4..63fa397926c2 100644 --- a/201-application-security-group/azuredeploy.parameters.json +++ b/201-application-security-group/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-asev2-ilb-with-web-app/azuredeploy.json b/201-asev2-ilb-with-web-app/azuredeploy.json index 25f861a9b00a..1c786f63b214 100644 --- a/201-asev2-ilb-with-web-app/azuredeploy.json +++ b/201-asev2-ilb-with-web-app/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "aseName": { diff --git a/201-asev2-ilb-with-web-app/azuredeploy.parameters.json b/201-asev2-ilb-with-web-app/azuredeploy.parameters.json index c8e86e69b9f6..e25c79303eac 100644 --- a/201-asev2-ilb-with-web-app/azuredeploy.parameters.json +++ b/201-asev2-ilb-with-web-app/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "aseName": { diff --git a/201-asev2-ilb-with-web-app/prereqs/prereq.azuredeploy.json b/201-asev2-ilb-with-web-app/prereqs/prereq.azuredeploy.json index 2f5d4bb8fe93..c0a6100b7d8a 100644 --- a/201-asev2-ilb-with-web-app/prereqs/prereq.azuredeploy.json +++ b/201-asev2-ilb-with-web-app/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {}, "variables": { diff --git a/201-asev2-ilb-with-web-app/prereqs/prereq.azuredeploy.parameters.json b/201-asev2-ilb-with-web-app/prereqs/prereq.azuredeploy.parameters.json index 0c3975662be1..fb2d7f1a9715 100644 --- a/201-asev2-ilb-with-web-app/prereqs/prereq.azuredeploy.parameters.json +++ b/201-asev2-ilb-with-web-app/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-azure-relay-create-all-resources/azuredeploy.json b/201-azure-relay-create-all-resources/azuredeploy.json index d10da55525f3..bd1f0d955615 100644 --- a/201-azure-relay-create-all-resources/azuredeploy.json +++ b/201-azure-relay-create-all-resources/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "namespaceName": { diff --git a/201-azure-relay-create-all-resources/azuredeploy.parameters.json b/201-azure-relay-create-all-resources/azuredeploy.parameters.json index c3978e574cd2..fde567f47c22 100644 --- a/201-azure-relay-create-all-resources/azuredeploy.parameters.json +++ b/201-azure-relay-create-all-resources/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "namespaceName": { diff --git a/201-azure-relay-create-hybridconnection/azuredeploy.json b/201-azure-relay-create-hybridconnection/azuredeploy.json index 747d7b5e1809..96e0e0f286f4 100644 --- a/201-azure-relay-create-hybridconnection/azuredeploy.json +++ b/201-azure-relay-create-hybridconnection/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "namespaceName": { diff --git a/201-azure-relay-create-hybridconnection/azuredeploy.parameters.json b/201-azure-relay-create-hybridconnection/azuredeploy.parameters.json index d16cc5cae27d..7b7ae4233de8 100644 --- a/201-azure-relay-create-hybridconnection/azuredeploy.parameters.json +++ b/201-azure-relay-create-hybridconnection/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "namespaceName": { diff --git a/201-azure-relay-create-wcfrelay/azuredeploy.json b/201-azure-relay-create-wcfrelay/azuredeploy.json index 47afe08d726e..b2eb8b818918 100644 --- a/201-azure-relay-create-wcfrelay/azuredeploy.json +++ b/201-azure-relay-create-wcfrelay/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "namespaceName": { diff --git a/201-azure-relay-create-wcfrelay/azuredeploy.parameters.json b/201-azure-relay-create-wcfrelay/azuredeploy.parameters.json index 0894fc5114cf..4490f9e8f6bd 100644 --- a/201-azure-relay-create-wcfrelay/azuredeploy.parameters.json +++ b/201-azure-relay-create-wcfrelay/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "namespaceName": { diff --git a/201-blockchain-asaservice/azuredeploy.json b/201-blockchain-asaservice/azuredeploy.json index 0f138efb33ce..bebe36294ea2 100755 --- a/201-blockchain-asaservice/azuredeploy.json +++ b/201-blockchain-asaservice/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "bcMemberName": { diff --git a/201-blockchain-asaservice/azuredeploy.parameters.json b/201-blockchain-asaservice/azuredeploy.parameters.json index 09c7ad78723c..8b28fb4aa395 100755 --- a/201-blockchain-asaservice/azuredeploy.parameters.json +++ b/201-blockchain-asaservice/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "bcMemberName": { diff --git a/201-cdn-customize/azuredeploy.json b/201-cdn-customize/azuredeploy.json index b3e44c6fffe4..b16366688860 100644 --- a/201-cdn-customize/azuredeploy.json +++ b/201-cdn-customize/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "variables": { "cdnApiVersion": "2015-06-01" diff --git a/201-cdn-customize/azuredeploy.parameters.json b/201-cdn-customize/azuredeploy.parameters.json index c1da5c572bb9..43a1578caea4 100644 --- a/201-cdn-customize/azuredeploy.parameters.json +++ b/201-cdn-customize/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "profileName": { diff --git a/201-cdn-with-ruleseengine-cacheoverride/azuredeploy.json b/201-cdn-with-ruleseengine-cacheoverride/azuredeploy.json index 11668850dc5b..78da9e627abf 100644 --- a/201-cdn-with-ruleseengine-cacheoverride/azuredeploy.json +++ b/201-cdn-with-ruleseengine-cacheoverride/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "profileName": { diff --git a/201-cdn-with-ruleseengine-cacheoverride/azuredeploy.parameters.json b/201-cdn-with-ruleseengine-cacheoverride/azuredeploy.parameters.json index 662e4a7f80e3..83dffc479c5c 100644 --- a/201-cdn-with-ruleseengine-cacheoverride/azuredeploy.parameters.json +++ b/201-cdn-with-ruleseengine-cacheoverride/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "profileName": { diff --git a/201-cdn-with-ruleseengine-responseheader/azuredeploy.json b/201-cdn-with-ruleseengine-responseheader/azuredeploy.json index f7d8c23d0449..15186b4406b7 100644 --- a/201-cdn-with-ruleseengine-responseheader/azuredeploy.json +++ b/201-cdn-with-ruleseengine-responseheader/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "profileName": { diff --git a/201-cdn-with-ruleseengine-responseheader/azuredeploy.parameters.json b/201-cdn-with-ruleseengine-responseheader/azuredeploy.parameters.json index 662e4a7f80e3..83dffc479c5c 100644 --- a/201-cdn-with-ruleseengine-responseheader/azuredeploy.parameters.json +++ b/201-cdn-with-ruleseengine-responseheader/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "profileName": { diff --git a/201-cdn-with-ruleseengine-rewriteandredirect/azuredeploy.json b/201-cdn-with-ruleseengine-rewriteandredirect/azuredeploy.json index 3f3bd4298c82..22ac22ad2ba1 100644 --- a/201-cdn-with-ruleseengine-rewriteandredirect/azuredeploy.json +++ b/201-cdn-with-ruleseengine-rewriteandredirect/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "profileName": { diff --git a/201-cdn-with-ruleseengine-rewriteandredirect/azuredeploy.parameters.json b/201-cdn-with-ruleseengine-rewriteandredirect/azuredeploy.parameters.json index 662e4a7f80e3..83dffc479c5c 100644 --- a/201-cdn-with-ruleseengine-rewriteandredirect/azuredeploy.parameters.json +++ b/201-cdn-with-ruleseengine-rewriteandredirect/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "profileName": { diff --git a/201-cdn-with-storage-account/azuredeploy.json b/201-cdn-with-storage-account/azuredeploy.json index e0d1ef74bf8d..32449abc7a8b 100644 --- a/201-cdn-with-storage-account/azuredeploy.json +++ b/201-cdn-with-storage-account/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-cdn-with-storage-account/azuredeploy.parameters.json b/201-cdn-with-storage-account/azuredeploy.parameters.json index ea27417e3572..281531feda89 100644 --- a/201-cdn-with-storage-account/azuredeploy.parameters.json +++ b/201-cdn-with-storage-account/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-cdn-with-web-app/azuredeploy.json b/201-cdn-with-web-app/azuredeploy.json index ad6841eac897..e7243e1d249b 100644 --- a/201-cdn-with-web-app/azuredeploy.json +++ b/201-cdn-with-web-app/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-cdn-with-web-app/azuredeploy.parameters.json b/201-cdn-with-web-app/azuredeploy.parameters.json index ea27417e3572..281531feda89 100644 --- a/201-cdn-with-web-app/azuredeploy.parameters.json +++ b/201-cdn-with-web-app/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-cosmosdb-advanced-threat-protection-create-account/azuredeploy.json b/201-cosmosdb-advanced-threat-protection-create-account/azuredeploy.json index 798a2c0762aa..d182f63a55cc 100644 --- a/201-cosmosdb-advanced-threat-protection-create-account/azuredeploy.json +++ b/201-cosmosdb-advanced-threat-protection-create-account/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/201-cosmosdb-advanced-threat-protection-create-account/azuredeploy.parameters.json b/201-cosmosdb-advanced-threat-protection-create-account/azuredeploy.parameters.json index e1c1b3794dc9..d8758475db72 100644 --- a/201-cosmosdb-advanced-threat-protection-create-account/azuredeploy.parameters.json +++ b/201-cosmosdb-advanced-threat-protection-create-account/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/201-create-encrypted-managed-disk/CreateEncryptedManagedDisk-kek.json b/201-create-encrypted-managed-disk/CreateEncryptedManagedDisk-kek.json index d62da533c17f..636b05fdeeac 100644 --- a/201-create-encrypted-managed-disk/CreateEncryptedManagedDisk-kek.json +++ b/201-create-encrypted-managed-disk/CreateEncryptedManagedDisk-kek.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vhdUri": { diff --git a/201-create-encrypted-managed-disk/CreateEncryptedManagedDisk-nokek.json b/201-create-encrypted-managed-disk/CreateEncryptedManagedDisk-nokek.json index 19bb0bcaa893..004336d0f915 100644 --- a/201-create-encrypted-managed-disk/CreateEncryptedManagedDisk-nokek.json +++ b/201-create-encrypted-managed-disk/CreateEncryptedManagedDisk-nokek.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vhdUri": { diff --git a/201-create-encrypted-managed-disk/azuredeploy.json b/201-create-encrypted-managed-disk/azuredeploy.json index 35421bb53fdb..7cb23dde0a58 100644 --- a/201-create-encrypted-managed-disk/azuredeploy.json +++ b/201-create-encrypted-managed-disk/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vhdUri": { diff --git a/201-create-encrypted-managed-disk/azuredeploy.parameters.json b/201-create-encrypted-managed-disk/azuredeploy.parameters.json index 9c4f728cdf05..74aa02de8c1d 100644 --- a/201-create-encrypted-managed-disk/azuredeploy.parameters.json +++ b/201-create-encrypted-managed-disk/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vhdUri": { diff --git a/201-customscript-extension-public-storage-on-ubuntu/azuredeploy.json b/201-customscript-extension-public-storage-on-ubuntu/azuredeploy.json index d24c70738025..75ad5d4bf1f3 100644 --- a/201-customscript-extension-public-storage-on-ubuntu/azuredeploy.json +++ b/201-customscript-extension-public-storage-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmSize": { diff --git a/201-customscript-extension-public-storage-on-ubuntu/azuredeploy.parameters.json b/201-customscript-extension-public-storage-on-ubuntu/azuredeploy.parameters.json index 1e810bee1fde..fdb74310c12b 100644 --- a/201-customscript-extension-public-storage-on-ubuntu/azuredeploy.parameters.json +++ b/201-customscript-extension-public-storage-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "username": { diff --git a/201-data-factory-ftp-hive-blob/azuredeploy.json b/201-data-factory-ftp-hive-blob/azuredeploy.json index ba731843bd38..b5371d7a5d80 100644 --- a/201-data-factory-ftp-hive-blob/azuredeploy.json +++ b/201-data-factory-ftp-hive-blob/azuredeploy.json @@ -1,6 +1,6 @@ { "contentVersion": "1.0.0.0", - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "parameters": { "storageAccountResourceGroupName": { "type": "string", diff --git a/201-data-factory-ftp-hive-blob/azuredeploy.parameters.json b/201-data-factory-ftp-hive-blob/azuredeploy.parameters.json index 9c313f06f698..255f44a8196e 100644 --- a/201-data-factory-ftp-hive-blob/azuredeploy.parameters.json +++ b/201-data-factory-ftp-hive-blob/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-data-factory-v2-azure-sql-database-to-sql-data-warehouse-copy/azuredeploy.json b/201-data-factory-v2-azure-sql-database-to-sql-data-warehouse-copy/azuredeploy.json index 86f3d7a918e4..4d5caebf52ce 100644 --- a/201-data-factory-v2-azure-sql-database-to-sql-data-warehouse-copy/azuredeploy.json +++ b/201-data-factory-v2-azure-sql-database-to-sql-data-warehouse-copy/azuredeploy.json @@ -1,6 +1,6 @@ { "contentVersion": "1.0.0.0", - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "parameters": { "dataFactoryName": { "type": "string", diff --git a/201-data-factory-v2-azure-sql-database-to-sql-data-warehouse-copy/azuredeploy.parameters.json b/201-data-factory-v2-azure-sql-database-to-sql-data-warehouse-copy/azuredeploy.parameters.json index 089681a5678b..183d8f61672c 100644 --- a/201-data-factory-v2-azure-sql-database-to-sql-data-warehouse-copy/azuredeploy.parameters.json +++ b/201-data-factory-v2-azure-sql-database-to-sql-data-warehouse-copy/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dataFactoryName": { diff --git a/201-data-factory-v2-azure-sql-database-to-sql-data-warehouse-copy/prereqs/prereq.azuredeploy.json b/201-data-factory-v2-azure-sql-database-to-sql-data-warehouse-copy/prereqs/prereq.azuredeploy.json index 88e232bfd4f6..aea17b5fb787 100644 --- a/201-data-factory-v2-azure-sql-database-to-sql-data-warehouse-copy/prereqs/prereq.azuredeploy.json +++ b/201-data-factory-v2-azure-sql-database-to-sql-data-warehouse-copy/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "databaseAdminUsername": { diff --git a/201-data-factory-v2-azure-sql-database-to-sql-data-warehouse-copy/prereqs/prereq.azuredeploy.parameters.json b/201-data-factory-v2-azure-sql-database-to-sql-data-warehouse-copy/prereqs/prereq.azuredeploy.parameters.json index 423c50e62507..ee6fb2defe58 100644 --- a/201-data-factory-v2-azure-sql-database-to-sql-data-warehouse-copy/prereqs/prereq.azuredeploy.parameters.json +++ b/201-data-factory-v2-azure-sql-database-to-sql-data-warehouse-copy/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "databaseAdminUsername": { diff --git a/201-decrypt-running-linux-vm-without-aad/azuredeploy.json b/201-decrypt-running-linux-vm-without-aad/azuredeploy.json index 0e955b2aba67..6752b3958cda 100644 --- a/201-decrypt-running-linux-vm-without-aad/azuredeploy.json +++ b/201-decrypt-running-linux-vm-without-aad/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-decrypt-running-linux-vm-without-aad/azuredeploy.parameters.json b/201-decrypt-running-linux-vm-without-aad/azuredeploy.parameters.json index 3a9c70b6d266..fe5f43e33b2a 100644 --- a/201-decrypt-running-linux-vm-without-aad/azuredeploy.parameters.json +++ b/201-decrypt-running-linux-vm-without-aad/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-decrypt-running-linux-vm-without-aad/prereqs/prereq.azuredeploy.json b/201-decrypt-running-linux-vm-without-aad/prereqs/prereq.azuredeploy.json index 3d78d5f41c0e..83edf76ee294 100644 --- a/201-decrypt-running-linux-vm-without-aad/prereqs/prereq.azuredeploy.json +++ b/201-decrypt-running-linux-vm-without-aad/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-decrypt-running-linux-vm-without-aad/prereqs/prereq.azuredeploy.parameters.json b/201-decrypt-running-linux-vm-without-aad/prereqs/prereq.azuredeploy.parameters.json index 430b30e2ae1b..be6605fd8973 100644 --- a/201-decrypt-running-linux-vm-without-aad/prereqs/prereq.azuredeploy.parameters.json +++ b/201-decrypt-running-linux-vm-without-aad/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-decrypt-running-linux-vm/azuredeploy.json b/201-decrypt-running-linux-vm/azuredeploy.json index 50030028936e..7a4b3d3e6116 100644 --- a/201-decrypt-running-linux-vm/azuredeploy.json +++ b/201-decrypt-running-linux-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-decrypt-running-linux-vm/azuredeploy.parameters.json b/201-decrypt-running-linux-vm/azuredeploy.parameters.json index eaf93923f539..fe1e52deefb0 100644 --- a/201-decrypt-running-linux-vm/azuredeploy.parameters.json +++ b/201-decrypt-running-linux-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-decrypt-running-linux-vm/updateEncryptionSettings.json b/201-decrypt-running-linux-vm/updateEncryptionSettings.json index 66d858892a0c..447597d00286 100644 --- a/201-decrypt-running-linux-vm/updateEncryptionSettings.json +++ b/201-decrypt-running-linux-vm/updateEncryptionSettings.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-decrypt-running-windows-vm-without-aad/azuredeploy.json b/201-decrypt-running-windows-vm-without-aad/azuredeploy.json index 19a0cf86ceb3..944139eb3418 100644 --- a/201-decrypt-running-windows-vm-without-aad/azuredeploy.json +++ b/201-decrypt-running-windows-vm-without-aad/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-decrypt-running-windows-vm-without-aad/azuredeploy.parameters.json b/201-decrypt-running-windows-vm-without-aad/azuredeploy.parameters.json index bef24d53a981..e4bdbbbd74fe 100644 --- a/201-decrypt-running-windows-vm-without-aad/azuredeploy.parameters.json +++ b/201-decrypt-running-windows-vm-without-aad/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-decrypt-running-windows-vm-without-aad/prereqs/prereq.azuredeploy.json b/201-decrypt-running-windows-vm-without-aad/prereqs/prereq.azuredeploy.json index c7f25e18727d..b81e9b036666 100644 --- a/201-decrypt-running-windows-vm-without-aad/prereqs/prereq.azuredeploy.json +++ b/201-decrypt-running-windows-vm-without-aad/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-decrypt-running-windows-vm-without-aad/prereqs/prereq.azuredeploy.parameters.json b/201-decrypt-running-windows-vm-without-aad/prereqs/prereq.azuredeploy.parameters.json index 87577d99b60f..29472dc2c2cb 100644 --- a/201-decrypt-running-windows-vm-without-aad/prereqs/prereq.azuredeploy.parameters.json +++ b/201-decrypt-running-windows-vm-without-aad/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-decrypt-running-windows-vm/azuredeploy.json b/201-decrypt-running-windows-vm/azuredeploy.json index 93b8c5ba917f..2ffa705741ed 100644 --- a/201-decrypt-running-windows-vm/azuredeploy.json +++ b/201-decrypt-running-windows-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-decrypt-running-windows-vm/azuredeploy.parameters.json b/201-decrypt-running-windows-vm/azuredeploy.parameters.json index 982cad717013..5c04a81303d9 100644 --- a/201-decrypt-running-windows-vm/azuredeploy.parameters.json +++ b/201-decrypt-running-windows-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-decrypt-running-windows-vm/updateEncryptionSettings-All.json b/201-decrypt-running-windows-vm/updateEncryptionSettings-All.json index 25d422bcc3c0..da4838a19b76 100644 --- a/201-decrypt-running-windows-vm/updateEncryptionSettings-All.json +++ b/201-decrypt-running-windows-vm/updateEncryptionSettings-All.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-decrypt-running-windows-vm/updateEncryptionSettings-Data.json b/201-decrypt-running-windows-vm/updateEncryptionSettings-Data.json index 844154e03d12..9f663a86cdc8 100644 --- a/201-decrypt-running-windows-vm/updateEncryptionSettings-Data.json +++ b/201-decrypt-running-windows-vm/updateEncryptionSettings-Data.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-decrypt-running-windows-vm/updateEncryptionSettings-OS.json b/201-decrypt-running-windows-vm/updateEncryptionSettings-OS.json index 25d422bcc3c0..da4838a19b76 100644 --- a/201-decrypt-running-windows-vm/updateEncryptionSettings-OS.json +++ b/201-decrypt-running-windows-vm/updateEncryptionSettings-OS.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-decrypt-vmss-linux/azuredeploy.json b/201-decrypt-vmss-linux/azuredeploy.json index 024b2040c800..44d72e2d5e37 100644 --- a/201-decrypt-vmss-linux/azuredeploy.json +++ b/201-decrypt-vmss-linux/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmssName": { diff --git a/201-decrypt-vmss-linux/azuredeploy.parameters.json b/201-decrypt-vmss-linux/azuredeploy.parameters.json index a32ae652c78d..03f55bf86f46 100644 --- a/201-decrypt-vmss-linux/azuredeploy.parameters.json +++ b/201-decrypt-vmss-linux/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmssName": { diff --git a/201-decrypt-vmss-linux/prereqs/prereq.azuredeploy.json b/201-decrypt-vmss-linux/prereqs/prereq.azuredeploy.json index 368ebea7ea13..5add919d0a5c 100644 --- a/201-decrypt-vmss-linux/prereqs/prereq.azuredeploy.json +++ b/201-decrypt-vmss-linux/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-decrypt-vmss-linux/prereqs/prereq.azuredeploy.parameters.json b/201-decrypt-vmss-linux/prereqs/prereq.azuredeploy.parameters.json index 430b30e2ae1b..be6605fd8973 100644 --- a/201-decrypt-vmss-linux/prereqs/prereq.azuredeploy.parameters.json +++ b/201-decrypt-vmss-linux/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-decrypt-vmss-windows/azuredeploy.json b/201-decrypt-vmss-windows/azuredeploy.json index d014b0aadc8c..1733de14b93c 100644 --- a/201-decrypt-vmss-windows/azuredeploy.json +++ b/201-decrypt-vmss-windows/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmssName": { diff --git a/201-decrypt-vmss-windows/azuredeploy.parameters.json b/201-decrypt-vmss-windows/azuredeploy.parameters.json index 5ad546f8c8a2..ab22c83552ae 100644 --- a/201-decrypt-vmss-windows/azuredeploy.parameters.json +++ b/201-decrypt-vmss-windows/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmssName": { diff --git a/201-decrypt-vmss-windows/prereqs/prereq.azuredeploy.json b/201-decrypt-vmss-windows/prereqs/prereq.azuredeploy.json index c8d4f1a7919f..65bd33dac368 100644 --- a/201-decrypt-vmss-windows/prereqs/prereq.azuredeploy.json +++ b/201-decrypt-vmss-windows/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-decrypt-vmss-windows/prereqs/prereq.azuredeploy.parameters.json b/201-decrypt-vmss-windows/prereqs/prereq.azuredeploy.parameters.json index 87577d99b60f..29472dc2c2cb 100644 --- a/201-decrypt-vmss-windows/prereqs/prereq.azuredeploy.parameters.json +++ b/201-decrypt-vmss-windows/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-dependency-between-scripts-using-extensions/azuredeploy.json b/201-dependency-between-scripts-using-extensions/azuredeploy.json index 452018df7d87..7b49f45940c1 100644 --- a/201-dependency-between-scripts-using-extensions/azuredeploy.json +++ b/201-dependency-between-scripts-using-extensions/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/201-dependency-between-scripts-using-extensions/azuredeploy.parameters.json b/201-dependency-between-scripts-using-extensions/azuredeploy.parameters.json index 23727076147d..998c01f9545e 100644 --- a/201-dependency-between-scripts-using-extensions/azuredeploy.parameters.json +++ b/201-dependency-between-scripts-using-extensions/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/201-dependency-between-scripts-using-extensions/install-mongo.json b/201-dependency-between-scripts-using-extensions/install-mongo.json index 412b75f6b47b..030a1456937b 100644 --- a/201-dependency-between-scripts-using-extensions/install-mongo.json +++ b/201-dependency-between-scripts-using-extensions/install-mongo.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-discover-private-ip-dynamically/azuredeploy.json b/201-discover-private-ip-dynamically/azuredeploy.json index 067cbad7b669..766c8979dda2 100644 --- a/201-discover-private-ip-dynamically/azuredeploy.json +++ b/201-discover-private-ip-dynamically/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "scaleNumber": { diff --git a/201-discover-private-ip-dynamically/azuredeploy.parameters.json b/201-discover-private-ip-dynamically/azuredeploy.parameters.json index bd85c440b5da..069e419a0108 100644 --- a/201-discover-private-ip-dynamically/azuredeploy.parameters.json +++ b/201-discover-private-ip-dynamically/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/201-documentdb-webapp/azuredeploy.json b/201-documentdb-webapp/azuredeploy.json index a69f010398a0..30a2f4fe32b8 100644 --- a/201-documentdb-webapp/azuredeploy.json +++ b/201-documentdb-webapp/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "databaseAccountName": { diff --git a/201-documentdb-webapp/azuredeploy.parameters.json b/201-documentdb-webapp/azuredeploy.parameters.json index d8bf1c63f70c..b7d73a9bb300 100644 --- a/201-documentdb-webapp/azuredeploy.parameters.json +++ b/201-documentdb-webapp/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "databaseAccountName": { diff --git a/201-dsc-linux-azure-storage-on-ubuntu/azuredeploy.json b/201-dsc-linux-azure-storage-on-ubuntu/azuredeploy.json index e6524105f006..ab8f04041ef1 100644 --- a/201-dsc-linux-azure-storage-on-ubuntu/azuredeploy.json +++ b/201-dsc-linux-azure-storage-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "username": { diff --git a/201-dsc-linux-azure-storage-on-ubuntu/azuredeploy.parameters.json b/201-dsc-linux-azure-storage-on-ubuntu/azuredeploy.parameters.json index ff234754c34f..8e6a12207d22 100644 --- a/201-dsc-linux-azure-storage-on-ubuntu/azuredeploy.parameters.json +++ b/201-dsc-linux-azure-storage-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "username": { diff --git a/201-dsc-linux-azure-storage-on-ubuntu/push-pull-install.parameters.json b/201-dsc-linux-azure-storage-on-ubuntu/push-pull-install.parameters.json index dcef57a42145..c7252b20c51b 100644 --- a/201-dsc-linux-azure-storage-on-ubuntu/push-pull-install.parameters.json +++ b/201-dsc-linux-azure-storage-on-ubuntu/push-pull-install.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "username": { diff --git a/201-dsc-linux-azure-storage-on-ubuntu/register-azure-automation.parameters.json b/201-dsc-linux-azure-storage-on-ubuntu/register-azure-automation.parameters.json index 71d4f7cdbee5..9761818f6c6f 100644 --- a/201-dsc-linux-azure-storage-on-ubuntu/register-azure-automation.parameters.json +++ b/201-dsc-linux-azure-storage-on-ubuntu/register-azure-automation.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "username": { diff --git a/201-dsc-linux-public-storage-on-ubuntu/azuredeploy.json b/201-dsc-linux-public-storage-on-ubuntu/azuredeploy.json index cd8d33543248..7971e70cd0da 100644 --- a/201-dsc-linux-public-storage-on-ubuntu/azuredeploy.json +++ b/201-dsc-linux-public-storage-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "username": { diff --git a/201-dsc-linux-public-storage-on-ubuntu/azuredeploy.parameters.json b/201-dsc-linux-public-storage-on-ubuntu/azuredeploy.parameters.json index ff234754c34f..8e6a12207d22 100644 --- a/201-dsc-linux-public-storage-on-ubuntu/azuredeploy.parameters.json +++ b/201-dsc-linux-public-storage-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "username": { diff --git a/201-dsc-linux-public-storage-on-ubuntu/register-azure-automation.parameters.json b/201-dsc-linux-public-storage-on-ubuntu/register-azure-automation.parameters.json index 71d4f7cdbee5..9761818f6c6f 100644 --- a/201-dsc-linux-public-storage-on-ubuntu/register-azure-automation.parameters.json +++ b/201-dsc-linux-public-storage-on-ubuntu/register-azure-automation.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "username": { diff --git a/201-dynamic-web-tests/azuredeploy.json b/201-dynamic-web-tests/azuredeploy.json index a8e9627e9741..accab35d2c7e 100644 --- a/201-dynamic-web-tests/azuredeploy.json +++ b/201-dynamic-web-tests/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "appName": { diff --git a/201-dynamic-web-tests/azuredeploy.parameters.json b/201-dynamic-web-tests/azuredeploy.parameters.json index c6e74c2990e0..bb0697b55329 100644 --- a/201-dynamic-web-tests/azuredeploy.parameters.json +++ b/201-dynamic-web-tests/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "appName": { diff --git a/201-encrypt-create-new-vm-gallery-image-managed-disks/azuredeploy.json b/201-encrypt-create-new-vm-gallery-image-managed-disks/azuredeploy.json index 665213d10dec..8304a7fa27dc 100644 --- a/201-encrypt-create-new-vm-gallery-image-managed-disks/azuredeploy.json +++ b/201-encrypt-create-new-vm-gallery-image-managed-disks/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-create-new-vm-gallery-image-managed-disks/azuredeploy.parameters.json b/201-encrypt-create-new-vm-gallery-image-managed-disks/azuredeploy.parameters.json index 18e2af74b592..572f083b0846 100644 --- a/201-encrypt-create-new-vm-gallery-image-managed-disks/azuredeploy.parameters.json +++ b/201-encrypt-create-new-vm-gallery-image-managed-disks/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-create-new-vm-gallery-image/azuredeploy.json b/201-encrypt-create-new-vm-gallery-image/azuredeploy.json index 1d415f26bac2..e6951303dfc9 100644 --- a/201-encrypt-create-new-vm-gallery-image/azuredeploy.json +++ b/201-encrypt-create-new-vm-gallery-image/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-create-new-vm-gallery-image/azuredeploy.parameters.json b/201-encrypt-create-new-vm-gallery-image/azuredeploy.parameters.json index 5a1a0611cac7..b6d57ccc7911 100644 --- a/201-encrypt-create-new-vm-gallery-image/azuredeploy.parameters.json +++ b/201-encrypt-create-new-vm-gallery-image/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-running-linux-vm-without-aad/azuredeploy.json b/201-encrypt-running-linux-vm-without-aad/azuredeploy.json index 71502a0cc007..9744505aa5a3 100644 --- a/201-encrypt-running-linux-vm-without-aad/azuredeploy.json +++ b/201-encrypt-running-linux-vm-without-aad/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-running-linux-vm-without-aad/azuredeploy.parameters.json b/201-encrypt-running-linux-vm-without-aad/azuredeploy.parameters.json index 9b6d6be50d83..9b9c97f290f6 100644 --- a/201-encrypt-running-linux-vm-without-aad/azuredeploy.parameters.json +++ b/201-encrypt-running-linux-vm-without-aad/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-running-linux-vm-without-aad/prereqs/prereq.azuredeploy.json b/201-encrypt-running-linux-vm-without-aad/prereqs/prereq.azuredeploy.json index 632ff4ac296f..9a22b227157a 100644 --- a/201-encrypt-running-linux-vm-without-aad/prereqs/prereq.azuredeploy.json +++ b/201-encrypt-running-linux-vm-without-aad/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-encrypt-running-linux-vm-without-aad/prereqs/prereq.azuredeploy.parameters.json b/201-encrypt-running-linux-vm-without-aad/prereqs/prereq.azuredeploy.parameters.json index be34983de9fe..57d1b1890cb6 100644 --- a/201-encrypt-running-linux-vm-without-aad/prereqs/prereq.azuredeploy.parameters.json +++ b/201-encrypt-running-linux-vm-without-aad/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-encrypt-running-linux-vm/azuredeploy.json b/201-encrypt-running-linux-vm/azuredeploy.json index c15d18bcbc7d..d83a06082335 100644 --- a/201-encrypt-running-linux-vm/azuredeploy.json +++ b/201-encrypt-running-linux-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "aadClientID": { diff --git a/201-encrypt-running-linux-vm/azuredeploy.parameters.json b/201-encrypt-running-linux-vm/azuredeploy.parameters.json index 6d2ee286ec7a..9a8b4b358ada 100644 --- a/201-encrypt-running-linux-vm/azuredeploy.parameters.json +++ b/201-encrypt-running-linux-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "aadClientID": { diff --git a/201-encrypt-running-linux-vm/updatevm-kek.json b/201-encrypt-running-linux-vm/updatevm-kek.json index d870e7be7565..fb2365ad84af 100644 --- a/201-encrypt-running-linux-vm/updatevm-kek.json +++ b/201-encrypt-running-linux-vm/updatevm-kek.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-running-linux-vm/updatevm-nokek.json b/201-encrypt-running-linux-vm/updatevm-nokek.json index c3606f71bad0..45421e6d0d9e 100644 --- a/201-encrypt-running-linux-vm/updatevm-nokek.json +++ b/201-encrypt-running-linux-vm/updatevm-nokek.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-running-vmss-linux/azuredeploy.json b/201-encrypt-running-vmss-linux/azuredeploy.json index c633a1ad4a83..a38e7ddbf9fb 100644 --- a/201-encrypt-running-vmss-linux/azuredeploy.json +++ b/201-encrypt-running-vmss-linux/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmssName": { diff --git a/201-encrypt-running-vmss-linux/azuredeploy.parameters.json b/201-encrypt-running-vmss-linux/azuredeploy.parameters.json index ccdee4b09b2b..5db385069049 100644 --- a/201-encrypt-running-vmss-linux/azuredeploy.parameters.json +++ b/201-encrypt-running-vmss-linux/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmssName": { diff --git a/201-encrypt-running-vmss-linux/prereqs/prereq.azuredeploy.json b/201-encrypt-running-vmss-linux/prereqs/prereq.azuredeploy.json index 99a61c4e2d8e..5a99e38c44a9 100644 --- a/201-encrypt-running-vmss-linux/prereqs/prereq.azuredeploy.json +++ b/201-encrypt-running-vmss-linux/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-encrypt-running-vmss-linux/prereqs/prereq.azuredeploy.parameters.json b/201-encrypt-running-vmss-linux/prereqs/prereq.azuredeploy.parameters.json index be34983de9fe..57d1b1890cb6 100644 --- a/201-encrypt-running-vmss-linux/prereqs/prereq.azuredeploy.parameters.json +++ b/201-encrypt-running-vmss-linux/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-encrypt-running-vmss-windows/azuredeploy.json b/201-encrypt-running-vmss-windows/azuredeploy.json index 8e9ef2a9aea3..48e72deaceec 100644 --- a/201-encrypt-running-vmss-windows/azuredeploy.json +++ b/201-encrypt-running-vmss-windows/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmssName": { diff --git a/201-encrypt-running-vmss-windows/azuredeploy.parameters.json b/201-encrypt-running-vmss-windows/azuredeploy.parameters.json index 7a56e0a80fe7..eab967288a56 100644 --- a/201-encrypt-running-vmss-windows/azuredeploy.parameters.json +++ b/201-encrypt-running-vmss-windows/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmssName": { diff --git a/201-encrypt-running-vmss-windows/prereqs/prereq.azuredeploy.json b/201-encrypt-running-vmss-windows/prereqs/prereq.azuredeploy.json index 9734cea5590b..e3b8cf771745 100644 --- a/201-encrypt-running-vmss-windows/prereqs/prereq.azuredeploy.json +++ b/201-encrypt-running-vmss-windows/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-encrypt-running-vmss-windows/prereqs/prereq.azuredeploy.parameters.json b/201-encrypt-running-vmss-windows/prereqs/prereq.azuredeploy.parameters.json index 6a3f874b3f1b..048a036b2956 100644 --- a/201-encrypt-running-vmss-windows/prereqs/prereq.azuredeploy.parameters.json +++ b/201-encrypt-running-vmss-windows/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-encrypt-running-windows-vm-aad-client-cert/azuredeploy.json b/201-encrypt-running-windows-vm-aad-client-cert/azuredeploy.json index 9bb914fb10fe..8bb01dba4f97 100644 --- a/201-encrypt-running-windows-vm-aad-client-cert/azuredeploy.json +++ b/201-encrypt-running-windows-vm-aad-client-cert/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-running-windows-vm-aad-client-cert/azuredeploy.parameters.json b/201-encrypt-running-windows-vm-aad-client-cert/azuredeploy.parameters.json index de212e22290d..d80455aab96d 100644 --- a/201-encrypt-running-windows-vm-aad-client-cert/azuredeploy.parameters.json +++ b/201-encrypt-running-windows-vm-aad-client-cert/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-running-windows-vm-aad-client-cert/updatevm-kek.json b/201-encrypt-running-windows-vm-aad-client-cert/updatevm-kek.json index d870e7be7565..fb2365ad84af 100644 --- a/201-encrypt-running-windows-vm-aad-client-cert/updatevm-kek.json +++ b/201-encrypt-running-windows-vm-aad-client-cert/updatevm-kek.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-running-windows-vm-aad-client-cert/updatevm-nokek.json b/201-encrypt-running-windows-vm-aad-client-cert/updatevm-nokek.json index c3606f71bad0..45421e6d0d9e 100644 --- a/201-encrypt-running-windows-vm-aad-client-cert/updatevm-nokek.json +++ b/201-encrypt-running-windows-vm-aad-client-cert/updatevm-nokek.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-running-windows-vm-without-aad/azuredeploy.json b/201-encrypt-running-windows-vm-without-aad/azuredeploy.json index a533d51cf0fb..ce8ae44e6cfa 100644 --- a/201-encrypt-running-windows-vm-without-aad/azuredeploy.json +++ b/201-encrypt-running-windows-vm-without-aad/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-running-windows-vm-without-aad/azuredeploy.parameters.json b/201-encrypt-running-windows-vm-without-aad/azuredeploy.parameters.json index a0ce7ee611d3..a2634dbe10a9 100644 --- a/201-encrypt-running-windows-vm-without-aad/azuredeploy.parameters.json +++ b/201-encrypt-running-windows-vm-without-aad/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-running-windows-vm-without-aad/prereqs/prereq.azuredeploy.json b/201-encrypt-running-windows-vm-without-aad/prereqs/prereq.azuredeploy.json index a684983f68ca..9ccdea263cfe 100644 --- a/201-encrypt-running-windows-vm-without-aad/prereqs/prereq.azuredeploy.json +++ b/201-encrypt-running-windows-vm-without-aad/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-encrypt-running-windows-vm-without-aad/prereqs/prereq.azuredeploy.parameters.json b/201-encrypt-running-windows-vm-without-aad/prereqs/prereq.azuredeploy.parameters.json index 6a3f874b3f1b..048a036b2956 100644 --- a/201-encrypt-running-windows-vm-without-aad/prereqs/prereq.azuredeploy.parameters.json +++ b/201-encrypt-running-windows-vm-without-aad/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-encrypt-running-windows-vm/azuredeploy.json b/201-encrypt-running-windows-vm/azuredeploy.json index 419c22f280b5..ae4357273334 100644 --- a/201-encrypt-running-windows-vm/azuredeploy.json +++ b/201-encrypt-running-windows-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-running-windows-vm/azuredeploy.parameters.json b/201-encrypt-running-windows-vm/azuredeploy.parameters.json index a8be8c4bf89a..ed2281953906 100644 --- a/201-encrypt-running-windows-vm/azuredeploy.parameters.json +++ b/201-encrypt-running-windows-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-running-windows-vm/updatevm-kek.json b/201-encrypt-running-windows-vm/updatevm-kek.json index d870e7be7565..fb2365ad84af 100644 --- a/201-encrypt-running-windows-vm/updatevm-kek.json +++ b/201-encrypt-running-windows-vm/updatevm-kek.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-running-windows-vm/updatevm-nokek.json b/201-encrypt-running-windows-vm/updatevm-nokek.json index c3606f71bad0..45421e6d0d9e 100644 --- a/201-encrypt-running-windows-vm/updatevm-nokek.json +++ b/201-encrypt-running-windows-vm/updatevm-nokek.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-encrypt-vmss-linux-jumpbox/azuredeploy.json b/201-encrypt-vmss-linux-jumpbox/azuredeploy.json index 3750d2d2812b..23c912a3fa64 100644 --- a/201-encrypt-vmss-linux-jumpbox/azuredeploy.json +++ b/201-encrypt-vmss-linux-jumpbox/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmssName": { diff --git a/201-encrypt-vmss-linux-jumpbox/azuredeploy.parameters.json b/201-encrypt-vmss-linux-jumpbox/azuredeploy.parameters.json index c863b85921f0..8e869be3052e 100644 --- a/201-encrypt-vmss-linux-jumpbox/azuredeploy.parameters.json +++ b/201-encrypt-vmss-linux-jumpbox/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmssName": { diff --git a/201-encrypt-vmss-windows-jumpbox/azuredeploy.json b/201-encrypt-vmss-windows-jumpbox/azuredeploy.json index d688c30c0c76..b13114cb0d34 100644 --- a/201-encrypt-vmss-windows-jumpbox/azuredeploy.json +++ b/201-encrypt-vmss-windows-jumpbox/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmssName": { diff --git a/201-encrypt-vmss-windows-jumpbox/azuredeploy.parameters.json b/201-encrypt-vmss-windows-jumpbox/azuredeploy.parameters.json index 2926df4a5ec6..2ff2d7fb691c 100644 --- a/201-encrypt-vmss-windows-jumpbox/azuredeploy.parameters.json +++ b/201-encrypt-vmss-windows-jumpbox/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmSku": { diff --git a/201-event-hubs-create-event-hub-and-consumer-group/azuredeploy.json b/201-event-hubs-create-event-hub-and-consumer-group/azuredeploy.json index e55cc703373a..8838f0bd3226 100644 --- a/201-event-hubs-create-event-hub-and-consumer-group/azuredeploy.json +++ b/201-event-hubs-create-event-hub-and-consumer-group/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "namespaceName": { diff --git a/201-event-hubs-create-event-hub-and-consumer-group/azuredeploy.parameters.json b/201-event-hubs-create-event-hub-and-consumer-group/azuredeploy.parameters.json index c0897232a09e..d2d39255f5e8 100644 --- a/201-event-hubs-create-event-hub-and-consumer-group/azuredeploy.parameters.json +++ b/201-event-hubs-create-event-hub-and-consumer-group/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "namespaceName": { diff --git a/201-eventhub-create-namespace-geo-recoveryconfiguration/azuredeploy.json b/201-eventhub-create-namespace-geo-recoveryconfiguration/azuredeploy.json index d358a2b4691b..a8a03f1e3eea 100644 --- a/201-eventhub-create-namespace-geo-recoveryconfiguration/azuredeploy.json +++ b/201-eventhub-create-namespace-geo-recoveryconfiguration/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "eventHubNamespaceNamePrimary": { diff --git a/201-eventhub-create-namespace-geo-recoveryconfiguration/azuredeploy.parameters.json b/201-eventhub-create-namespace-geo-recoveryconfiguration/azuredeploy.parameters.json index 82629ba4f5a9..8120cddfe44b 100644 --- a/201-eventhub-create-namespace-geo-recoveryconfiguration/azuredeploy.parameters.json +++ b/201-eventhub-create-namespace-geo-recoveryconfiguration/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "eventHubNamespaceNamePrimary": { diff --git a/201-eventhubs-create-cluster-namespace-eventhub/azuredeploy.json b/201-eventhubs-create-cluster-namespace-eventhub/azuredeploy.json index e153e7ae9213..119da3fcf452 100644 --- a/201-eventhubs-create-cluster-namespace-eventhub/azuredeploy.json +++ b/201-eventhubs-create-cluster-namespace-eventhub/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName":{ diff --git a/201-eventhubs-create-cluster-namespace-eventhub/azuredeploy.parameters.json b/201-eventhubs-create-cluster-namespace-eventhub/azuredeploy.parameters.json index a8077c4094bb..54f39b8ebf6e 100644 --- a/201-eventhubs-create-cluster-namespace-eventhub/azuredeploy.parameters.json +++ b/201-eventhubs-create-cluster-namespace-eventhub/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/201-eventhubs-create-cluster-namespace/azuredeploy.json b/201-eventhubs-create-cluster-namespace/azuredeploy.json index 43824ccb8373..16b63dcdeb5d 100644 --- a/201-eventhubs-create-cluster-namespace/azuredeploy.json +++ b/201-eventhubs-create-cluster-namespace/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName":{ diff --git a/201-eventhubs-create-cluster-namespace/azuredeploy.parameters.json b/201-eventhubs-create-cluster-namespace/azuredeploy.parameters.json index 41b472001dd5..ba6e38660d87 100644 --- a/201-eventhubs-create-cluster-namespace/azuredeploy.parameters.json +++ b/201-eventhubs-create-cluster-namespace/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/201-eventhubs-create-namespace-and-enable-capture-for-adls/azuredeploy.json b/201-eventhubs-create-namespace-and-enable-capture-for-adls/azuredeploy.json index 71b442204047..c4753e1d870d 100644 --- a/201-eventhubs-create-namespace-and-enable-capture-for-adls/azuredeploy.json +++ b/201-eventhubs-create-namespace-and-enable-capture-for-adls/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "eventHubNamespaceName": { diff --git a/201-eventhubs-create-namespace-and-enable-capture-for-adls/azuredeploy.parameters.json b/201-eventhubs-create-namespace-and-enable-capture-for-adls/azuredeploy.parameters.json index e86cb11afb3d..736dc500b06c 100644 --- a/201-eventhubs-create-namespace-and-enable-capture-for-adls/azuredeploy.parameters.json +++ b/201-eventhubs-create-namespace-and-enable-capture-for-adls/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "eventHubNamespaceName": { diff --git a/201-eventhubs-create-namespace-and-enable-capture/azuredeploy.json b/201-eventhubs-create-namespace-and-enable-capture/azuredeploy.json index beb728c96e00..839d16bdb89b 100644 --- a/201-eventhubs-create-namespace-and-enable-capture/azuredeploy.json +++ b/201-eventhubs-create-namespace-and-enable-capture/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingStorageAcctResourceId": { diff --git a/201-eventhubs-create-namespace-and-enable-capture/azuredeploy.parameters.json b/201-eventhubs-create-namespace-and-enable-capture/azuredeploy.parameters.json index 6d2b682cc654..d2cfed0bb522 100644 --- a/201-eventhubs-create-namespace-and-enable-capture/azuredeploy.parameters.json +++ b/201-eventhubs-create-namespace-and-enable-capture/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "eventHubNamespaceName": { diff --git a/201-eventhubs-create-namespace-and-enable-capture/prereqs/prereq.azuredeploy.json b/201-eventhubs-create-namespace-and-enable-capture/prereqs/prereq.azuredeploy.json index fc23ecd257a6..c32578dd42d6 100644 --- a/201-eventhubs-create-namespace-and-enable-capture/prereqs/prereq.azuredeploy.json +++ b/201-eventhubs-create-namespace-and-enable-capture/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountType": { diff --git a/201-eventhubs-create-namespace-and-enable-capture/prereqs/prereq.azuredeploy.parameters.json b/201-eventhubs-create-namespace-and-enable-capture/prereqs/prereq.azuredeploy.parameters.json index 74586147bf07..a7022673a9ba 100644 --- a/201-eventhubs-create-namespace-and-enable-capture/prereqs/prereq.azuredeploy.parameters.json +++ b/201-eventhubs-create-namespace-and-enable-capture/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-eventhubs-create-namespace-and-enable-inflate/azuredeploy.json b/201-eventhubs-create-namespace-and-enable-inflate/azuredeploy.json index b004626f7059..11657040728d 100644 --- a/201-eventhubs-create-namespace-and-enable-inflate/azuredeploy.json +++ b/201-eventhubs-create-namespace-and-enable-inflate/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "namespaceName": { diff --git a/201-eventhubs-create-namespace-and-enable-inflate/azuredeploy.parameters.json b/201-eventhubs-create-namespace-and-enable-inflate/azuredeploy.parameters.json index e36fd2955e68..9baa71f83abc 100644 --- a/201-eventhubs-create-namespace-and-enable-inflate/azuredeploy.parameters.json +++ b/201-eventhubs-create-namespace-and-enable-inflate/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "namespaceName": { diff --git a/201-existing-vnet-to-vnet-peering/azuredeploy.json b/201-existing-vnet-to-vnet-peering/azuredeploy.json index 708be1da171a..ab8395d956b2 100644 --- a/201-existing-vnet-to-vnet-peering/azuredeploy.json +++ b/201-existing-vnet-to-vnet-peering/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingLocalVirtualNetworkName": { diff --git a/201-existing-vnet-to-vnet-peering/azuredeploy.parameters.json b/201-existing-vnet-to-vnet-peering/azuredeploy.parameters.json index 190ddad3be13..acc21b97c461 100644 --- a/201-existing-vnet-to-vnet-peering/azuredeploy.parameters.json +++ b/201-existing-vnet-to-vnet-peering/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingLocalVirtualNetworkName": { diff --git a/201-expressroute-circuit-public-private-peering/azuredeploy.json b/201-expressroute-circuit-public-private-peering/azuredeploy.json index cae43af0000d..2b66aaec5516 100644 --- a/201-expressroute-circuit-public-private-peering/azuredeploy.json +++ b/201-expressroute-circuit-public-private-peering/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "circuitName": { diff --git a/201-expressroute-circuit-public-private-peering/azuredeploy.parameters.json b/201-expressroute-circuit-public-private-peering/azuredeploy.parameters.json index 673ed78e5d1b..4ad16d551ff6 100644 --- a/201-expressroute-circuit-public-private-peering/azuredeploy.parameters.json +++ b/201-expressroute-circuit-public-private-peering/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "circuitName": { diff --git a/201-extend-vnet-to-multi-vnet/azuredeploy.json b/201-extend-vnet-to-multi-vnet/azuredeploy.json index 57f04b89d172..70cb90e245c5 100644 --- a/201-extend-vnet-to-multi-vnet/azuredeploy.json +++ b/201-extend-vnet-to-multi-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVnetName": { diff --git a/201-extend-vnet-to-multi-vnet/azuredeploy.parameters.json b/201-extend-vnet-to-multi-vnet/azuredeploy.parameters.json index 7b3084097439..a295100c0011 100644 --- a/201-extend-vnet-to-multi-vnet/azuredeploy.parameters.json +++ b/201-extend-vnet-to-multi-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVnetName": { diff --git a/201-extend-vnet-to-multi-vnet/prereqs/prereq.azuredeploy.json b/201-extend-vnet-to-multi-vnet/prereqs/prereq.azuredeploy.json index ca799dde8c6c..ac5646a93efd 100644 --- a/201-extend-vnet-to-multi-vnet/prereqs/prereq.azuredeploy.json +++ b/201-extend-vnet-to-multi-vnet/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-extend-vnet-to-multi-vnet/prereqs/prereq.azuredeploy.parameters.json b/201-extend-vnet-to-multi-vnet/prereqs/prereq.azuredeploy.parameters.json index c3f18cd2728e..4be9503d56d6 100644 --- a/201-extend-vnet-to-multi-vnet/prereqs/prereq.azuredeploy.parameters.json +++ b/201-extend-vnet-to-multi-vnet/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-front-door-create-caching/azuredeploy.json b/201-front-door-create-caching/azuredeploy.json index 997f4456a96e..9e0803560404 100644 --- a/201-front-door-create-caching/azuredeploy.json +++ b/201-front-door-create-caching/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dynamicCompression": { diff --git a/201-front-door-create-caching/azuredeploy.parameters.json b/201-front-door-create-caching/azuredeploy.parameters.json index adebe7eb1033..3147a40f0ee8 100644 --- a/201-front-door-create-caching/azuredeploy.parameters.json +++ b/201-front-door-create-caching/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "frontDoorName": { diff --git a/201-front-door-health-probes/azuredeploy.json b/201-front-door-health-probes/azuredeploy.json index 6291b0bd70d3..1165b30813c2 100644 --- a/201-front-door-health-probes/azuredeploy.json +++ b/201-front-door-health-probes/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "frontDoorName": { diff --git a/201-front-door-health-probes/azuredeploy.parameters.json b/201-front-door-health-probes/azuredeploy.parameters.json index ee83dfdf2ada..0df2dc0267fb 100644 --- a/201-front-door-health-probes/azuredeploy.parameters.json +++ b/201-front-door-health-probes/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "frontDoorName": { diff --git a/201-front-door-managed-waf-ruleset/azuredeploy.json b/201-front-door-managed-waf-ruleset/azuredeploy.json index c5391af43234..3feaffd59370 100644 --- a/201-front-door-managed-waf-ruleset/azuredeploy.json +++ b/201-front-door-managed-waf-ruleset/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "wafPolicyName": { diff --git a/201-front-door-managed-waf-ruleset/azuredeploy.parameters.json b/201-front-door-managed-waf-ruleset/azuredeploy.parameters.json index 56f87b4eff33..68dc29fb8e3f 100644 --- a/201-front-door-managed-waf-ruleset/azuredeploy.parameters.json +++ b/201-front-door-managed-waf-ruleset/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "wafPolicyName": { diff --git a/201-front-door-priority-lb/azuredeploy.json b/201-front-door-priority-lb/azuredeploy.json index 9281e296bd52..6884aa944565 100644 --- a/201-front-door-priority-lb/azuredeploy.json +++ b/201-front-door-priority-lb/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "frontDoorName": { diff --git a/201-front-door-priority-lb/azuredeploy.parameters.json b/201-front-door-priority-lb/azuredeploy.parameters.json index f68438c5b9af..9588cc7f9528 100644 --- a/201-front-door-priority-lb/azuredeploy.parameters.json +++ b/201-front-door-priority-lb/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "frontDoorName": { diff --git a/201-front-door-rate-limiting/azuredeploy.json b/201-front-door-rate-limiting/azuredeploy.json index 5b1e24a618ce..24c1961ade4e 100644 --- a/201-front-door-rate-limiting/azuredeploy.json +++ b/201-front-door-rate-limiting/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "wafPolicyName": { diff --git a/201-front-door-rate-limiting/azuredeploy.parameters.json b/201-front-door-rate-limiting/azuredeploy.parameters.json index f0044791a958..12bc9c1a9062 100644 --- a/201-front-door-rate-limiting/azuredeploy.parameters.json +++ b/201-front-door-rate-limiting/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "wafPolicyName": { diff --git a/201-front-door-session-affinity/azuredeploy.json b/201-front-door-session-affinity/azuredeploy.json index f57dda049717..67eceefeff51 100644 --- a/201-front-door-session-affinity/azuredeploy.json +++ b/201-front-door-session-affinity/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "frontDoorName": { diff --git a/201-front-door-session-affinity/azuredeploy.parameters.json b/201-front-door-session-affinity/azuredeploy.parameters.json index 8f73283a78ee..149b7efef492 100644 --- a/201-front-door-session-affinity/azuredeploy.parameters.json +++ b/201-front-door-session-affinity/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "frontDoorName": { diff --git a/201-front-door-waf-clientip/azuredeploy.json b/201-front-door-waf-clientip/azuredeploy.json index 4dc8b62f83d5..76feb7dc799c 100644 --- a/201-front-door-waf-clientip/azuredeploy.json +++ b/201-front-door-waf-clientip/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "wafPolicyName": { diff --git a/201-front-door-waf-clientip/azuredeploy.parameters.json b/201-front-door-waf-clientip/azuredeploy.parameters.json index 186f3f5ace42..beaafb779ad6 100644 --- a/201-front-door-waf-clientip/azuredeploy.parameters.json +++ b/201-front-door-waf-clientip/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "wafPolicyName": { diff --git a/201-front-door-waf-http-params/azuredeploy.json b/201-front-door-waf-http-params/azuredeploy.json index 71a887e1d61a..019992a90fb6 100644 --- a/201-front-door-waf-http-params/azuredeploy.json +++ b/201-front-door-waf-http-params/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "wafPolicyName": { diff --git a/201-front-door-waf-http-params/azuredeploy.parameters.json b/201-front-door-waf-http-params/azuredeploy.parameters.json index f405a27e244c..217463166ca5 100644 --- a/201-front-door-waf-http-params/azuredeploy.parameters.json +++ b/201-front-door-waf-http-params/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "wafPolicyName": { diff --git a/201-function-app-dedicated-github-deploy/azuredeploy.json b/201-function-app-dedicated-github-deploy/azuredeploy.json index c9b3aca49fe8..3c3ed97776a3 100644 --- a/201-function-app-dedicated-github-deploy/azuredeploy.json +++ b/201-function-app-dedicated-github-deploy/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "appName": { diff --git a/201-function-app-dedicated-github-deploy/azuredeploy.parameters.json b/201-function-app-dedicated-github-deploy/azuredeploy.parameters.json index cabeeeb71509..24dce001ce6a 100644 --- a/201-function-app-dedicated-github-deploy/azuredeploy.parameters.json +++ b/201-function-app-dedicated-github-deploy/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } } diff --git a/201-hdinsight-datalake-store-azure-storage/azuredeploy.json b/201-hdinsight-datalake-store-azure-storage/azuredeploy.json index 94851c07b92b..cd06362b87f5 100644 --- a/201-hdinsight-datalake-store-azure-storage/azuredeploy.json +++ b/201-hdinsight-datalake-store-azure-storage/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterType": { diff --git a/201-hdinsight-datalake-store-azure-storage/azuredeploy.parameters.json b/201-hdinsight-datalake-store-azure-storage/azuredeploy.parameters.json index 0e0eb9e9362e..187ad0d49d49 100644 --- a/201-hdinsight-datalake-store-azure-storage/azuredeploy.parameters.json +++ b/201-hdinsight-datalake-store-azure-storage/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/201-insights-alertrules-servicehealth/azuredeploy.json b/201-insights-alertrules-servicehealth/azuredeploy.json index c7baa863e8f1..20cfe88ae2f8 100644 --- a/201-insights-alertrules-servicehealth/azuredeploy.json +++ b/201-insights-alertrules-servicehealth/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "alertName": { diff --git a/201-insights-alertrules-servicehealth/azuredeploy.parameters.json b/201-insights-alertrules-servicehealth/azuredeploy.parameters.json index 3af38168540a..ea8f7964ee31 100644 --- a/201-insights-alertrules-servicehealth/azuredeploy.parameters.json +++ b/201-insights-alertrules-servicehealth/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "alertName": { diff --git a/201-integration-service-environment/azuredeploy.json b/201-integration-service-environment/azuredeploy.json index 1ef4937673c1..0db697b12105 100644 --- a/201-integration-service-environment/azuredeploy.json +++ b/201-integration-service-environment/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "integrationServiceEnvironmentName": { diff --git a/201-integration-service-environment/azuredeploy.parameters.json b/201-integration-service-environment/azuredeploy.parameters.json index bd8e323c1723..27f3ea3be1c2 100644 --- a/201-integration-service-environment/azuredeploy.parameters.json +++ b/201-integration-service-environment/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "integrationServiceEnvironmentName": { diff --git a/201-jenkins-acr/azuredeploy.json b/201-jenkins-acr/azuredeploy.json index a1aa12a422d5..2f7c692b9059 100644 --- a/201-jenkins-acr/azuredeploy.json +++ b/201-jenkins-acr/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-jenkins-acr/azuredeploy.parameters.json b/201-jenkins-acr/azuredeploy.parameters.json index 6fa2d9329cbc..607c9ec4fa54 100644 --- a/201-jenkins-acr/azuredeploy.parameters.json +++ b/201-jenkins-acr/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-key-vault-secret-create/azuredeploy.json b/201-key-vault-secret-create/azuredeploy.json index bf9bdf195bde..1dca880b5221 100644 --- a/201-key-vault-secret-create/azuredeploy.json +++ b/201-key-vault-secret-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "keyVaultName": { diff --git a/201-key-vault-secret-create/azuredeploy.parameters.json b/201-key-vault-secret-create/azuredeploy.parameters.json index ab732544af70..76c2e1b872c5 100644 --- a/201-key-vault-secret-create/azuredeploy.parameters.json +++ b/201-key-vault-secret-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "keyVaultName": { diff --git a/201-key-vault-use-dynamic-id/azuredeploy.json b/201-key-vault-use-dynamic-id/azuredeploy.json index 976311d489f7..ac51a3807454 100644 --- a/201-key-vault-use-dynamic-id/azuredeploy.json +++ b/201-key-vault-use-dynamic-id/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-key-vault-use-dynamic-id/azuredeploy.parameters.json b/201-key-vault-use-dynamic-id/azuredeploy.parameters.json index 122f84c3b3c5..4f2bcdc0bd63 100644 --- a/201-key-vault-use-dynamic-id/azuredeploy.parameters.json +++ b/201-key-vault-use-dynamic-id/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vaultName": { diff --git a/201-key-vault-use-dynamic-id/nested/sqlserver.json b/201-key-vault-use-dynamic-id/nested/sqlserver.json index f9eb4a20ebac..b3c9212822f6 100644 --- a/201-key-vault-use-dynamic-id/nested/sqlserver.json +++ b/201-key-vault-use-dynamic-id/nested/sqlserver.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminLogin": { diff --git a/201-key-vault-with-logging-create/azuredeploy.json b/201-key-vault-with-logging-create/azuredeploy.json index d51f7f3155d2..6b35f707dc90 100644 --- a/201-key-vault-with-logging-create/azuredeploy.json +++ b/201-key-vault-with-logging-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "keyVaultName": { diff --git a/201-key-vault-with-logging-create/azuredeploy.parameters.json b/201-key-vault-with-logging-create/azuredeploy.parameters.json index 3e84c9546025..f1e4b352740e 100644 --- a/201-key-vault-with-logging-create/azuredeploy.parameters.json +++ b/201-key-vault-with-logging-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "keyVaultName": { diff --git a/201-key-vault-with-logging-create/nestedtemplates/protectwithlocksdisabled.json b/201-key-vault-with-logging-create/nestedtemplates/protectwithlocksdisabled.json index c9d743e54025..dddb417bf789 100644 --- a/201-key-vault-with-logging-create/nestedtemplates/protectwithlocksdisabled.json +++ b/201-key-vault-with-logging-create/nestedtemplates/protectwithlocksdisabled.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "keyVaultName": { diff --git a/201-key-vault-with-logging-create/nestedtemplates/protectwithlocksenabled.json b/201-key-vault-with-logging-create/nestedtemplates/protectwithlocksenabled.json index dc9b432e9d5b..63e0e3bd4eb0 100644 --- a/201-key-vault-with-logging-create/nestedtemplates/protectwithlocksenabled.json +++ b/201-key-vault-with-logging-create/nestedtemplates/protectwithlocksenabled.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "keyVaultName": { diff --git a/201-list-storage-keys-windows-vm/azuredeploy.json b/201-list-storage-keys-windows-vm/azuredeploy.json index 85c8a02118f0..8e5f25c0eab1 100644 --- a/201-list-storage-keys-windows-vm/azuredeploy.json +++ b/201-list-storage-keys-windows-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/201-list-storage-keys-windows-vm/azuredeploy.parameters.json b/201-list-storage-keys-windows-vm/azuredeploy.parameters.json index 90c10dd9c8da..cbe68e03a2df 100644 --- a/201-list-storage-keys-windows-vm/azuredeploy.parameters.json +++ b/201-list-storage-keys-windows-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/201-load-balancer-ipv6-create/azuredeploy.json b/201-load-balancer-ipv6-create/azuredeploy.json index 0202f3b7343a..24f2bd05caef 100644 --- a/201-load-balancer-ipv6-create/azuredeploy.json +++ b/201-load-balancer-ipv6-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-load-balancer-ipv6-create/azuredeploy.parameters.json b/201-load-balancer-ipv6-create/azuredeploy.parameters.json index ef41c2797dc1..4cebf39a909c 100644 --- a/201-load-balancer-ipv6-create/azuredeploy.parameters.json +++ b/201-load-balancer-ipv6-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-logic-app-as2-send-receive/AS2.deployproj b/201-logic-app-as2-send-receive/AS2.deployproj index 80821f823182..0874b841917c 100644 --- a/201-logic-app-as2-send-receive/AS2.deployproj +++ b/201-logic-app-as2-send-receive/AS2.deployproj @@ -1,5 +1,5 @@  - + Debug diff --git a/201-logic-app-as2-send-receive/azuredeploy.json b/201-logic-app-as2-send-receive/azuredeploy.json index 5fe6bd4a2134..a7a5bd32407d 100644 --- a/201-logic-app-as2-send-receive/azuredeploy.json +++ b/201-logic-app-as2-send-receive/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "contosoIntegrationAccountName": { diff --git a/201-logic-app-as2-send-receive/azuredeploy.parameters.json b/201-logic-app-as2-send-receive/azuredeploy.parameters.json index 0c3975662be1..fb2d7f1a9715 100644 --- a/201-logic-app-as2-send-receive/azuredeploy.parameters.json +++ b/201-logic-app-as2-send-receive/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-logic-app-b2b-disaster-recovery-replication/azuredeploy.json b/201-logic-app-b2b-disaster-recovery-replication/azuredeploy.json index 2b0fd7925d71..36bc1213bfa5 100644 --- a/201-logic-app-b2b-disaster-recovery-replication/azuredeploy.json +++ b/201-logic-app-b2b-disaster-recovery-replication/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "AS2_DR_LogicApp_Name": { diff --git a/201-logic-app-b2b-disaster-recovery-replication/azuredeploy.parameters.json b/201-logic-app-b2b-disaster-recovery-replication/azuredeploy.parameters.json index 3be7a315a119..5ad43e6ae62d 100644 --- a/201-logic-app-b2b-disaster-recovery-replication/azuredeploy.parameters.json +++ b/201-logic-app-b2b-disaster-recovery-replication/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "AS2_DR_LogicApp_Name": { diff --git a/201-logic-app-b2b-disaster-recovery-replication/b2bdr.deployproj b/201-logic-app-b2b-disaster-recovery-replication/b2bdr.deployproj index 371ca348e480..7070e863a190 100644 --- a/201-logic-app-b2b-disaster-recovery-replication/b2bdr.deployproj +++ b/201-logic-app-b2b-disaster-recovery-replication/b2bdr.deployproj @@ -1,5 +1,5 @@  - + Debug diff --git a/201-logic-app-correlation-using-servicebus/azuredeploy.json b/201-logic-app-correlation-using-servicebus/azuredeploy.json index 5223018ba19c..f8a094e161fa 100644 --- a/201-logic-app-correlation-using-servicebus/azuredeploy.json +++ b/201-logic-app-correlation-using-servicebus/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespace": { diff --git a/201-logic-app-correlation-using-servicebus/azuredeploy.parameters.json b/201-logic-app-correlation-using-servicebus/azuredeploy.parameters.json index 047a13e59aa9..f2331ff3f3e9 100644 --- a/201-logic-app-correlation-using-servicebus/azuredeploy.parameters.json +++ b/201-logic-app-correlation-using-servicebus/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespace": { diff --git a/201-logic-app-custom-api/azuredeploy.json b/201-logic-app-custom-api/azuredeploy.json index d62477c4d0be..215f15efcadc 100644 --- a/201-logic-app-custom-api/azuredeploy.json +++ b/201-logic-app-custom-api/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "tenantId": { @@ -125,7 +125,7 @@ ], "properties": { "definition": { - "$schema": "http://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", + "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", "contentVersion": "1.0.0.0", "parameters": { "clientSecret": { diff --git a/201-logic-app-custom-api/azuredeploy.parameters.json b/201-logic-app-custom-api/azuredeploy.parameters.json index 2861f509bc6d..a5b1c2059a12 100644 --- a/201-logic-app-custom-api/azuredeploy.parameters.json +++ b/201-logic-app-custom-api/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "tenantId": { diff --git a/201-logic-app-transform-function/azuredeploy.json b/201-logic-app-transform-function/azuredeploy.json index fc46cdfe95ff..60035282f83d 100644 --- a/201-logic-app-transform-function/azuredeploy.json +++ b/201-logic-app-transform-function/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingFunctionAppName": { diff --git a/201-logic-app-transform-function/azuredeploy.parameters.json b/201-logic-app-transform-function/azuredeploy.parameters.json index 8e147152675c..64915bae4764 100644 --- a/201-logic-app-transform-function/azuredeploy.parameters.json +++ b/201-logic-app-transform-function/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingFunctionAppName": { diff --git a/201-logic-app-transform-function/prereqs/prereq.azuredeploy.json b/201-logic-app-transform-function/prereqs/prereq.azuredeploy.json index 9e0b5de1edee..a44b80d11b7d 100644 --- a/201-logic-app-transform-function/prereqs/prereq.azuredeploy.json +++ b/201-logic-app-transform-function/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-logic-app-transform-function/prereqs/prereq.azuredeploy.parameters.json b/201-logic-app-transform-function/prereqs/prereq.azuredeploy.parameters.json index e33c9838ab99..6b61823aedb9 100644 --- a/201-logic-app-transform-function/prereqs/prereq.azuredeploy.parameters.json +++ b/201-logic-app-transform-function/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-logic-app-veter-pipeline/artifacts/order.xsd b/201-logic-app-veter-pipeline/artifacts/order.xsd index 561210430639..331615e6af88 100644 --- a/201-logic-app-veter-pipeline/artifacts/order.xsd +++ b/201-logic-app-veter-pipeline/artifacts/order.xsd @@ -1,5 +1,5 @@  - + diff --git a/201-logic-app-veter-pipeline/artifacts/saporder.xsd b/201-logic-app-veter-pipeline/artifacts/saporder.xsd index f25bf1b57532..d480bb43aa9a 100644 --- a/201-logic-app-veter-pipeline/artifacts/saporder.xsd +++ b/201-logic-app-veter-pipeline/artifacts/saporder.xsd @@ -1,5 +1,5 @@  - + diff --git a/201-logic-app-veter-pipeline/artifacts/xsltmap.xslt b/201-logic-app-veter-pipeline/artifacts/xsltmap.xslt index 154d23253177..47f90a4a3dda 100644 --- a/201-logic-app-veter-pipeline/artifacts/xsltmap.xslt +++ b/201-logic-app-veter-pipeline/artifacts/xsltmap.xslt @@ -1,5 +1,5 @@  - + diff --git a/201-logic-app-veter-pipeline/azuredeploy.json b/201-logic-app-veter-pipeline/azuredeploy.json index 7d015f06aded..5ae2ecf4b301 100644 --- a/201-logic-app-veter-pipeline/azuredeploy.json +++ b/201-logic-app-veter-pipeline/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "integrationAccountName": { @@ -61,7 +61,7 @@ { "properties": { "schemaType": "xml", - "content": "", + "content": "", "contentType": "application/xml" }, "name": "[concat(parameters('integrationAccountName'), '/', 'Order')]", @@ -74,7 +74,7 @@ { "properties": { "mapType": "xslt", - "content": "1
", + "content": "1
", "contentType": "application/xml" }, "name": "[concat(parameters('integrationAccountName'), '/SAPOrderMap')]", diff --git a/201-logic-app-veter-pipeline/azuredeploy.parameters.json b/201-logic-app-veter-pipeline/azuredeploy.parameters.json index 9c313f06f698..255f44a8196e 100644 --- a/201-logic-app-veter-pipeline/azuredeploy.parameters.json +++ b/201-logic-app-veter-pipeline/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-logic-app-xslt-with-params/artifacts/map-with-params.xsl b/201-logic-app-xslt-with-params/artifacts/map-with-params.xsl index 7173d089ecdc..6aa3904b2558 100644 Binary files a/201-logic-app-xslt-with-params/artifacts/map-with-params.xsl and b/201-logic-app-xslt-with-params/artifacts/map-with-params.xsl differ diff --git a/201-logic-app-xslt-with-params/azuredeploy.json b/201-logic-app-xslt-with-params/azuredeploy.json index d8d461891575..a14c9ab83b85 100644 --- a/201-logic-app-xslt-with-params/azuredeploy.json +++ b/201-logic-app-xslt-with-params/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "integrationAccountName": { @@ -61,7 +61,7 @@ { "properties": { "mapType": "xslt", - "content": " ", + "content": " ", "contentType": "application/xml" }, "name": "[concat(parameters('integrationAccountName'), '/map-with-params')]", diff --git a/201-logic-app-xslt-with-params/azuredeploy.parameters.json b/201-logic-app-xslt-with-params/azuredeploy.parameters.json index 9c313f06f698..255f44a8196e 100644 --- a/201-logic-app-xslt-with-params/azuredeploy.parameters.json +++ b/201-logic-app-xslt-with-params/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-machine-learning-private-ip/azuredeploy.json b/201-machine-learning-private-ip/azuredeploy.json index c138a8612a12..ca4e06d50f6e 100644 --- a/201-machine-learning-private-ip/azuredeploy.json +++ b/201-machine-learning-private-ip/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/201-machine-learning-private-ip/azuredeploy.parameters.json b/201-machine-learning-private-ip/azuredeploy.parameters.json index 80bd61454db8..3c8bb39430e4 100644 --- a/201-machine-learning-private-ip/azuredeploy.parameters.json +++ b/201-machine-learning-private-ip/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-multi-vm-lb-zones/azuredeploy.json b/201-multi-vm-lb-zones/azuredeploy.json index aa46fe214d98..d3d2727d6c27 100644 --- a/201-multi-vm-lb-zones/azuredeploy.json +++ b/201-multi-vm-lb-zones/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-multi-vm-lb-zones/azuredeploy.parameters.json b/201-multi-vm-lb-zones/azuredeploy.parameters.json index 898d15de891b..5f90e49241d1 100644 --- a/201-multi-vm-lb-zones/azuredeploy.parameters.json +++ b/201-multi-vm-lb-zones/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-nsg-add-to-existing-subnet/azuredeploy.json b/201-nsg-add-to-existing-subnet/azuredeploy.json index ca8090cde172..14789e925857 100644 --- a/201-nsg-add-to-existing-subnet/azuredeploy.json +++ b/201-nsg-add-to-existing-subnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.1", "parameters": { "virtualNetworkResourceGroupName": { diff --git a/201-nsg-add-to-existing-subnet/azuredeploy.parameters.json b/201-nsg-add-to-existing-subnet/azuredeploy.parameters.json index f948f1a07a25..af7b42ee64fa 100644 --- a/201-nsg-add-to-existing-subnet/azuredeploy.parameters.json +++ b/201-nsg-add-to-existing-subnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkResourceGroupName": { diff --git a/201-nsg-add-to-existing-subnet/nested/updateSubnet.json b/201-nsg-add-to-existing-subnet/nested/updateSubnet.json index 2a8df849f681..0e5958ce5206 100644 --- a/201-nsg-add-to-existing-subnet/nested/updateSubnet.json +++ b/201-nsg-add-to-existing-subnet/nested/updateSubnet.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/201-nsg-add-to-existing-subnet/prereqs/prereq.azuredeploy.json b/201-nsg-add-to-existing-subnet/prereqs/prereq.azuredeploy.json index 055e734b7e60..24a195d35eff 100644 --- a/201-nsg-add-to-existing-subnet/prereqs/prereq.azuredeploy.json +++ b/201-nsg-add-to-existing-subnet/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vNetName": { diff --git a/201-nsg-add-to-existing-subnet/prereqs/prereq.azuredeploy.parameters.json b/201-nsg-add-to-existing-subnet/prereqs/prereq.azuredeploy.parameters.json index ce32c5900c78..313826af60ba 100644 --- a/201-nsg-add-to-existing-subnet/prereqs/prereq.azuredeploy.parameters.json +++ b/201-nsg-add-to-existing-subnet/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vNetName": { diff --git a/201-nsg-dmz-in-vnet/azuredeploy.json b/201-nsg-dmz-in-vnet/azuredeploy.json index 2e96bae07c35..786180c109a5 100644 --- a/201-nsg-dmz-in-vnet/azuredeploy.json +++ b/201-nsg-dmz-in-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/201-nsg-dmz-in-vnet/azuredeploy.parameters.json b/201-nsg-dmz-in-vnet/azuredeploy.parameters.json index da0483463281..9f66b80dc6c9 100644 --- a/201-nsg-dmz-in-vnet/azuredeploy.parameters.json +++ b/201-nsg-dmz-in-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/201-oms-extension-ubuntu-vm/azuredeploy.json b/201-oms-extension-ubuntu-vm/azuredeploy.json index 9c318f63bdb1..be4ec5a58add 100644 --- a/201-oms-extension-ubuntu-vm/azuredeploy.json +++ b/201-oms-extension-ubuntu-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceId": { diff --git a/201-oms-extension-ubuntu-vm/azuredeploy.parameters.json b/201-oms-extension-ubuntu-vm/azuredeploy.parameters.json index 3120cea40430..e23a0b329746 100644 --- a/201-oms-extension-ubuntu-vm/azuredeploy.parameters.json +++ b/201-oms-extension-ubuntu-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-oms-extension-windows-vm/azuredeploy.json b/201-oms-extension-windows-vm/azuredeploy.json index 5250b37f5fb4..6366e933c4c6 100644 --- a/201-oms-extension-windows-vm/azuredeploy.json +++ b/201-oms-extension-windows-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-oms-extension-windows-vm/azuredeploy.parameters.json b/201-oms-extension-windows-vm/azuredeploy.parameters.json index ee0beb60041f..57bb9ce11512 100644 --- a/201-oms-extension-windows-vm/azuredeploy.parameters.json +++ b/201-oms-extension-windows-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-oms-extension-windows-vm/prereqs/prereq.azuredeploy.json b/201-oms-extension-windows-vm/prereqs/prereq.azuredeploy.json index 4ca89f922eeb..e9b55a56ac5e 100644 --- a/201-oms-extension-windows-vm/prereqs/prereq.azuredeploy.json +++ b/201-oms-extension-windows-vm/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspacename": { diff --git a/201-oms-extension-windows-vm/prereqs/prereq.azuredeploy.parameters.json b/201-oms-extension-windows-vm/prereqs/prereq.azuredeploy.parameters.json index af8a4b9c7da6..1d08dff98896 100644 --- a/201-oms-extension-windows-vm/prereqs/prereq.azuredeploy.parameters.json +++ b/201-oms-extension-windows-vm/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspacename": { diff --git a/201-ospatching-extension-on-ubuntu/azuredeploy.json b/201-ospatching-extension-on-ubuntu/azuredeploy.json index b7e0c4d9ac72..e9652e95779f 100644 --- a/201-ospatching-extension-on-ubuntu/azuredeploy.json +++ b/201-ospatching-extension-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmSize": { diff --git a/201-ospatching-extension-on-ubuntu/azuredeploy.parameters.json b/201-ospatching-extension-on-ubuntu/azuredeploy.parameters.json index 399f3d4f464c..87cf2cc4023f 100644 --- a/201-ospatching-extension-on-ubuntu/azuredeploy.parameters.json +++ b/201-ospatching-extension-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmSize": { diff --git a/201-ospatching-extension-on-ubuntu/prereqs/prereq.azuredeploy.json b/201-ospatching-extension-on-ubuntu/prereqs/prereq.azuredeploy.json index aa381417dd34..e2d3ca36c31f 100644 --- a/201-ospatching-extension-on-ubuntu/prereqs/prereq.azuredeploy.json +++ b/201-ospatching-extension-on-ubuntu/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-ospatching-extension-on-ubuntu/prereqs/prereq.azuredeploy.parameters.json b/201-ospatching-extension-on-ubuntu/prereqs/prereq.azuredeploy.parameters.json index e33c9838ab99..6b61823aedb9 100644 --- a/201-ospatching-extension-on-ubuntu/prereqs/prereq.azuredeploy.parameters.json +++ b/201-ospatching-extension-on-ubuntu/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-premium-storage-windows-vm/azuredeploy.json b/201-premium-storage-windows-vm/azuredeploy.json index ff1da59fb66e..325283ddaa62 100644 --- a/201-premium-storage-windows-vm/azuredeploy.json +++ b/201-premium-storage-windows-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/201-premium-storage-windows-vm/azuredeploy.parameters.json b/201-premium-storage-windows-vm/azuredeploy.parameters.json index f9b4f736e7f2..072cbdd6762c 100644 --- a/201-premium-storage-windows-vm/azuredeploy.parameters.json +++ b/201-premium-storage-windows-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/201-rbac-builtinrole-multipleVMs/azuredeploy.json b/201-rbac-builtinrole-multipleVMs/azuredeploy.json index 5ec457a537be..2ce2c5b9b0ea 100644 --- a/201-rbac-builtinrole-multipleVMs/azuredeploy.json +++ b/201-rbac-builtinrole-multipleVMs/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "subscriptionId": { diff --git a/201-rbac-builtinrole-multipleVMs/azuredeploy.parameters.json b/201-rbac-builtinrole-multipleVMs/azuredeploy.parameters.json index 5bcaa34438fe..f4003f35497e 100644 --- a/201-rbac-builtinrole-multipleVMs/azuredeploy.parameters.json +++ b/201-rbac-builtinrole-multipleVMs/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "resourceGroup": { diff --git a/201-rbac-managedidentity-maps/azuredeploy.json b/201-rbac-managedidentity-maps/azuredeploy.json index 2b129c8610d5..a277950c706f 100644 --- a/201-rbac-managedidentity-maps/azuredeploy.json +++ b/201-rbac-managedidentity-maps/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-rbac-managedidentity-maps/azuredeploy.parameters.json b/201-rbac-managedidentity-maps/azuredeploy.parameters.json index b9e4328771e7..0801cc65f345 100644 --- a/201-rbac-managedidentity-maps/azuredeploy.parameters.json +++ b/201-rbac-managedidentity-maps/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "mapsAccountName": { diff --git a/201-recovery-services-backup-classic-resource-manager-vms/azuredeploy.json b/201-recovery-services-backup-classic-resource-manager-vms/azuredeploy.json index c088bd2d6319..e7f925c72200 100644 --- a/201-recovery-services-backup-classic-resource-manager-vms/azuredeploy.json +++ b/201-recovery-services-backup-classic-resource-manager-vms/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingRecoveryServicesVaultName": { diff --git a/201-recovery-services-backup-classic-resource-manager-vms/azuredeploy.parameters.json b/201-recovery-services-backup-classic-resource-manager-vms/azuredeploy.parameters.json index 9fa76f2307a1..a45718a845d6 100644 --- a/201-recovery-services-backup-classic-resource-manager-vms/azuredeploy.parameters.json +++ b/201-recovery-services-backup-classic-resource-manager-vms/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingRecoveryServicesVaultName": { diff --git a/201-redis-premium-cluster-diagnostics/azuredeploy.json b/201-redis-premium-cluster-diagnostics/azuredeploy.json index e1553b51f92c..50e7df9125ed 100644 --- a/201-redis-premium-cluster-diagnostics/azuredeploy.json +++ b/201-redis-premium-cluster-diagnostics/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "redisCacheName": { diff --git a/201-redis-premium-cluster-diagnostics/azuredeploy.parameters.json b/201-redis-premium-cluster-diagnostics/azuredeploy.parameters.json index 27c8bdca6f54..7c98f2a266c1 100644 --- a/201-redis-premium-cluster-diagnostics/azuredeploy.parameters.json +++ b/201-redis-premium-cluster-diagnostics/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "redisCacheName": { diff --git a/201-redis-premium-cluster-diagnostics/prereqs/prereq.azuredeploy.json b/201-redis-premium-cluster-diagnostics/prereqs/prereq.azuredeploy.json index a462f9fce101..dc5040bc546d 100644 --- a/201-redis-premium-cluster-diagnostics/prereqs/prereq.azuredeploy.json +++ b/201-redis-premium-cluster-diagnostics/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-redis-premium-cluster-diagnostics/prereqs/prereq.azuredeploy.parameters.json b/201-redis-premium-cluster-diagnostics/prereqs/prereq.azuredeploy.parameters.json index abc1324aa7e7..4c451f19bb2f 100644 --- a/201-redis-premium-cluster-diagnostics/prereqs/prereq.azuredeploy.parameters.json +++ b/201-redis-premium-cluster-diagnostics/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-redis-premium-persistence/azuredeploy.json b/201-redis-premium-persistence/azuredeploy.json index c89e327572ef..8befb661d380 100644 --- a/201-redis-premium-persistence/azuredeploy.json +++ b/201-redis-premium-persistence/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "redisCacheName": { diff --git a/201-redis-premium-persistence/azuredeploy.parameters.json b/201-redis-premium-persistence/azuredeploy.parameters.json index 42b02ea6db81..6f0fe9911bbd 100644 --- a/201-redis-premium-persistence/azuredeploy.parameters.json +++ b/201-redis-premium-persistence/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "redisCacheName": { diff --git a/201-redis-premium-persistence/prereqs/prereq.azuredeploy.json b/201-redis-premium-persistence/prereqs/prereq.azuredeploy.json index fc0d56a743d3..aa1bd486b9b4 100644 --- a/201-redis-premium-persistence/prereqs/prereq.azuredeploy.json +++ b/201-redis-premium-persistence/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-redis-premium-persistence/prereqs/prereq.azuredeploy.parameters.json b/201-redis-premium-persistence/prereqs/prereq.azuredeploy.parameters.json index 07a130ecc744..df2cd6e278a2 100644 --- a/201-redis-premium-persistence/prereqs/prereq.azuredeploy.parameters.json +++ b/201-redis-premium-persistence/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": {} } diff --git a/201-redis-premium-vnet/azuredeploy.json b/201-redis-premium-vnet/azuredeploy.json index a1486b46c4cc..0d870d049a0b 100644 --- a/201-redis-premium-vnet/azuredeploy.json +++ b/201-redis-premium-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "2.0.0.0", "parameters": { "location": { diff --git a/201-redis-premium-vnet/azuredeploy.parameters.json b/201-redis-premium-vnet/azuredeploy.parameters.json index 6bb4903ec211..278ec4bf99e8 100644 --- a/201-redis-premium-vnet/azuredeploy.parameters.json +++ b/201-redis-premium-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "2.0.0.0", "parameters": { "redisCacheName": { diff --git a/201-redis-vnet-geo-replication/azuredeploy.json b/201-redis-vnet-geo-replication/azuredeploy.json index cb045120d955..35092f312657 100644 --- a/201-redis-vnet-geo-replication/azuredeploy.json +++ b/201-redis-vnet-geo-replication/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-redis-vnet-geo-replication/azuredeploy.parameters.json b/201-redis-vnet-geo-replication/azuredeploy.parameters.json index bbdc1ea95045..d90f7eed881d 100644 --- a/201-redis-vnet-geo-replication/azuredeploy.parameters.json +++ b/201-redis-vnet-geo-replication/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-redis-vnet-geo-replication/prereqs/prereq.azuredeploy.json b/201-redis-vnet-geo-replication/prereqs/prereq.azuredeploy.json index b0137d26a621..3431cc877688 100644 --- a/201-redis-vnet-geo-replication/prereqs/prereq.azuredeploy.json +++ b/201-redis-vnet-geo-replication/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-redis-vnet-geo-replication/prereqs/prereq.azuredeploy.parameters.json b/201-redis-vnet-geo-replication/prereqs/prereq.azuredeploy.parameters.json index 7ae104440e52..d621d0c9256f 100644 --- a/201-redis-vnet-geo-replication/prereqs/prereq.azuredeploy.parameters.json +++ b/201-redis-vnet-geo-replication/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "primaryVirtualNetworkName": { diff --git a/201-redis-vnet-nsg/azuredeploy.json b/201-redis-vnet-nsg/azuredeploy.json index e66d7c6fd464..8ad72a1f4a32 100644 --- a/201-redis-vnet-nsg/azuredeploy.json +++ b/201-redis-vnet-nsg/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { @@ -217,7 +217,7 @@ "properties": { "mode": "Incremental", "template": { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "resources": [ { diff --git a/201-redis-vnet-nsg/azuredeploy.parameters.json b/201-redis-vnet-nsg/azuredeploy.parameters.json index 02f5bcd45c6e..ee75c48956a5 100644 --- a/201-redis-vnet-nsg/azuredeploy.parameters.json +++ b/201-redis-vnet-nsg/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-redis-vnet-nsg/prereqs/prereq.azuredeploy.json b/201-redis-vnet-nsg/prereqs/prereq.azuredeploy.json index ee789cfc9aad..06b4d9d89751 100644 --- a/201-redis-vnet-nsg/prereqs/prereq.azuredeploy.json +++ b/201-redis-vnet-nsg/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-redis-vnet-nsg/prereqs/prereq.azuredeploy.parameters.json b/201-redis-vnet-nsg/prereqs/prereq.azuredeploy.parameters.json index 59399b0b30e8..bf531151becb 100644 --- a/201-redis-vnet-nsg/prereqs/prereq.azuredeploy.parameters.json +++ b/201-redis-vnet-nsg/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/201-reserved-ip/azuredeploy.json b/201-reserved-ip/azuredeploy.json index 8f727d8adb2a..5f55389ed0ed 100644 --- a/201-reserved-ip/azuredeploy.json +++ b/201-reserved-ip/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingRIPSubId": { diff --git a/201-reserved-ip/azuredeploy.parameters.json b/201-reserved-ip/azuredeploy.parameters.json index c02cd30e41d3..c95f8975ea04 100644 --- a/201-reserved-ip/azuredeploy.parameters.json +++ b/201-reserved-ip/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingRIPSubId": { diff --git a/201-reserved-ip/prereqs/prereq.azuredeploy.json b/201-reserved-ip/prereqs/prereq.azuredeploy.json index 75cda64b0ea1..1aba3c5bdd1b 100644 --- a/201-reserved-ip/prereqs/prereq.azuredeploy.json +++ b/201-reserved-ip/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-reserved-ip/prereqs/prereq.azuredeploy.parameters.json b/201-reserved-ip/prereqs/prereq.azuredeploy.parameters.json index e33c9838ab99..6b61823aedb9 100644 --- a/201-reserved-ip/prereqs/prereq.azuredeploy.parameters.json +++ b/201-reserved-ip/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-scheduler-webapp/azuredeploy.json b/201-scheduler-webapp/azuredeploy.json index 3d56d5a30e9c..4c9cf0eca4d1 100644 --- a/201-scheduler-webapp/azuredeploy.json +++ b/201-scheduler-webapp/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "appSvcPlanName": { diff --git a/201-scheduler-webapp/azuredeploy.parameters.json b/201-scheduler-webapp/azuredeploy.parameters.json index 9492ff5cef02..742e4e9fd2bf 100644 --- a/201-scheduler-webapp/azuredeploy.parameters.json +++ b/201-scheduler-webapp/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "appSvcPlanName": { diff --git a/201-servicebus-create-queue/azuredeploy.json b/201-servicebus-create-queue/azuredeploy.json index 711f52e5c2e3..41d3343e110d 100644 --- a/201-servicebus-create-queue/azuredeploy.json +++ b/201-servicebus-create-queue/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/201-servicebus-create-queue/azuredeploy.parameters.json b/201-servicebus-create-queue/azuredeploy.parameters.json index 574e94af79d9..54afe8518d98 100644 --- a/201-servicebus-create-queue/azuredeploy.parameters.json +++ b/201-servicebus-create-queue/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/201-servicebus-create-topic-and-subscription/azuredeploy.json b/201-servicebus-create-topic-and-subscription/azuredeploy.json index da0d5891d708..aebb2e692cca 100644 --- a/201-servicebus-create-topic-and-subscription/azuredeploy.json +++ b/201-servicebus-create-topic-and-subscription/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "service_BusNamespace_Name": { diff --git a/201-servicebus-create-topic-and-subscription/azuredeploy.parameters.json b/201-servicebus-create-topic-and-subscription/azuredeploy.parameters.json index 68ae0081946a..db8312c0e413 100644 --- a/201-servicebus-create-topic-and-subscription/azuredeploy.parameters.json +++ b/201-servicebus-create-topic-and-subscription/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "service_BusNamespace_Name": { diff --git a/201-servicebus-create-topic-subscription-rule/azuredeploy.json b/201-servicebus-create-topic-subscription-rule/azuredeploy.json index 61916447d93b..12550cb3492d 100644 --- a/201-servicebus-create-topic-subscription-rule/azuredeploy.json +++ b/201-servicebus-create-topic-subscription-rule/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/201-servicebus-create-topic-subscription-rule/azuredeploy.parameters.json b/201-servicebus-create-topic-subscription-rule/azuredeploy.parameters.json index 55406c28b844..8a8a18cefc13 100644 --- a/201-servicebus-create-topic-subscription-rule/azuredeploy.parameters.json +++ b/201-servicebus-create-topic-subscription-rule/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serviceBusNamespaceName": { diff --git a/201-site-to-site-vpn/azuredeploy.json b/201-site-to-site-vpn/azuredeploy.json index 7b9b5c6a8e3f..c8a6f5ebe261 100644 --- a/201-site-to-site-vpn/azuredeploy.json +++ b/201-site-to-site-vpn/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vpnType": { diff --git a/201-site-to-site-vpn/azuredeploy.parameters.json b/201-site-to-site-vpn/azuredeploy.parameters.json index 24d6bc6a4eb4..14acbf6e9228 100644 --- a/201-site-to-site-vpn/azuredeploy.parameters.json +++ b/201-site-to-site-vpn/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-spinnaker-acr-k8s/azuredeploy.json b/201-spinnaker-acr-k8s/azuredeploy.json index 16717539a9a8..53f80afdf4fe 100644 --- a/201-spinnaker-acr-k8s/azuredeploy.json +++ b/201-spinnaker-acr-k8s/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-spinnaker-acr-k8s/azuredeploy.parameters.json b/201-spinnaker-acr-k8s/azuredeploy.parameters.json index 26e7efca226a..90707f48b13f 100644 --- a/201-spinnaker-acr-k8s/azuredeploy.parameters.json +++ b/201-spinnaker-acr-k8s/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-sql-auditing-server-policy-to-blob-storage/azuredeploy.json b/201-sql-auditing-server-policy-to-blob-storage/azuredeploy.json index 6a75dec8a0fd..5203532449aa 100644 --- a/201-sql-auditing-server-policy-to-blob-storage/azuredeploy.json +++ b/201-sql-auditing-server-policy-to-blob-storage/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerName": { diff --git a/201-sql-auditing-server-policy-to-blob-storage/azuredeploy.parameters.json b/201-sql-auditing-server-policy-to-blob-storage/azuredeploy.parameters.json index a037a6760d25..17f85c30d661 100644 --- a/201-sql-auditing-server-policy-to-blob-storage/azuredeploy.parameters.json +++ b/201-sql-auditing-server-policy-to-blob-storage/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlAdministratorLogin": { diff --git a/201-sql-auditing-server-policy-to-eventhub/azuredeploy.json b/201-sql-auditing-server-policy-to-eventhub/azuredeploy.json index e475d1b6bd2b..47463899f86f 100644 --- a/201-sql-auditing-server-policy-to-eventhub/azuredeploy.json +++ b/201-sql-auditing-server-policy-to-eventhub/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerName": { diff --git a/201-sql-auditing-server-policy-to-eventhub/azuredeploy.parameters.json b/201-sql-auditing-server-policy-to-eventhub/azuredeploy.parameters.json index a037a6760d25..17f85c30d661 100644 --- a/201-sql-auditing-server-policy-to-eventhub/azuredeploy.parameters.json +++ b/201-sql-auditing-server-policy-to-eventhub/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlAdministratorLogin": { diff --git a/201-sql-auditing-server-policy-to-oms/azuredeploy.json b/201-sql-auditing-server-policy-to-oms/azuredeploy.json index 76b608815611..3bfb95c46517 100644 --- a/201-sql-auditing-server-policy-to-oms/azuredeploy.json +++ b/201-sql-auditing-server-policy-to-oms/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerName": { diff --git a/201-sql-auditing-server-policy-to-oms/azuredeploy.parameters.json b/201-sql-auditing-server-policy-to-oms/azuredeploy.parameters.json index 935ff62a82fc..c8096ea263c8 100644 --- a/201-sql-auditing-server-policy-to-oms/azuredeploy.parameters.json +++ b/201-sql-auditing-server-policy-to-oms/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerName": { diff --git a/201-sql-data-warehouse-transparent-encryption-create/azuredeploy.json b/201-sql-data-warehouse-transparent-encryption-create/azuredeploy.json index b4803d30138e..b7b1ff2bf2f6 100644 --- a/201-sql-data-warehouse-transparent-encryption-create/azuredeploy.json +++ b/201-sql-data-warehouse-transparent-encryption-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerName": { diff --git a/201-sql-data-warehouse-transparent-encryption-create/azuredeploy.parameters.json b/201-sql-data-warehouse-transparent-encryption-create/azuredeploy.parameters.json index 81960b3dbd30..04af1b585952 100644 --- a/201-sql-data-warehouse-transparent-encryption-create/azuredeploy.parameters.json +++ b/201-sql-data-warehouse-transparent-encryption-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerName": { diff --git a/201-sql-database-transparent-encryption-create/azuredeploy.json b/201-sql-database-transparent-encryption-create/azuredeploy.json index 0d464eee95c8..89109b0a021f 100644 --- a/201-sql-database-transparent-encryption-create/azuredeploy.json +++ b/201-sql-database-transparent-encryption-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlAdministratorLogin": { diff --git a/201-sql-database-transparent-encryption-create/azuredeploy.parameters.json b/201-sql-database-transparent-encryption-create/azuredeploy.parameters.json index 20702cfc9d3c..1c785cd0e478 100644 --- a/201-sql-database-transparent-encryption-create/azuredeploy.parameters.json +++ b/201-sql-database-transparent-encryption-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlAdministratorLogin": { diff --git a/201-sql-threat-detection-db-policy-multiple-databases/azuredeploy.json b/201-sql-threat-detection-db-policy-multiple-databases/azuredeploy.json index 4d11351e9689..a13ef1e553b0 100644 --- a/201-sql-threat-detection-db-policy-multiple-databases/azuredeploy.json +++ b/201-sql-threat-detection-db-policy-multiple-databases/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serverName": { diff --git a/201-sql-threat-detection-db-policy-multiple-databases/azuredeploy.parameters.json b/201-sql-threat-detection-db-policy-multiple-databases/azuredeploy.parameters.json index faa415f7e979..9cf87138dbca 100644 --- a/201-sql-threat-detection-db-policy-multiple-databases/azuredeploy.parameters.json +++ b/201-sql-threat-detection-db-policy-multiple-databases/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUser": { diff --git a/201-sqlmi-new-vnet-w-jumpbox/azuredeploy.json b/201-sqlmi-new-vnet-w-jumpbox/azuredeploy.json index c5c93a4d7091..e21309b5d717 100644 --- a/201-sqlmi-new-vnet-w-jumpbox/azuredeploy.json +++ b/201-sqlmi-new-vnet-w-jumpbox/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.1", "parameters": { "managedInstanceName": { diff --git a/201-sqlmi-new-vnet-w-jumpbox/azuredeploy.parameters.json b/201-sqlmi-new-vnet-w-jumpbox/azuredeploy.parameters.json index 4a0f8584d3c3..e39af79ea3d9 100644 --- a/201-sqlmi-new-vnet-w-jumpbox/azuredeploy.parameters.json +++ b/201-sqlmi-new-vnet-w-jumpbox/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "managedInstanceName": { diff --git a/201-sqlmi-new-vnet-w-point-to-site-vpn/azuredeploy.json b/201-sqlmi-new-vnet-w-point-to-site-vpn/azuredeploy.json index c87bc7c86b2a..0e5a6c3f78f5 100644 --- a/201-sqlmi-new-vnet-w-point-to-site-vpn/azuredeploy.json +++ b/201-sqlmi-new-vnet-w-point-to-site-vpn/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.1", "parameters": { "managedInstanceName": { diff --git a/201-sqlmi-new-vnet-w-point-to-site-vpn/azuredeploy.parameters.json b/201-sqlmi-new-vnet-w-point-to-site-vpn/azuredeploy.parameters.json index bdc53036f60d..714caa71c086 100644 --- a/201-sqlmi-new-vnet-w-point-to-site-vpn/azuredeploy.parameters.json +++ b/201-sqlmi-new-vnet-w-point-to-site-vpn/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "managedInstanceName": { diff --git a/201-storage-account-service-encryption-create/azuredeploy.json b/201-storage-account-service-encryption-create/azuredeploy.json index 51789371dbc3..1f21fbf87e26 100644 --- a/201-storage-account-service-encryption-create/azuredeploy.json +++ b/201-storage-account-service-encryption-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountType": { diff --git a/201-storage-account-service-encryption-create/azuredeploy.parameters.json b/201-storage-account-service-encryption-create/azuredeploy.parameters.json index 401aacc70b31..f85453809727 100644 --- a/201-storage-account-service-encryption-create/azuredeploy.parameters.json +++ b/201-storage-account-service-encryption-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountType": { diff --git a/201-storage-advanced-threat-protection-create/azuredeploy.json b/201-storage-advanced-threat-protection-create/azuredeploy.json index cc986c439eed..60e9cba1296d 100644 --- a/201-storage-advanced-threat-protection-create/azuredeploy.json +++ b/201-storage-advanced-threat-protection-create/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/201-storage-advanced-threat-protection-create/azuredeploy.parameters.json b/201-storage-advanced-threat-protection-create/azuredeploy.parameters.json index d95b533b058e..ed83400c3fce 100644 --- a/201-storage-advanced-threat-protection-create/azuredeploy.parameters.json +++ b/201-storage-advanced-threat-protection-create/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/201-timeseriesinsights-environment-payg-with-iothub/azuredeploy.json b/201-timeseriesinsights-environment-payg-with-iothub/azuredeploy.json index 170847d24735..18e7aa2a121b 100644 --- a/201-timeseriesinsights-environment-payg-with-iothub/azuredeploy.json +++ b/201-timeseriesinsights-environment-payg-with-iothub/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "iotHubNewOrExisting": { diff --git a/201-timeseriesinsights-environment-payg-with-iothub/azuredeploy.parameters.json b/201-timeseriesinsights-environment-payg-with-iothub/azuredeploy.parameters.json index 3b55ae7e2638..00972320c9fe 100644 --- a/201-timeseriesinsights-environment-payg-with-iothub/azuredeploy.parameters.json +++ b/201-timeseriesinsights-environment-payg-with-iothub/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "environmentTimeSeriesIdProperties": { diff --git a/201-timeseriesinsights-environment-with-eventhub/azuredeploy.json b/201-timeseriesinsights-environment-with-eventhub/azuredeploy.json index 845131371981..f111bb7f1681 100644 --- a/201-timeseriesinsights-environment-with-eventhub/azuredeploy.json +++ b/201-timeseriesinsights-environment-with-eventhub/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "eventHubNewOrExisting": { diff --git a/201-timeseriesinsights-environment-with-eventhub/azuredeploy.parameters.json b/201-timeseriesinsights-environment-with-eventhub/azuredeploy.parameters.json index 9cf622bc0611..00c168a5849a 100644 --- a/201-timeseriesinsights-environment-with-eventhub/azuredeploy.parameters.json +++ b/201-timeseriesinsights-environment-with-eventhub/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "eventHubNamespaceName": { diff --git a/201-traffic-manager-vm-zones/azuredeploy.json b/201-traffic-manager-vm-zones/azuredeploy.json index 82f8e9c660e8..790bb9374c2a 100644 --- a/201-traffic-manager-vm-zones/azuredeploy.json +++ b/201-traffic-manager-vm-zones/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-traffic-manager-vm-zones/azuredeploy.parameters.json b/201-traffic-manager-vm-zones/azuredeploy.parameters.json index 675957d90088..012cc57be7cd 100644 --- a/201-traffic-manager-vm-zones/azuredeploy.parameters.json +++ b/201-traffic-manager-vm-zones/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "trafficManagerDnsName": { diff --git a/201-traffic-manager-vm/azuredeploy.json b/201-traffic-manager-vm/azuredeploy.json index 3dbd766fc772..dec0445c4414 100644 --- a/201-traffic-manager-vm/azuredeploy.json +++ b/201-traffic-manager-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "uniqueDnsName": { diff --git a/201-traffic-manager-vm/azuredeploy.parameters.json b/201-traffic-manager-vm/azuredeploy.parameters.json index 7242c2110c70..fbf338231260 100644 --- a/201-traffic-manager-vm/azuredeploy.parameters.json +++ b/201-traffic-manager-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "uniqueDnsName": { diff --git a/201-traffic-manager-webapp/azuredeploy.json b/201-traffic-manager-webapp/azuredeploy.json index 9e69f6a37884..b8cfb9f82b97 100644 --- a/201-traffic-manager-webapp/azuredeploy.json +++ b/201-traffic-manager-webapp/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "uniqueDnsName": { diff --git a/201-traffic-manager-webapp/azuredeploy.parameters.json b/201-traffic-manager-webapp/azuredeploy.parameters.json index c474cfe90466..3766379cfb83 100644 --- a/201-traffic-manager-webapp/azuredeploy.parameters.json +++ b/201-traffic-manager-webapp/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "uniqueDnsName": { diff --git a/201-userdefined-routes-appliance/azuredeploy.json b/201-userdefined-routes-appliance/azuredeploy.json index 00e3f3f43e01..2e38f3dd7c28 100644 --- a/201-userdefined-routes-appliance/azuredeploy.json +++ b/201-userdefined-routes-appliance/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-userdefined-routes-appliance/azuredeploy.parameters.json b/201-userdefined-routes-appliance/azuredeploy.parameters.json index 3ae172241b52..1c86692ca84a 100644 --- a/201-userdefined-routes-appliance/azuredeploy.parameters.json +++ b/201-userdefined-routes-appliance/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-vm-copy-index-loops/azuredeploy.json b/201-vm-copy-index-loops/azuredeploy.json index 8ee99a1f89a2..7e7e1ff91013 100644 --- a/201-vm-copy-index-loops/azuredeploy.json +++ b/201-vm-copy-index-loops/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-vm-copy-index-loops/azuredeploy.parameters.json b/201-vm-copy-index-loops/azuredeploy.parameters.json index 1afde7922f16..1f56f3da52e1 100644 --- a/201-vm-copy-index-loops/azuredeploy.parameters.json +++ b/201-vm-copy-index-loops/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-vm-copy-managed-disks/azuredeploy.json b/201-vm-copy-managed-disks/azuredeploy.json index 4e5f9f0a22e4..5962056245a2 100644 --- a/201-vm-copy-managed-disks/azuredeploy.json +++ b/201-vm-copy-managed-disks/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualMachineAdminUserName": { diff --git a/201-vm-copy-managed-disks/azuredeploy.parameters.json b/201-vm-copy-managed-disks/azuredeploy.parameters.json index 443ba17301df..0352fb9fb0eb 100644 --- a/201-vm-copy-managed-disks/azuredeploy.parameters.json +++ b/201-vm-copy-managed-disks/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualMachineAdminUserName": { diff --git a/201-vm-custom-image-new-storage-account/azuredeploy.json b/201-vm-custom-image-new-storage-account/azuredeploy.json index 28b879b56b9b..0ca63b8388f0 100644 --- a/201-vm-custom-image-new-storage-account/azuredeploy.json +++ b/201-vm-custom-image-new-storage-account/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "transferVmName": { diff --git a/201-vm-custom-image-new-storage-account/azuredeploy.parameters.json b/201-vm-custom-image-new-storage-account/azuredeploy.parameters.json index 65caf2f22fb8..efda2a95eb57 100644 --- a/201-vm-custom-image-new-storage-account/azuredeploy.parameters.json +++ b/201-vm-custom-image-new-storage-account/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-vm-custom-script-output/azuredeploy.json b/201-vm-custom-script-output/azuredeploy.json index 5a9b4bc4f5f2..3241c98824d0 100644 --- a/201-vm-custom-script-output/azuredeploy.json +++ b/201-vm-custom-script-output/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-vm-custom-script-output/azuredeploy.parameters.json b/201-vm-custom-script-output/azuredeploy.parameters.json index 28184dda4182..eb8814b0e30f 100644 --- a/201-vm-custom-script-output/azuredeploy.parameters.json +++ b/201-vm-custom-script-output/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-vm-custom-script-output/nestedtemplates/customScriptExtension.json b/201-vm-custom-script-output/nestedtemplates/customScriptExtension.json index 6612b4d3b837..7c1557e5f75e 100644 --- a/201-vm-custom-script-output/nestedtemplates/customScriptExtension.json +++ b/201-vm-custom-script-output/nestedtemplates/customScriptExtension.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-vm-custom-script-output/nestedtemplates/vm.json b/201-vm-custom-script-output/nestedtemplates/vm.json index 7e44ae7d5f93..3093023e90a0 100644 --- a/201-vm-custom-script-output/nestedtemplates/vm.json +++ b/201-vm-custom-script-output/nestedtemplates/vm.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-vm-custom-script-windows/azuredeploy.json b/201-vm-custom-script-windows/azuredeploy.json index ff5bc5cf8bf5..b4e70b0d622d 100644 --- a/201-vm-custom-script-windows/azuredeploy.json +++ b/201-vm-custom-script-windows/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-vm-custom-script-windows/azuredeploy.parameters.json b/201-vm-custom-script-windows/azuredeploy.parameters.json index f9b8ed4a107c..db78c08fb5b9 100644 --- a/201-vm-custom-script-windows/azuredeploy.parameters.json +++ b/201-vm-custom-script-windows/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-vm-dedicated-hosts/azuredeploy.json b/201-vm-dedicated-hosts/azuredeploy.json index ba46c24ff59a..90beb18d2672 100644 --- a/201-vm-dedicated-hosts/azuredeploy.json +++ b/201-vm-dedicated-hosts/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-vm-dedicated-hosts/azuredeploy.parameters.json b/201-vm-dedicated-hosts/azuredeploy.parameters.json index ea27417e3572..281531feda89 100644 --- a/201-vm-dedicated-hosts/azuredeploy.parameters.json +++ b/201-vm-dedicated-hosts/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-vm-diagnostics-extension-windows/azuredeploy.json b/201-vm-diagnostics-extension-windows/azuredeploy.json index 33c59171aad1..a475005f87e0 100644 --- a/201-vm-diagnostics-extension-windows/azuredeploy.json +++ b/201-vm-diagnostics-extension-windows/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmDiagnosticsStorageAccountName": { @@ -63,7 +63,7 @@ "subnetRef": "[resourceId('Microsoft.Network/virtualNetworks/subnets', variables('virtualNetworkName'), variables('subnetName'))]", "accountid": "[concat(variables('resourceId'),'/providers/Microsoft.Storage/storageAccounts/', parameters('vmDiagnosticsStorageAccountName'))]", "metricsresourceid": "[concat('/subscriptions/',subscription().subscriptionId,'/resourceGroups/',resourceGroup().name ,'/providers/','Microsoft.Compute/virtualMachines/',variables('vmName'))]", - "wadlogs": " ", + "wadlogs": " ", "wadperfcounters": "", "wadperfcounters2": "", "wadmetrics": "[concat('')]", diff --git a/201-vm-diagnostics-extension-windows/azuredeploy.parameters.json b/201-vm-diagnostics-extension-windows/azuredeploy.parameters.json index 4f70dd3ffe68..d34a6a94f35b 100644 --- a/201-vm-diagnostics-extension-windows/azuredeploy.parameters.json +++ b/201-vm-diagnostics-extension-windows/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmDiagnosticsStorageAccountName": { diff --git a/201-vm-different-rg-vnet/azuredeploy.json b/201-vm-different-rg-vnet/azuredeploy.json index b3869d71718b..942c3c6e9536 100644 --- a/201-vm-different-rg-vnet/azuredeploy.json +++ b/201-vm-different-rg-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/201-vm-different-rg-vnet/azuredeploy.parameters.json b/201-vm-different-rg-vnet/azuredeploy.parameters.json index 0d25da7354cc..b0240f76cc89 100644 --- a/201-vm-different-rg-vnet/azuredeploy.parameters.json +++ b/201-vm-different-rg-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/201-vm-different-rg-vnet/prereqs/prereq.azuredeploy.json b/201-vm-different-rg-vnet/prereqs/prereq.azuredeploy.json index 7e5765029c56..fa67869577ff 100644 --- a/201-vm-different-rg-vnet/prereqs/prereq.azuredeploy.json +++ b/201-vm-different-rg-vnet/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-vm-different-rg-vnet/prereqs/prereq.azuredeploy.parameters.json b/201-vm-different-rg-vnet/prereqs/prereq.azuredeploy.parameters.json index e33c9838ab99..6b61823aedb9 100644 --- a/201-vm-different-rg-vnet/prereqs/prereq.azuredeploy.parameters.json +++ b/201-vm-different-rg-vnet/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-vm-domain-join-existing/azuredeploy.json b/201-vm-domain-join-existing/azuredeploy.json index fae783359107..775f778b6a1a 100644 --- a/201-vm-domain-join-existing/azuredeploy.json +++ b/201-vm-domain-join-existing/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmList": { diff --git a/201-vm-domain-join-existing/azuredeploy.parameters.json b/201-vm-domain-join-existing/azuredeploy.parameters.json index 459dd677c049..221df8e73fe8 100644 --- a/201-vm-domain-join-existing/azuredeploy.parameters.json +++ b/201-vm-domain-join-existing/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-vm-domain-join/azuredeploy.json b/201-vm-domain-join/azuredeploy.json index b0e023ca29b1..d81cb6fe81bc 100644 --- a/201-vm-domain-join/azuredeploy.json +++ b/201-vm-domain-join/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVNETName": { diff --git a/201-vm-domain-join/azuredeploy.parameters.json b/201-vm-domain-join/azuredeploy.parameters.json index 6f6b8c06e3fd..bd43ce0c1cec 100644 --- a/201-vm-domain-join/azuredeploy.parameters.json +++ b/201-vm-domain-join/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVNETName": { diff --git a/201-vm-dynamic-data-disks-selection/azuredeploy.json b/201-vm-dynamic-data-disks-selection/azuredeploy.json index c8c3d3f0f471..4cca6d82179f 100644 --- a/201-vm-dynamic-data-disks-selection/azuredeploy.json +++ b/201-vm-dynamic-data-disks-selection/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-vm-dynamic-data-disks-selection/azuredeploy.parameters.json b/201-vm-dynamic-data-disks-selection/azuredeploy.parameters.json index f9b8ed4a107c..db78c08fb5b9 100644 --- a/201-vm-dynamic-data-disks-selection/azuredeploy.parameters.json +++ b/201-vm-dynamic-data-disks-selection/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-vm-efficientip-vhd/azuredeploy.json b/201-vm-efficientip-vhd/azuredeploy.json index 26bbd15353dd..19b110c369af 100644 --- a/201-vm-efficientip-vhd/azuredeploy.json +++ b/201-vm-efficientip-vhd/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-vm-efficientip-vhd/azuredeploy.parameters.json b/201-vm-efficientip-vhd/azuredeploy.parameters.json index 53c4928fddad..50d66ea3b3f1 100644 --- a/201-vm-efficientip-vhd/azuredeploy.parameters.json +++ b/201-vm-efficientip-vhd/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsNameForPublicIP": { diff --git a/201-vm-efficientip-vhd/prereqs/prereq.azuredeploy.json b/201-vm-efficientip-vhd/prereqs/prereq.azuredeploy.json index 9313ea08a3d1..87c59a786097 100644 --- a/201-vm-efficientip-vhd/prereqs/prereq.azuredeploy.json +++ b/201-vm-efficientip-vhd/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/201-vm-efficientip-vhd/prereqs/prereq.azuredeploy.parameters.json b/201-vm-efficientip-vhd/prereqs/prereq.azuredeploy.parameters.json index 0c3975662be1..fb2d7f1a9715 100644 --- a/201-vm-efficientip-vhd/prereqs/prereq.azuredeploy.parameters.json +++ b/201-vm-efficientip-vhd/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/201-vm-generalized-vhd-new-or-existing-vnet/azuredeploy.json b/201-vm-generalized-vhd-new-or-existing-vnet/azuredeploy.json index 8368b43da2bd..795976e67fb2 100644 --- a/201-vm-generalized-vhd-new-or-existing-vnet/azuredeploy.json +++ b/201-vm-generalized-vhd-new-or-existing-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/201-vm-generalized-vhd-new-or-existing-vnet/azuredeploy.parameters.json b/201-vm-generalized-vhd-new-or-existing-vnet/azuredeploy.parameters.json index 2a4e2ade773c..7abf3a80e822 100644 --- a/201-vm-generalized-vhd-new-or-existing-vnet/azuredeploy.parameters.json +++ b/201-vm-generalized-vhd-new-or-existing-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vNetNewOrExisting": { diff --git a/201-vm-linux-dynamic-data-disks/azuredeploy.json b/201-vm-linux-dynamic-data-disks/azuredeploy.json index a457e68ec069..64e67c73f5ff 100644 --- a/201-vm-linux-dynamic-data-disks/azuredeploy.json +++ b/201-vm-linux-dynamic-data-disks/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { diff --git a/201-vm-linux-dynamic-data-disks/azuredeploy.parameters.json b/201-vm-linux-dynamic-data-disks/azuredeploy.parameters.json index baf25f135eb6..d2d579316deb 100644 --- a/201-vm-linux-dynamic-data-disks/azuredeploy.parameters.json +++ b/201-vm-linux-dynamic-data-disks/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/201-vm-linux-jupyterhub/azuredeploy.json b/201-vm-linux-jupyterhub/azuredeploy.json index a3a805feaad2..b4fdfe6757a6 100644 --- a/201-vm-linux-jupyterhub/azuredeploy.json +++ b/201-vm-linux-jupyterhub/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-vm-linux-jupyterhub/azuredeploy.parameters.json b/201-vm-linux-jupyterhub/azuredeploy.parameters.json index 28184dda4182..eb8814b0e30f 100644 --- a/201-vm-linux-jupyterhub/azuredeploy.parameters.json +++ b/201-vm-linux-jupyterhub/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/201-vm-monitoring-diagnostics-extension/azuredeploy.json b/201-vm-monitoring-diagnostics-extension/azuredeploy.json index 0a6a4de9f2ec..5795b0a7eae7 100644 --- a/201-vm-monitoring-diagnostics-extension/azuredeploy.json +++ b/201-vm-monitoring-diagnostics-extension/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { @@ -68,7 +68,7 @@ "virtualNetworkName": "MyVNET", "subnetRef": "[resourceId('Microsoft.Network/virtualNetworks/subnets', variables('virtualNetworkName'), variables('subnetName'))]", "accountid": "[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/',parameters('existingdiagnosticsStorageResourceGroup'), '/providers/','Microsoft.Storage/storageAccounts/', parameters('existingdiagnosticsStorageAccountName'))]", - "wadlogs": " ", + "wadlogs": " ", "wadperfcounters1": "", "wadperfcounters2": "", "wadcfgxstart": "[concat(variables('wadlogs'), variables('wadperfcounters1'), variables('wadperfcounters2'), ' - + Debug AnyCPU diff --git a/cloudera-tableau/azuredeploy.json b/cloudera-tableau/azuredeploy.json index 61788aa0ce47..f6b602d91fc8 100644 --- a/cloudera-tableau/azuredeploy.json +++ b/cloudera-tableau/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.1", "parameters": { "adminUsername": { diff --git a/cloudera-tableau/azuredeploy.parameters.json b/cloudera-tableau/azuredeploy.parameters.json index 6c3a38360103..4ccb4d7c8d05 100644 --- a/cloudera-tableau/azuredeploy.parameters.json +++ b/cloudera-tableau/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.1", "parameters": { "scriptsUri": { diff --git a/cloudera-tableau/nested/data-node-ds13.json b/cloudera-tableau/nested/data-node-ds13.json index 4942a885f172..4c2fb5004352 100644 --- a/cloudera-tableau/nested/data-node-ds13.json +++ b/cloudera-tableau/nested/data-node-ds13.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.1", "parameters": { "vnetID": { diff --git a/cloudera-tableau/nested/data-node-ds14.json b/cloudera-tableau/nested/data-node-ds14.json index 800152b910d9..9075750b6fe4 100644 --- a/cloudera-tableau/nested/data-node-ds14.json +++ b/cloudera-tableau/nested/data-node-ds14.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.1", "parameters": { "vnetID": { diff --git a/cloudera-tableau/nested/ds13.json b/cloudera-tableau/nested/ds13.json index 22e821cf9656..945eeecc3fa8 100644 --- a/cloudera-tableau/nested/ds13.json +++ b/cloudera-tableau/nested/ds13.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.1", "parameters": { "adminUsername": { diff --git a/cloudera-tableau/nested/master-node.json b/cloudera-tableau/nested/master-node.json index d9133a395924..ebb45c205cb8 100644 --- a/cloudera-tableau/nested/master-node.json +++ b/cloudera-tableau/nested/master-node.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.1", "parameters": { "vnetID": { diff --git a/cloudera-tableau/nested/setup-cloudera.json b/cloudera-tableau/nested/setup-cloudera.json index 2b0fdfa0130b..2c4bb4a61e92 100644 --- a/cloudera-tableau/nested/setup-cloudera.json +++ b/cloudera-tableau/nested/setup-cloudera.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.1", "parameters": { "resourceAPIVersion": { diff --git a/cloudera-tableau/nested/shared-resources-existing-vnet.json b/cloudera-tableau/nested/shared-resources-existing-vnet.json index 2f61e4e3a134..bb3e007f3d4d 100644 --- a/cloudera-tableau/nested/shared-resources-existing-vnet.json +++ b/cloudera-tableau/nested/shared-resources-existing-vnet.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.1", "parameters": { "resourceAPIVersion": { diff --git a/cloudera-tableau/nested/shared-resources-new-vnet.json b/cloudera-tableau/nested/shared-resources-new-vnet.json index 0c8b8cf7946d..f5f76f094dbd 100644 --- a/cloudera-tableau/nested/shared-resources-new-vnet.json +++ b/cloudera-tableau/nested/shared-resources-new-vnet.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.1", "parameters": { "resourceAPIVersion": { diff --git a/cloudera-tableau/nested/tableau-server.json b/cloudera-tableau/nested/tableau-server.json index 738f985d8267..dfd6cafcbb6e 100644 --- a/cloudera-tableau/nested/tableau-server.json +++ b/cloudera-tableau/nested/tableau-server.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.1", "parameters": { "adminUsername": { diff --git a/cloudlens-moloch-ubuntu/azuredeploy.json b/cloudlens-moloch-ubuntu/azuredeploy.json index 02de4b657361..3dca9df02582 100644 --- a/cloudlens-moloch-ubuntu/azuredeploy.json +++ b/cloudlens-moloch-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "cloudlensProjectKey": { diff --git a/cloudlens-moloch-ubuntu/azuredeploy.parameters.json b/cloudlens-moloch-ubuntu/azuredeploy.parameters.json index 68572d5ca005..f7c514288556 100644 --- a/cloudlens-moloch-ubuntu/azuredeploy.parameters.json +++ b/cloudlens-moloch-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "cloudlensProjectKey": { diff --git a/cloudlens-suricata-ubuntu/azuredeploy.json b/cloudlens-suricata-ubuntu/azuredeploy.json index 581ebb0a8fb4..35a2affe1e07 100644 --- a/cloudlens-suricata-ubuntu/azuredeploy.json +++ b/cloudlens-suricata-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "cloudlensProjectKey": { diff --git a/cloudlens-suricata-ubuntu/azuredeploy.parameters.json b/cloudlens-suricata-ubuntu/azuredeploy.parameters.json index 68572d5ca005..f7c514288556 100644 --- a/cloudlens-suricata-ubuntu/azuredeploy.parameters.json +++ b/cloudlens-suricata-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "cloudlensProjectKey": { diff --git a/cohesive-vns3-free-multiclient-overlay-linux/azuredeploy.parameters.json b/cohesive-vns3-free-multiclient-overlay-linux/azuredeploy.parameters.json index 3976d1c65017..827cf7ce89c5 100644 --- a/cohesive-vns3-free-multiclient-overlay-linux/azuredeploy.parameters.json +++ b/cohesive-vns3-free-multiclient-overlay-linux/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/concourse-ci/azuredeploy.json b/concourse-ci/azuredeploy.json index 956315d7c191..e1557be7b63b 100644 --- a/concourse-ci/azuredeploy.json +++ b/concourse-ci/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "jumpboxVmName": { diff --git a/concourse-ci/azuredeploy.parameters.json b/concourse-ci/azuredeploy.parameters.json index e701c7439475..dcce6d219335 100644 --- a/concourse-ci/azuredeploy.parameters.json +++ b/concourse-ci/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "jumpboxVmName": { diff --git a/concourse-ci/generate-customdata.json b/concourse-ci/generate-customdata.json index b653f36e204a..981f337ccdbb 100644 --- a/concourse-ci/generate-customdata.json +++ b/concourse-ci/generate-customdata.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "customData": { diff --git a/consul-on-ubuntu/azuredeploy.json b/consul-on-ubuntu/azuredeploy.json index 2be41eb01542..276efc34b508 100644 --- a/consul-on-ubuntu/azuredeploy.json +++ b/consul-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/consul-on-ubuntu/azuredeploy.parameters.json b/consul-on-ubuntu/azuredeploy.parameters.json index fec7d3027787..ccc786c92b3f 100644 --- a/consul-on-ubuntu/azuredeploy.parameters.json +++ b/consul-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "appPrefix": { diff --git a/coreos-with-fleet-multivm/azuredeploy.json b/coreos-with-fleet-multivm/azuredeploy.json index bafab608e3ad..bc8626335047 100644 --- a/coreos-with-fleet-multivm/azuredeploy.json +++ b/coreos-with-fleet-multivm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/coreos-with-fleet-multivm/azuredeploy.parameters.json b/coreos-with-fleet-multivm/azuredeploy.parameters.json index e086bdfbd4ff..cb6ac633238e 100644 --- a/coreos-with-fleet-multivm/azuredeploy.parameters.json +++ b/coreos-with-fleet-multivm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/coscale-dev-env/azuredeploy.json b/coscale-dev-env/azuredeploy.json index 361e281e74cf..0354650501c4 100644 --- a/coscale-dev-env/azuredeploy.json +++ b/coscale-dev-env/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "coscaleKey": { diff --git a/coscale-dev-env/azuredeploy.parameters.json b/coscale-dev-env/azuredeploy.parameters.json index 76917d1f84fe..b050dac936f2 100644 --- a/coscale-dev-env/azuredeploy.parameters.json +++ b/coscale-dev-env/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "coscaleKey": { diff --git a/couchbase/azuredeploy.json b/couchbase/azuredeploy.json index 9070c55c9c36..7ec61edcb3d2 100644 --- a/couchbase/azuredeploy.json +++ b/couchbase/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { diff --git a/couchbase/azuredeploy.parameters.json b/couchbase/azuredeploy.parameters.json index 731f5bc03749..c208488c253f 100644 --- a/couchbase/azuredeploy.parameters.json +++ b/couchbase/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "serverNodeCount": { diff --git a/create-budget/azuredeploy.json b/create-budget/azuredeploy.json index cef5b4fe49e1..ced993c8c25b 100644 --- a/create-budget/azuredeploy.json +++ b/create-budget/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "budgetName": { diff --git a/create-budget/azuredeploy.parameters.json b/create-budget/azuredeploy.parameters.json index cf1f28b9fd04..134c47576368 100644 --- a/create-budget/azuredeploy.parameters.json +++ b/create-budget/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "budgetName": { diff --git a/create-hpc-cluster-custom-image/azuredeploy.json b/create-hpc-cluster-custom-image/azuredeploy.json index e3bad9bb700a..4366ccc7fe1b 100644 --- a/create-hpc-cluster-custom-image/azuredeploy.json +++ b/create-hpc-cluster-custom-image/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/create-hpc-cluster-custom-image/azuredeploy.parameters.json b/create-hpc-cluster-custom-image/azuredeploy.parameters.json index 8bd33a8dedc8..d6c8dd0d3519 100644 --- a/create-hpc-cluster-custom-image/azuredeploy.parameters.json +++ b/create-hpc-cluster-custom-image/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/create-hpc-cluster-custom-image/customnode-rdma-disabled.json b/create-hpc-cluster-custom-image/customnode-rdma-disabled.json index 5e0986f5693c..42dfc2e6313b 100644 --- a/create-hpc-cluster-custom-image/customnode-rdma-disabled.json +++ b/create-hpc-cluster-custom-image/customnode-rdma-disabled.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "apiVersion": { diff --git a/create-hpc-cluster-custom-image/customnode-rdma-enabled.json b/create-hpc-cluster-custom-image/customnode-rdma-enabled.json index 31ca9c9ec6a1..6a22093f1575 100644 --- a/create-hpc-cluster-custom-image/customnode-rdma-enabled.json +++ b/create-hpc-cluster-custom-image/customnode-rdma-enabled.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "apiVersion": { diff --git a/create-hpc-cluster-linux-cn/azuredeploy.json b/create-hpc-cluster-linux-cn/azuredeploy.json index 09bf850b560a..94a406153d64 100644 --- a/create-hpc-cluster-linux-cn/azuredeploy.json +++ b/create-hpc-cluster-linux-cn/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/create-hpc-cluster-linux-cn/azuredeploy.parameters.json b/create-hpc-cluster-linux-cn/azuredeploy.parameters.json index 53ce9bf80170..8ef628d60f3e 100644 --- a/create-hpc-cluster-linux-cn/azuredeploy.parameters.json +++ b/create-hpc-cluster-linux-cn/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/create-hpc-cluster/azuredeploy.json b/create-hpc-cluster/azuredeploy.json index d8b6080d7c60..27811b07b947 100644 --- a/create-hpc-cluster/azuredeploy.json +++ b/create-hpc-cluster/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/create-hpc-cluster/azuredeploy.parameters.json b/create-hpc-cluster/azuredeploy.parameters.json index 476a02f72e94..da77ef76c14e 100644 --- a/create-hpc-cluster/azuredeploy.parameters.json +++ b/create-hpc-cluster/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/create-hpc-cluster/headnode-rdma-disabled.json b/create-hpc-cluster/headnode-rdma-disabled.json index 75be46509588..f2260abb61f9 100644 --- a/create-hpc-cluster/headnode-rdma-disabled.json +++ b/create-hpc-cluster/headnode-rdma-disabled.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/create-hpc-cluster/headnode-rdma-enabled.json b/create-hpc-cluster/headnode-rdma-enabled.json index ed818d028c44..c9ec71b69e2a 100644 --- a/create-hpc-cluster/headnode-rdma-enabled.json +++ b/create-hpc-cluster/headnode-rdma-enabled.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/create-hpc-cluster/linuxnode.json b/create-hpc-cluster/linuxnode.json index 1ae26e19c06a..d71449099865 100644 --- a/create-hpc-cluster/linuxnode.json +++ b/create-hpc-cluster/linuxnode.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nicName": { diff --git a/create-hpc-cluster/mainTemplate.json b/create-hpc-cluster/mainTemplate.json index 3f3773fb577e..b7d630241a5d 100644 --- a/create-hpc-cluster/mainTemplate.json +++ b/create-hpc-cluster/mainTemplate.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/create-hpc-cluster/publicip-existing.json b/create-hpc-cluster/publicip-existing.json index a8a63e820a4a..743d5dec847d 100644 --- a/create-hpc-cluster/publicip-existing.json +++ b/create-hpc-cluster/publicip-existing.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publicIPAddressName": { diff --git a/create-hpc-cluster/publicip-new.json b/create-hpc-cluster/publicip-new.json index 2870917d2188..001fed41ea4f 100644 --- a/create-hpc-cluster/publicip-new.json +++ b/create-hpc-cluster/publicip-new.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publicIPAddressName": { diff --git a/create-hpc-cluster/vnet-with-dns-server.json b/create-hpc-cluster/vnet-with-dns-server.json index 4e33828a9a7c..38a214027e5f 100644 --- a/create-hpc-cluster/vnet-with-dns-server.json +++ b/create-hpc-cluster/vnet-with-dns-server.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/create-hpc-cluster/windowsnode-rdma-disabled.json b/create-hpc-cluster/windowsnode-rdma-disabled.json index e29ecbfcc2ac..f9467b73e72a 100644 --- a/create-hpc-cluster/windowsnode-rdma-disabled.json +++ b/create-hpc-cluster/windowsnode-rdma-disabled.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nicName": { diff --git a/create-hpc-cluster/windowsnode-rdma-enabled.json b/create-hpc-cluster/windowsnode-rdma-enabled.json index 0cc3fdc562b0..e7ba17e863ff 100644 --- a/create-hpc-cluster/windowsnode-rdma-enabled.json +++ b/create-hpc-cluster/windowsnode-rdma-enabled.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nicName": { diff --git a/custom-private-dns/azuredeploy.json b/custom-private-dns/azuredeploy.json index c4ccc39ac1d3..299f71151fdb 100644 --- a/custom-private-dns/azuredeploy.json +++ b/custom-private-dns/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsZoneName": { diff --git a/custom-private-dns/azuredeploy.parameters.json b/custom-private-dns/azuredeploy.parameters.json index f800bee1d1a7..ca97d68836ed 100644 --- a/custom-private-dns/azuredeploy.parameters.json +++ b/custom-private-dns/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsZoneName": { diff --git a/custom-private-dns/nested/genericvm.json b/custom-private-dns/nested/genericvm.json index e87f3d78c3a9..a3d8c311d809 100644 --- a/custom-private-dns/nested/genericvm.json +++ b/custom-private-dns/nested/genericvm.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "subnetId": { diff --git a/custom-private-dns/nested/linux-client/setuplinuxclient.json b/custom-private-dns/nested/linux-client/setuplinuxclient.json index f73b1cbf28a2..30c4cd59efb3 100644 --- a/custom-private-dns/nested/linux-client/setuplinuxclient.json +++ b/custom-private-dns/nested/linux-client/setuplinuxclient.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmList": { diff --git a/custom-private-dns/nested/server/setupserver.json b/custom-private-dns/nested/server/setupserver.json index fe9460ade882..5ff7a2a1f748 100644 --- a/custom-private-dns/nested/server/setupserver.json +++ b/custom-private-dns/nested/server/setupserver.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmList": { diff --git a/custom-private-dns/nested/windows-client/setupwinclient.json b/custom-private-dns/nested/windows-client/setupwinclient.json index 707c3fbbe0dd..2fcb84725430 100644 --- a/custom-private-dns/nested/windows-client/setupwinclient.json +++ b/custom-private-dns/nested/windows-client/setupwinclient.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmList": { diff --git a/datameer-trend-chef-riskanalysis/azuredeploy.json b/datameer-trend-chef-riskanalysis/azuredeploy.json index de401eb41dca..bbf2e081ba84 100644 --- a/datameer-trend-chef-riskanalysis/azuredeploy.json +++ b/datameer-trend-chef-riskanalysis/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/datameer-trend-chef-riskanalysis/azuredeploy.parameters.json b/datameer-trend-chef-riskanalysis/azuredeploy.parameters.json index dc8158fbb0f3..b94e5d134c3b 100644 --- a/datameer-trend-chef-riskanalysis/azuredeploy.parameters.json +++ b/datameer-trend-chef-riskanalysis/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/datameer-trend-chef-riskanalysis/nested/database-new.json b/datameer-trend-chef-riskanalysis/nested/database-new.json index 31c12495aecc..2f58ff438719 100644 --- a/datameer-trend-chef-riskanalysis/nested/database-new.json +++ b/datameer-trend-chef-riskanalysis/nested/database-new.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/datameer-trend-chef-riskanalysis/nested/datameer-hdinsight.json b/datameer-trend-chef-riskanalysis/nested/datameer-hdinsight.json index 3287013350c0..6a067bf4a02f 100644 --- a/datameer-trend-chef-riskanalysis/nested/datameer-hdinsight.json +++ b/datameer-trend-chef-riskanalysis/nested/datameer-hdinsight.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterType": { diff --git a/datameer-trend-chef-riskanalysis/nested/datameer-hdinsight.parameters.json b/datameer-trend-chef-riskanalysis/nested/datameer-hdinsight.parameters.json index 9b851cc65e92..a6e7c0e87961 100644 --- a/datameer-trend-chef-riskanalysis/nested/datameer-hdinsight.parameters.json +++ b/datameer-trend-chef-riskanalysis/nested/datameer-hdinsight.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/datameer-trend-chef-riskanalysis/nested/empty-resources.json b/datameer-trend-chef-riskanalysis/nested/empty-resources.json index fd486b7f1de9..3d0ef25a28a9 100644 --- a/datameer-trend-chef-riskanalysis/nested/empty-resources.json +++ b/datameer-trend-chef-riskanalysis/nested/empty-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/datameer-trend-chef-riskanalysis/nested/orchestrator-server-setup-trend.json b/datameer-trend-chef-riskanalysis/nested/orchestrator-server-setup-trend.json index 90e9265277d7..23b460992469 100644 --- a/datameer-trend-chef-riskanalysis/nested/orchestrator-server-setup-trend.json +++ b/datameer-trend-chef-riskanalysis/nested/orchestrator-server-setup-trend.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/datameer-trend-chef-riskanalysis/nested/trendp2p-chefnodes.json b/datameer-trend-chef-riskanalysis/nested/trendp2p-chefnodes.json index d8fc7f3852fc..964435f8f5ae 100644 --- a/datameer-trend-chef-riskanalysis/nested/trendp2p-chefnodes.json +++ b/datameer-trend-chef-riskanalysis/nested/trendp2p-chefnodes.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/datameer-trend-chef-riskanalysis/nested/trendp2p-chefserver.json b/datameer-trend-chef-riskanalysis/nested/trendp2p-chefserver.json index 72946b43e9d9..500235a37ce7 100644 --- a/datameer-trend-chef-riskanalysis/nested/trendp2p-chefserver.json +++ b/datameer-trend-chef-riskanalysis/nested/trendp2p-chefserver.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publicIPAddressNameChefServer": { diff --git a/datameer-trend-chef-riskanalysis/nested/trendp2p-dsagents.json b/datameer-trend-chef-riskanalysis/nested/trendp2p-dsagents.json index a1a80ff84fa0..8fb16797d780 100644 --- a/datameer-trend-chef-riskanalysis/nested/trendp2p-dsagents.json +++ b/datameer-trend-chef-riskanalysis/nested/trendp2p-dsagents.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/datameer-trend-chef-riskanalysis/nested/trendp2p-orchestrator.json b/datameer-trend-chef-riskanalysis/nested/trendp2p-orchestrator.json index 3a6b4754ff4e..0179fe03b3b7 100644 --- a/datameer-trend-chef-riskanalysis/nested/trendp2p-orchestrator.json +++ b/datameer-trend-chef-riskanalysis/nested/trendp2p-orchestrator.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publicIPDomainNameLabelOrchServer": { diff --git a/datameer-trend-chef-riskanalysis/nested/trendp2p-splunkenterprise.json b/datameer-trend-chef-riskanalysis/nested/trendp2p-splunkenterprise.json index e26d7f3cd361..343c6b780978 100644 --- a/datameer-trend-chef-riskanalysis/nested/trendp2p-splunkenterprise.json +++ b/datameer-trend-chef-riskanalysis/nested/trendp2p-splunkenterprise.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/datameer-trend-chef-riskanalysis/nested/trendp2p-trenddsm.json b/datameer-trend-chef-riskanalysis/nested/trendp2p-trenddsm.json index b7966aef38b3..18929f35aea4 100644 --- a/datameer-trend-chef-riskanalysis/nested/trendp2p-trenddsm.json +++ b/datameer-trend-chef-riskanalysis/nested/trendp2p-trenddsm.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/datameer-trend-chef-riskanalysis/nested/trendp2p-vnetstorage.json b/datameer-trend-chef-riskanalysis/nested/trendp2p-vnetstorage.json index 2db01f361256..cdf3ecac3cb1 100644 --- a/datameer-trend-chef-riskanalysis/nested/trendp2p-vnetstorage.json +++ b/datameer-trend-chef-riskanalysis/nested/trendp2p-vnetstorage.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/datastax/azuredeploy.json b/datastax/azuredeploy.json index 79160f9a9cb4..7d7648235b48 100644 --- a/datastax/azuredeploy.json +++ b/datastax/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nodeCount": { diff --git a/datastax/azuredeploy.parameters.json b/datastax/azuredeploy.parameters.json index 0e4705425d98..efa7d24633ca 100644 --- a/datastax/azuredeploy.parameters.json +++ b/datastax/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "nodeCount": { diff --git a/datastax/nested/nodes.json b/datastax/nested/nodes.json index 4908a3e425e2..32a2f0c1e27c 100644 --- a/datastax/nested/nodes.json +++ b/datastax/nested/nodes.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/datastax/nested/opscenter.json b/datastax/nested/opscenter.json index aa97b1e6ca7e..68b954738241 100644 --- a/datastax/nested/opscenter.json +++ b/datastax/nested/opscenter.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/deis-cluster-coreos/azuredeploy.json b/deis-cluster-coreos/azuredeploy.json index 55a4d13cf17a..bf3309e86353 100644 --- a/deis-cluster-coreos/azuredeploy.json +++ b/deis-cluster-coreos/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/deis-cluster-coreos/azuredeploy.parameters.json b/deis-cluster-coreos/azuredeploy.parameters.json index 5b60a144f8d5..694d751c6684 100644 --- a/deis-cluster-coreos/azuredeploy.parameters.json +++ b/deis-cluster-coreos/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.1", "parameters": { "newStorageAccountName": { diff --git a/devopstools-jenkins-chefhabitat-kubernetes/azuredeploy.json b/devopstools-jenkins-chefhabitat-kubernetes/azuredeploy.json index 65d636fc2033..b297b94d85e1 100644 --- a/devopstools-jenkins-chefhabitat-kubernetes/azuredeploy.json +++ b/devopstools-jenkins-chefhabitat-kubernetes/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/devopstools-jenkins-chefhabitat-kubernetes/azuredeploy.parameters.json b/devopstools-jenkins-chefhabitat-kubernetes/azuredeploy.parameters.json index 2b0be762a4cd..84e0625b27d0 100644 --- a/devopstools-jenkins-chefhabitat-kubernetes/azuredeploy.parameters.json +++ b/devopstools-jenkins-chefhabitat-kubernetes/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/devopstools-jenkins-chefhabitat-kubernetes/nested/build-instance.json b/devopstools-jenkins-chefhabitat-kubernetes/nested/build-instance.json index 473f918d8ec6..1661a689c19d 100644 --- a/devopstools-jenkins-chefhabitat-kubernetes/nested/build-instance.json +++ b/devopstools-jenkins-chefhabitat-kubernetes/nested/build-instance.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "buildInstanceSettings": { diff --git a/devopstools-jenkins-chefhabitat-kubernetes/nested/jenkins-jobs.json b/devopstools-jenkins-chefhabitat-kubernetes/nested/jenkins-jobs.json index c44f82bc1d2f..e9e741b89188 100644 --- a/devopstools-jenkins-chefhabitat-kubernetes/nested/jenkins-jobs.json +++ b/devopstools-jenkins-chefhabitat-kubernetes/nested/jenkins-jobs.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "jenkinsSettings": { diff --git a/devopstools-jenkins-chefhabitat-kubernetes/nested/jenkins.json b/devopstools-jenkins-chefhabitat-kubernetes/nested/jenkins.json index e17f4cdd2465..d2c05f62e76f 100644 --- a/devopstools-jenkins-chefhabitat-kubernetes/nested/jenkins.json +++ b/devopstools-jenkins-chefhabitat-kubernetes/nested/jenkins.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "jenkinsSettings": { diff --git a/devopstools-jenkins-chefhabitat-terraform/azuredeploy.json b/devopstools-jenkins-chefhabitat-terraform/azuredeploy.json index 854267826990..77b41e3e0114 100644 --- a/devopstools-jenkins-chefhabitat-terraform/azuredeploy.json +++ b/devopstools-jenkins-chefhabitat-terraform/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/devopstools-jenkins-chefhabitat-terraform/azuredeploy.parameters.json b/devopstools-jenkins-chefhabitat-terraform/azuredeploy.parameters.json index 82eaff3d1cb6..262e4fe404fc 100644 --- a/devopstools-jenkins-chefhabitat-terraform/azuredeploy.parameters.json +++ b/devopstools-jenkins-chefhabitat-terraform/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/devopstools-jenkins-chefhabitat-terraform/nested/build-instance.json b/devopstools-jenkins-chefhabitat-terraform/nested/build-instance.json index bf8f4e94f925..c4ff5ef014b8 100644 --- a/devopstools-jenkins-chefhabitat-terraform/nested/build-instance.json +++ b/devopstools-jenkins-chefhabitat-terraform/nested/build-instance.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "buildInstanceSettings": { diff --git a/devopstools-jenkins-chefhabitat-terraform/nested/jenkins-jobs.json b/devopstools-jenkins-chefhabitat-terraform/nested/jenkins-jobs.json index 0a7f7ebe2d87..372efa5749fc 100644 --- a/devopstools-jenkins-chefhabitat-terraform/nested/jenkins-jobs.json +++ b/devopstools-jenkins-chefhabitat-terraform/nested/jenkins-jobs.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "jenkinsSettings": { diff --git a/devopstools-jenkins-chefhabitat-terraform/nested/jenkins.json b/devopstools-jenkins-chefhabitat-terraform/nested/jenkins.json index d483cceaf9c9..724d066f3a1e 100644 --- a/devopstools-jenkins-chefhabitat-terraform/nested/jenkins.json +++ b/devopstools-jenkins-chefhabitat-terraform/nested/jenkins.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "jenkinsSettings": { diff --git a/devtest-p2s-iis/azuredeploy.json b/devtest-p2s-iis/azuredeploy.json index 08e8f09f9609..bc3f45fa0ead 100644 --- a/devtest-p2s-iis/azuredeploy.json +++ b/devtest-p2s-iis/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "environmentPrefix": { diff --git a/devtest-p2s-iis/azuredeploy.parameters.json b/devtest-p2s-iis/azuredeploy.parameters.json index d73acdf71f11..89e839d3ce7c 100644 --- a/devtest-p2s-iis/azuredeploy.parameters.json +++ b/devtest-p2s-iis/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "environmentPrefix": { diff --git a/diagnostics-eventhub-elk/azuredeploy.json b/diagnostics-eventhub-elk/azuredeploy.json index 80c0aa803efd..e50c9599a7b8 100644 --- a/diagnostics-eventhub-elk/azuredeploy.json +++ b/diagnostics-eventhub-elk/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "esClusterName": { diff --git a/diagnostics-eventhub-elk/azuredeploy.parameters.json b/diagnostics-eventhub-elk/azuredeploy.parameters.json index 048f03bbe55e..03fdb8c738b6 100644 --- a/diagnostics-eventhub-elk/azuredeploy.parameters.json +++ b/diagnostics-eventhub-elk/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/diagnostics-with-elk/azuredeploy.json b/diagnostics-with-elk/azuredeploy.json index 9925d0fe869f..1866c0b8f50b 100644 --- a/diagnostics-with-elk/azuredeploy.json +++ b/diagnostics-with-elk/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "esClusterName": { diff --git a/diagnostics-with-elk/azuredeploy.parameters.json b/diagnostics-with-elk/azuredeploy.parameters.json index 21fb82740526..d8ecb40df61d 100644 --- a/diagnostics-with-elk/azuredeploy.parameters.json +++ b/diagnostics-with-elk/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/diskraid-ubuntu-vm/azuredeploy.json b/diskraid-ubuntu-vm/azuredeploy.json index ee7936bebcea..378526348d54 100644 --- a/diskraid-ubuntu-vm/azuredeploy.json +++ b/diskraid-ubuntu-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/diskraid-ubuntu-vm/azuredeploy.parameters.json b/diskraid-ubuntu-vm/azuredeploy.parameters.json index f9310b6565a3..72873b4c2a7f 100644 --- a/diskraid-ubuntu-vm/azuredeploy.parameters.json +++ b/diskraid-ubuntu-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsName": { diff --git a/django-app/azuredeploy.json b/django-app/azuredeploy.json index af44dd34e4cf..29aad4fcc8a5 100644 --- a/django-app/azuredeploy.json +++ b/django-app/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/django-app/azuredeploy.parameters.json b/django-app/azuredeploy.parameters.json index b25664691d4a..7060b13c88df 100644 --- a/django-app/azuredeploy.parameters.json +++ b/django-app/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/dlworkspace-deployment/azuredeploy.json b/dlworkspace-deployment/azuredeploy.json index 39778e382bea..20a9a87e8dcc 100755 --- a/dlworkspace-deployment/azuredeploy.json +++ b/dlworkspace-deployment/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterNameDesired": { diff --git a/dlworkspace-deployment/azuredeploy.parameters.json b/dlworkspace-deployment/azuredeploy.parameters.json index 7ee74b91765d..c1323e0d885c 100755 --- a/dlworkspace-deployment/azuredeploy.parameters.json +++ b/dlworkspace-deployment/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/dns-records-office365/azuredeploy.json b/dns-records-office365/azuredeploy.json index 68514c2005b3..a3aa674eddee 100644 --- a/dns-records-office365/azuredeploy.json +++ b/dns-records-office365/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsZoneName": { diff --git a/dns-records-office365/azuredeploy.parameters.json b/dns-records-office365/azuredeploy.parameters.json index d67998aec67e..3fe61680a3ba 100644 --- a/dns-records-office365/azuredeploy.parameters.json +++ b/dns-records-office365/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsZoneName": { diff --git a/dns-records-office365/mail.json b/dns-records-office365/mail.json index 67ebd555e524..1dd0360ab04c 100644 --- a/dns-records-office365/mail.json +++ b/dns-records-office365/mail.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsZoneName": { diff --git a/dns-records-office365/mdm.json b/dns-records-office365/mdm.json index d05cb21189f0..9ddedda0b27f 100644 --- a/dns-records-office365/mdm.json +++ b/dns-records-office365/mdm.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsZoneName": { diff --git a/dns-records-office365/sfb.json b/dns-records-office365/sfb.json index 1df32b819d39..17a2953c5e1f 100644 --- a/dns-records-office365/sfb.json +++ b/dns-records-office365/sfb.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsZoneName": { diff --git a/dnx-on-ubuntu/azuredeploy.json b/dnx-on-ubuntu/azuredeploy.json index 217a362a0916..379c9f0d5c72 100644 --- a/dnx-on-ubuntu/azuredeploy.json +++ b/dnx-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmAdminUsername": { diff --git a/dnx-on-ubuntu/azuredeploy.parameters.json b/dnx-on-ubuntu/azuredeploy.parameters.json index f89ce285f0d4..a32625716f29 100644 --- a/dnx-on-ubuntu/azuredeploy.parameters.json +++ b/dnx-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmAdminUsername": { diff --git a/docker-ckan/azuredeploy.json b/docker-ckan/azuredeploy.json index c2446e3c9fde..8c596bde9cce 100644 --- a/docker-ckan/azuredeploy.json +++ b/docker-ckan/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/docker-ckan/azuredeploy.parameters.json b/docker-ckan/azuredeploy.parameters.json index b3cc8d8eb5bb..5ee207452088 100644 --- a/docker-ckan/azuredeploy.parameters.json +++ b/docker-ckan/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/docker-kibana-elasticsearch/azuredeploy.json b/docker-kibana-elasticsearch/azuredeploy.json index 992d2949a9ff..3a51a75849d9 100644 --- a/docker-kibana-elasticsearch/azuredeploy.json +++ b/docker-kibana-elasticsearch/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/docker-kibana-elasticsearch/azuredeploy.parameters.json b/docker-kibana-elasticsearch/azuredeploy.parameters.json index b3cc8d8eb5bb..5ee207452088 100644 --- a/docker-kibana-elasticsearch/azuredeploy.parameters.json +++ b/docker-kibana-elasticsearch/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/docker-neo4j/azuredeploy.json b/docker-neo4j/azuredeploy.json index 35be45e0a40e..1027fa76f33f 100644 --- a/docker-neo4j/azuredeploy.json +++ b/docker-neo4j/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/docker-neo4j/azuredeploy.parameters.json b/docker-neo4j/azuredeploy.parameters.json index 6e8c53e62b8a..16e103b050fa 100644 --- a/docker-neo4j/azuredeploy.parameters.json +++ b/docker-neo4j/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/docker-parse/azuredeploy.json b/docker-parse/azuredeploy.json index bf5e52ab8345..183b77e124e7 100644 --- a/docker-parse/azuredeploy.json +++ b/docker-parse/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmSize": { diff --git a/docker-parse/azuredeploy.parameters.json b/docker-parse/azuredeploy.parameters.json index 1bf2ee13ecdc..e9828f67d5d8 100644 --- a/docker-parse/azuredeploy.parameters.json +++ b/docker-parse/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmSize": { diff --git a/docker-rancher/azuredeploy.json b/docker-rancher/azuredeploy.json index 714b50142e8d..ce0bd2aacae0 100644 --- a/docker-rancher/azuredeploy.json +++ b/docker-rancher/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/docker-rancher/azuredeploy.parameters.json b/docker-rancher/azuredeploy.parameters.json index 7486e00fe2c8..b71e8aca07ce 100644 --- a/docker-rancher/azuredeploy.parameters.json +++ b/docker-rancher/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/docker-rancher/nodes.json b/docker-rancher/nodes.json index 7468ada051a6..d4fa236e0c89 100644 --- a/docker-rancher/nodes.json +++ b/docker-rancher/nodes.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/docker-rancher/server.json b/docker-rancher/server.json index 195f0c37699c..5de994871ada 100644 --- a/docker-rancher/server.json +++ b/docker-rancher/server.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/docker-simple-on-ubuntu/azuredeploy.json b/docker-simple-on-ubuntu/azuredeploy.json index e6a7948ea5fc..3270048e8841 100644 --- a/docker-simple-on-ubuntu/azuredeploy.json +++ b/docker-simple-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/docker-simple-on-ubuntu/azuredeploy.parameters.json b/docker-simple-on-ubuntu/azuredeploy.parameters.json index e04fa22b6981..c85af696362f 100644 --- a/docker-simple-on-ubuntu/azuredeploy.parameters.json +++ b/docker-simple-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/docker-swarm-cluster/azuredeploy.json b/docker-swarm-cluster/azuredeploy.json index e2fc7109cc27..3eae727c86be 100644 --- a/docker-swarm-cluster/azuredeploy.json +++ b/docker-swarm-cluster/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sshPublicKey": { diff --git a/docker-swarm-cluster/azuredeploy.parameters.json b/docker-swarm-cluster/azuredeploy.parameters.json index cbbc7c328515..475b1fce8d20 100644 --- a/docker-swarm-cluster/azuredeploy.parameters.json +++ b/docker-swarm-cluster/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sshPublicKey": { diff --git a/docker-wordpress-mysql/azuredeploy.json b/docker-wordpress-mysql/azuredeploy.json index 842ddd8ff304..da7cc34abda3 100644 --- a/docker-wordpress-mysql/azuredeploy.json +++ b/docker-wordpress-mysql/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/docker-wordpress-mysql/azuredeploy.parameters.json b/docker-wordpress-mysql/azuredeploy.parameters.json index d192fb77c6e9..ba39a3aff361 100644 --- a/docker-wordpress-mysql/azuredeploy.parameters.json +++ b/docker-wordpress-mysql/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/dokku-vm/azuredeploy.json b/dokku-vm/azuredeploy.json index ba549edbaa08..b1abc0ad9464 100644 --- a/dokku-vm/azuredeploy.json +++ b/dokku-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/dokku-vm/azuredeploy.parameters.json b/dokku-vm/azuredeploy.parameters.json index df3ab287b2fd..0c46ee2749d2 100644 --- a/dokku-vm/azuredeploy.parameters.json +++ b/dokku-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/drone-ubuntu-vm/azuredeploy.json b/drone-ubuntu-vm/azuredeploy.json index 1998e285e9ad..62cbcae8b38b 100644 --- a/drone-ubuntu-vm/azuredeploy.json +++ b/drone-ubuntu-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/drone-ubuntu-vm/azuredeploy.parameters.json b/drone-ubuntu-vm/azuredeploy.parameters.json index 2ca6a17db7c1..8056cd2609f7 100644 --- a/drone-ubuntu-vm/azuredeploy.parameters.json +++ b/drone-ubuntu-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/dsc-extension-azure-automation-pullserver/azuredeploy.json b/dsc-extension-azure-automation-pullserver/azuredeploy.json index ed73fb7aa9b0..cd46066f2a46 100644 --- a/dsc-extension-azure-automation-pullserver/azuredeploy.json +++ b/dsc-extension-azure-automation-pullserver/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/dsc-extension-azure-automation-pullserver/azuredeploy.parameters.json b/dsc-extension-azure-automation-pullserver/azuredeploy.parameters.json index adf5d89f474e..9c7332e54c79 100644 --- a/dsc-extension-azure-automation-pullserver/azuredeploy.parameters.json +++ b/dsc-extension-azure-automation-pullserver/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/dsc-extension-iis-server-windows-vm/azuredeploy.json b/dsc-extension-iis-server-windows-vm/azuredeploy.json index f49ae6cd519d..727f93972aa8 100644 --- a/dsc-extension-iis-server-windows-vm/azuredeploy.json +++ b/dsc-extension-iis-server-windows-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "diskType": { diff --git a/dsc-extension-iis-server-windows-vm/azuredeploy.parameters.json b/dsc-extension-iis-server-windows-vm/azuredeploy.parameters.json index 0e78595d351c..48f8e119bc5d 100644 --- a/dsc-extension-iis-server-windows-vm/azuredeploy.parameters.json +++ b/dsc-extension-iis-server-windows-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "diskType": { diff --git a/dsc-pullserver-to-win-server/azuredeploy.json b/dsc-pullserver-to-win-server/azuredeploy.json index 4057d8ecd88f..23de7ee1796f 100644 --- a/dsc-pullserver-to-win-server/azuredeploy.json +++ b/dsc-pullserver-to-win-server/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccount": { diff --git a/dsc-pullserver-to-win-server/azuredeploy.parameters.json b/dsc-pullserver-to-win-server/azuredeploy.parameters.json index 0d8ba812b048..341ff78ed8fd 100644 --- a/dsc-pullserver-to-win-server/azuredeploy.parameters.json +++ b/dsc-pullserver-to-win-server/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccount": { diff --git a/e-shop-website-with-ilb-ase/azuredeploy.json b/e-shop-website-with-ilb-ase/azuredeploy.json index 89244866717f..90f2e34908be 100644 --- a/e-shop-website-with-ilb-ase/azuredeploy.json +++ b/e-shop-website-with-ilb-ase/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingASEName": { diff --git a/e-shop-website-with-ilb-ase/azuredeploy.parameters.json b/e-shop-website-with-ilb-ase/azuredeploy.parameters.json index 525209917c4f..7d6cc07bf2d7 100644 --- a/e-shop-website-with-ilb-ase/azuredeploy.parameters.json +++ b/e-shop-website-with-ilb-ase/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingASEName": { diff --git a/e-shop-website-with-ilb-ase/prereqs/prereq.azuredeploy.json b/e-shop-website-with-ilb-ase/prereqs/prereq.azuredeploy.json index 133999be3e33..3b3896e0a76a 100644 --- a/e-shop-website-with-ilb-ase/prereqs/prereq.azuredeploy.json +++ b/e-shop-website-with-ilb-ase/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/e-shop-website-with-ilb-ase/prereqs/prereq.azuredeploy.parameters.json b/e-shop-website-with-ilb-ase/prereqs/prereq.azuredeploy.parameters.json index e31a70eede36..b6ab2e5ce0de 100644 --- a/e-shop-website-with-ilb-ase/prereqs/prereq.azuredeploy.parameters.json +++ b/e-shop-website-with-ilb-ase/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "name": { diff --git a/elasticsearch-centos-3node/azuredeploy.json b/elasticsearch-centos-3node/azuredeploy.json index 3ed60f331529..343328ee8c57 100644 --- a/elasticsearch-centos-3node/azuredeploy.json +++ b/elasticsearch-centos-3node/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch-centos-3node/azuredeploy.parameters.json b/elasticsearch-centos-3node/azuredeploy.parameters.json index 66a59ccf0a6c..494a6ce28552 100644 --- a/elasticsearch-centos-3node/azuredeploy.parameters.json +++ b/elasticsearch-centos-3node/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { diff --git a/elasticsearch-jmeter/azuredeploy.json b/elasticsearch-jmeter/azuredeploy.json index 1f0fc2250c7a..512de61bb782 100644 --- a/elasticsearch-jmeter/azuredeploy.json +++ b/elasticsearch-jmeter/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch-jmeter/azuredeploy.parameters.json b/elasticsearch-jmeter/azuredeploy.parameters.json index 33e634f735f6..31d78675ede7 100644 --- a/elasticsearch-jmeter/azuredeploy.parameters.json +++ b/elasticsearch-jmeter/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch-jmeter/prereqs/prereq.azuredeploy.json b/elasticsearch-jmeter/prereqs/prereq.azuredeploy.json index 3b14b27bab27..fc7b3dad0bf1 100644 --- a/elasticsearch-jmeter/prereqs/prereq.azuredeploy.json +++ b/elasticsearch-jmeter/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminPassword": { diff --git a/elasticsearch-jmeter/prereqs/prereq.azuredeploy.parameters.json b/elasticsearch-jmeter/prereqs/prereq.azuredeploy.parameters.json index bca8952e6b01..84b0b7da805a 100644 --- a/elasticsearch-jmeter/prereqs/prereq.azuredeploy.parameters.json +++ b/elasticsearch-jmeter/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminPassword": { diff --git a/elasticsearch-vmss/azuredeploy.json b/elasticsearch-vmss/azuredeploy.json index ff1c7192fc57..945aa5643832 100644 --- a/elasticsearch-vmss/azuredeploy.json +++ b/elasticsearch-vmss/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/elasticsearch-vmss/azuredeploy.parameters.json b/elasticsearch-vmss/azuredeploy.parameters.json index 78486f349ece..92cc172e8388 100644 --- a/elasticsearch-vmss/azuredeploy.parameters.json +++ b/elasticsearch-vmss/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmssName": { diff --git a/elasticsearch/azuredeploy.json b/elasticsearch/azuredeploy.json index bffcdb28ae59..2a2e7d24ae06 100644 --- a/elasticsearch/azuredeploy.json +++ b/elasticsearch/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/azuredeploy.parameters.json b/elasticsearch/azuredeploy.parameters.json index 1f9be9ff05b6..2c092394e890 100644 --- a/elasticsearch/azuredeploy.parameters.json +++ b/elasticsearch/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/nestedtemplates/client-nodes-resources.json b/elasticsearch/nestedtemplates/client-nodes-resources.json index ff1bcf5cb90b..148b3b513a54 100644 --- a/elasticsearch/nestedtemplates/client-nodes-resources.json +++ b/elasticsearch/nestedtemplates/client-nodes-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/nestedtemplates/data-nodes-0disk-resources.json b/elasticsearch/nestedtemplates/data-nodes-0disk-resources.json index d81075c184ba..17ec64f51633 100644 --- a/elasticsearch/nestedtemplates/data-nodes-0disk-resources.json +++ b/elasticsearch/nestedtemplates/data-nodes-0disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/nestedtemplates/data-nodes-16disk-resources.json b/elasticsearch/nestedtemplates/data-nodes-16disk-resources.json index c027d823cfa6..bd1f94e5671a 100644 --- a/elasticsearch/nestedtemplates/data-nodes-16disk-resources.json +++ b/elasticsearch/nestedtemplates/data-nodes-16disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/nestedtemplates/data-nodes-2disk-resources.json b/elasticsearch/nestedtemplates/data-nodes-2disk-resources.json index 868c308ad0a3..c62b21cabafa 100644 --- a/elasticsearch/nestedtemplates/data-nodes-2disk-resources.json +++ b/elasticsearch/nestedtemplates/data-nodes-2disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/nestedtemplates/data-nodes-4disk-resources.json b/elasticsearch/nestedtemplates/data-nodes-4disk-resources.json index 4acd07b57cfe..a098335f48ce 100644 --- a/elasticsearch/nestedtemplates/data-nodes-4disk-resources.json +++ b/elasticsearch/nestedtemplates/data-nodes-4disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/nestedtemplates/data-nodes-8disk-resources.json b/elasticsearch/nestedtemplates/data-nodes-8disk-resources.json index 0e91e3168c3e..0905d34902e2 100644 --- a/elasticsearch/nestedtemplates/data-nodes-8disk-resources.json +++ b/elasticsearch/nestedtemplates/data-nodes-8disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/nestedtemplates/empty-resources.json b/elasticsearch/nestedtemplates/empty-resources.json index 842155115f28..77b482a0dffd 100644 --- a/elasticsearch/nestedtemplates/empty-resources.json +++ b/elasticsearch/nestedtemplates/empty-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "subnet": { diff --git a/elasticsearch/nestedtemplates/jumpbox-resources.json b/elasticsearch/nestedtemplates/jumpbox-resources.json index 88165a1c26ee..008a92bf1a60 100644 --- a/elasticsearch/nestedtemplates/jumpbox-resources.json +++ b/elasticsearch/nestedtemplates/jumpbox-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "namespace": { diff --git a/elasticsearch/nestedtemplates/kibana-resources.json b/elasticsearch/nestedtemplates/kibana-resources.json index 6c5b9c0106d4..257a59a87d79 100644 --- a/elasticsearch/nestedtemplates/kibana-resources.json +++ b/elasticsearch/nestedtemplates/kibana-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "namespace": { diff --git a/elasticsearch/nestedtemplates/marvel-nodes-resources.json b/elasticsearch/nestedtemplates/marvel-nodes-resources.json index d2228159ef5c..634be6cb9b12 100644 --- a/elasticsearch/nestedtemplates/marvel-nodes-resources.json +++ b/elasticsearch/nestedtemplates/marvel-nodes-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/nestedtemplates/master-nodes-resources.json b/elasticsearch/nestedtemplates/master-nodes-resources.json index 5fc7dea87c80..f9679947cad0 100644 --- a/elasticsearch/nestedtemplates/master-nodes-resources.json +++ b/elasticsearch/nestedtemplates/master-nodes-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/nestedtemplates/shared-resources.json b/elasticsearch/nestedtemplates/shared-resources.json index 4e007042820c..72a96ad80df9 100644 --- a/elasticsearch/nestedtemplates/shared-resources.json +++ b/elasticsearch/nestedtemplates/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "networkSettings": { diff --git a/elasticsearch/test/client-nodes-resources.json b/elasticsearch/test/client-nodes-resources.json index 8f86cf901bd0..8142d2b79717 100644 --- a/elasticsearch/test/client-nodes-resources.json +++ b/elasticsearch/test/client-nodes-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/test/data-nodes-0disk-resources.json b/elasticsearch/test/data-nodes-0disk-resources.json index 0dfe77ef97c5..f4cf13265c18 100644 --- a/elasticsearch/test/data-nodes-0disk-resources.json +++ b/elasticsearch/test/data-nodes-0disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/test/data-nodes-16disk-resources.json b/elasticsearch/test/data-nodes-16disk-resources.json index 0dfe77ef97c5..f4cf13265c18 100644 --- a/elasticsearch/test/data-nodes-16disk-resources.json +++ b/elasticsearch/test/data-nodes-16disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/test/data-nodes-2disk-resources.json b/elasticsearch/test/data-nodes-2disk-resources.json index 0dfe77ef97c5..f4cf13265c18 100644 --- a/elasticsearch/test/data-nodes-2disk-resources.json +++ b/elasticsearch/test/data-nodes-2disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/test/data-nodes-4disk-resources.json b/elasticsearch/test/data-nodes-4disk-resources.json index 0dfe77ef97c5..f4cf13265c18 100644 --- a/elasticsearch/test/data-nodes-4disk-resources.json +++ b/elasticsearch/test/data-nodes-4disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/test/data-nodes-8disk-resources.json b/elasticsearch/test/data-nodes-8disk-resources.json index 0dfe77ef97c5..f4cf13265c18 100644 --- a/elasticsearch/test/data-nodes-8disk-resources.json +++ b/elasticsearch/test/data-nodes-8disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/test/empty-resources.json b/elasticsearch/test/empty-resources.json index 50889175bdb3..216f4e5ae667 100644 --- a/elasticsearch/test/empty-resources.json +++ b/elasticsearch/test/empty-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "subnet": { diff --git a/elasticsearch/test/jumpbox-resources.json b/elasticsearch/test/jumpbox-resources.json index 38205e1e479c..2eb267fce781 100644 --- a/elasticsearch/test/jumpbox-resources.json +++ b/elasticsearch/test/jumpbox-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "namespace": { diff --git a/elasticsearch/test/kibana-resources.json b/elasticsearch/test/kibana-resources.json index c9b3154efeff..c027ccdfef89 100644 --- a/elasticsearch/test/kibana-resources.json +++ b/elasticsearch/test/kibana-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "namespace": { diff --git a/elasticsearch/test/master-nodes-resources.json b/elasticsearch/test/master-nodes-resources.json index 8b5eb18aeda6..5f1da0650d41 100644 --- a/elasticsearch/test/master-nodes-resources.json +++ b/elasticsearch/test/master-nodes-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/elasticsearch/test/shared-resources.json b/elasticsearch/test/shared-resources.json index 739fff1a2d89..f16258fe2c4b 100644 --- a/elasticsearch/test/shared-resources.json +++ b/elasticsearch/test/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "networkSettings": { diff --git a/elasticsearch/tmpl/data-nodes.yml b/elasticsearch/tmpl/data-nodes.yml index f8059b6872fb..43166b26f196 100644 --- a/elasticsearch/tmpl/data-nodes.yml +++ b/elasticsearch/tmpl/data-nodes.yml @@ -1,4 +1,4 @@ -"$schema": https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json# +"$schema": https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json# contentVersion: 1.0.0.0 parameters: adminUsername: diff --git a/episerver-cms-in-azure/azuredeploy.json b/episerver-cms-in-azure/azuredeploy.json index 5458481daf1c..38a0ff935f35 100644 --- a/episerver-cms-in-azure/azuredeploy.json +++ b/episerver-cms-in-azure/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "WebApplicationWebAppName": { diff --git a/episerver-cms-in-azure/azuredeploy.parameters.json b/episerver-cms-in-azure/azuredeploy.parameters.json index 3f73b516af24..41ec428fe041 100644 --- a/episerver-cms-in-azure/azuredeploy.parameters.json +++ b/episerver-cms-in-azure/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "WebApplicationWebAppName": { diff --git a/eris-platform/azuredeploy.json b/eris-platform/azuredeploy.json index 9aa112d1821b..cc5653f292ab 100644 --- a/eris-platform/azuredeploy.json +++ b/eris-platform/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/eris-platform/azuredeploy.parameters.json b/eris-platform/azuredeploy.parameters.json index 749a49971dad..60bd0a7937a9 100644 --- a/eris-platform/azuredeploy.parameters.json +++ b/eris-platform/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/eset-vm-extension/azuredeploy.json b/eset-vm-extension/azuredeploy.json index 4e6dd7c94675..14973d58b510 100644 --- a/eset-vm-extension/azuredeploy.json +++ b/eset-vm-extension/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/eset-vm-extension/azuredeploy.parameters.json b/eset-vm-extension/azuredeploy.parameters.json index 24578fb65d98..221fae88686a 100644 --- a/eset-vm-extension/azuredeploy.parameters.json +++ b/eset-vm-extension/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/ethereum-cpp-on-ubuntu/azuredeploy.json b/ethereum-cpp-on-ubuntu/azuredeploy.json index 204c3680b16b..7cb21c924ae6 100644 --- a/ethereum-cpp-on-ubuntu/azuredeploy.json +++ b/ethereum-cpp-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountNamePrefix": { diff --git a/ethereum-cpp-on-ubuntu/azuredeploy.parameters.json b/ethereum-cpp-on-ubuntu/azuredeploy.parameters.json index 7a86e916905e..835f817ea341 100644 --- a/ethereum-cpp-on-ubuntu/azuredeploy.parameters.json +++ b/ethereum-cpp-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountNamePrefix": { diff --git a/ethereum-studio-docker-standalone-ubuntu/azuredeploy.json b/ethereum-studio-docker-standalone-ubuntu/azuredeploy.json index a8e85d405a2c..a71ce8aa2667 100644 --- a/ethereum-studio-docker-standalone-ubuntu/azuredeploy.json +++ b/ethereum-studio-docker-standalone-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/ethereum-studio-docker-standalone-ubuntu/azuredeploy.parameters.json b/ethereum-studio-docker-standalone-ubuntu/azuredeploy.parameters.json index 06823edb8c93..d55343e7cb4c 100644 --- a/ethereum-studio-docker-standalone-ubuntu/azuredeploy.parameters.json +++ b/ethereum-studio-docker-standalone-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/github-enterprise/azuredeploy.json b/github-enterprise/azuredeploy.json index 0c944bca0072..5024c5e0c3cd 100644 --- a/github-enterprise/azuredeploy.json +++ b/github-enterprise/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "accountPrefix": { diff --git a/github-enterprise/azuredeploy.parameters.json b/github-enterprise/azuredeploy.parameters.json index 91ee3949b740..e1d5ab05ce4d 100644 --- a/github-enterprise/azuredeploy.parameters.json +++ b/github-enterprise/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "accountPrefix": { diff --git a/glassfish-on-suse/azuredeploy.json b/glassfish-on-suse/azuredeploy.json index 1dc14424ecc6..3bf35c497917 100644 --- a/glassfish-on-suse/azuredeploy.json +++ b/glassfish-on-suse/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { diff --git a/glassfish-on-suse/azuredeploy.parameters.json b/glassfish-on-suse/azuredeploy.parameters.json index 0f8d8d036b20..04f0adc6703d 100644 --- a/glassfish-on-suse/azuredeploy.parameters.json +++ b/glassfish-on-suse/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "glassfishVersion": { diff --git a/glassfish-on-suse/nestedtemplates/azuredeploy.json b/glassfish-on-suse/nestedtemplates/azuredeploy.json index 348514350531..de7aae9b465a 100644 --- a/glassfish-on-suse/nestedtemplates/azuredeploy.json +++ b/glassfish-on-suse/nestedtemplates/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { diff --git a/gluster-file-system/azuredeploy.json b/gluster-file-system/azuredeploy.json index c10e7846db78..06dc8110bc8d 100644 --- a/gluster-file-system/azuredeploy.json +++ b/gluster-file-system/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "hostOs": { diff --git a/gluster-file-system/azuredeploy.parameters.json b/gluster-file-system/azuredeploy.parameters.json index 28184dda4182..eb8814b0e30f 100644 --- a/gluster-file-system/azuredeploy.parameters.json +++ b/gluster-file-system/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/go-ethereum-on-ubuntu/azuredeploy.json b/go-ethereum-on-ubuntu/azuredeploy.json index afe6532f6608..ffb055bde411 100644 --- a/go-ethereum-on-ubuntu/azuredeploy.json +++ b/go-ethereum-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountNamePrefix": { diff --git a/go-ethereum-on-ubuntu/azuredeploy.parameters.json b/go-ethereum-on-ubuntu/azuredeploy.parameters.json index 7a86e916905e..835f817ea341 100644 --- a/go-ethereum-on-ubuntu/azuredeploy.parameters.json +++ b/go-ethereum-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountNamePrefix": { diff --git a/go-expanse-on-ubuntu/azuredeploy.json b/go-expanse-on-ubuntu/azuredeploy.json index f2f0d9769b46..f31c86fcc620 100644 --- a/go-expanse-on-ubuntu/azuredeploy.json +++ b/go-expanse-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/go-expanse-on-ubuntu/azuredeploy.parameters.json b/go-expanse-on-ubuntu/azuredeploy.parameters.json index 1271f825ba1a..b18eb8b6c842 100644 --- a/go-expanse-on-ubuntu/azuredeploy.parameters.json +++ b/go-expanse-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/gobuffalo/azuredeploy.json b/gobuffalo/azuredeploy.json index f1cf85c1ca62..529569d329a3 100644 --- a/gobuffalo/azuredeploy.json +++ b/gobuffalo/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location" : { diff --git a/gobuffalo/azuredeploy.parameters.json b/gobuffalo/azuredeploy.parameters.json index ad8228b052f6..f9b740da6425 100644 --- a/gobuffalo/azuredeploy.parameters.json +++ b/gobuffalo/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "databaseAdministratorLogin": { diff --git a/guacamole-rdp-vnc-gateway-existing-vnet/azuredeploy.json b/guacamole-rdp-vnc-gateway-existing-vnet/azuredeploy.json index e9c9ff9db96c..0e71a42b62f7 100644 --- a/guacamole-rdp-vnc-gateway-existing-vnet/azuredeploy.json +++ b/guacamole-rdp-vnc-gateway-existing-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVNETLocation": { diff --git a/guacamole-rdp-vnc-gateway-existing-vnet/azuredeploy.parameters.json b/guacamole-rdp-vnc-gateway-existing-vnet/azuredeploy.parameters.json index 73384615fc7c..29a65b71b4d7 100644 --- a/guacamole-rdp-vnc-gateway-existing-vnet/azuredeploy.parameters.json +++ b/guacamole-rdp-vnc-gateway-existing-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVNETLocation": { diff --git a/guacamole-rdp-vnc-gateway-existing-vnet/prereqs/prereq.azuredeploy.json b/guacamole-rdp-vnc-gateway-existing-vnet/prereqs/prereq.azuredeploy.json index ba2e4473c113..3207f93593fd 100644 --- a/guacamole-rdp-vnc-gateway-existing-vnet/prereqs/prereq.azuredeploy.json +++ b/guacamole-rdp-vnc-gateway-existing-vnet/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/guacamole-rdp-vnc-gateway-existing-vnet/prereqs/prereq.azuredeploy.parameters.json b/guacamole-rdp-vnc-gateway-existing-vnet/prereqs/prereq.azuredeploy.parameters.json index 35b6135f26b5..26a013c893ba 100644 --- a/guacamole-rdp-vnc-gateway-existing-vnet/prereqs/prereq.azuredeploy.parameters.json +++ b/guacamole-rdp-vnc-gateway-existing-vnet/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": {} } \ No newline at end of file diff --git a/haproxy-redundant-floatingip-ubuntu/azuredeploy.json b/haproxy-redundant-floatingip-ubuntu/azuredeploy.json index 87d7865a40ba..da20e16fb01a 100644 --- a/haproxy-redundant-floatingip-ubuntu/azuredeploy.json +++ b/haproxy-redundant-floatingip-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/haproxy-redundant-floatingip-ubuntu/azuredeploy.parameters.json b/haproxy-redundant-floatingip-ubuntu/azuredeploy.parameters.json index 2caf25e51fd3..6db852c193c8 100644 --- a/haproxy-redundant-floatingip-ubuntu/azuredeploy.parameters.json +++ b/haproxy-redundant-floatingip-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/hazelcast-vm-cluster/azuredeploy.json b/hazelcast-vm-cluster/azuredeploy.json index 46e9dc8a2d4e..316005ee32cb 100644 --- a/hazelcast-vm-cluster/azuredeploy.json +++ b/hazelcast-vm-cluster/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/hazelcast-vm-cluster/azuredeploy.parameters.json b/hazelcast-vm-cluster/azuredeploy.parameters.json index cc8e6c12b230..4357f593ff42 100644 --- a/hazelcast-vm-cluster/azuredeploy.parameters.json +++ b/hazelcast-vm-cluster/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/hazelcast-windows-vm-cluster/azuredeploy.json b/hazelcast-windows-vm-cluster/azuredeploy.json index 971bad975c1e..56081c587eab 100644 --- a/hazelcast-windows-vm-cluster/azuredeploy.json +++ b/hazelcast-windows-vm-cluster/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/hazelcast-windows-vm-cluster/azuredeploy.parameters.json b/hazelcast-windows-vm-cluster/azuredeploy.parameters.json index bea006fb2a29..6bb702d6c455 100644 --- a/hazelcast-windows-vm-cluster/azuredeploy.parameters.json +++ b/hazelcast-windows-vm-cluster/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/hdInsight-apache-spark/azuredeploy.json b/hdInsight-apache-spark/azuredeploy.json index 7e657b92340d..cb810c766cf3 100644 --- a/hdInsight-apache-spark/azuredeploy.json +++ b/hdInsight-apache-spark/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/hdInsight-apache-spark/azuredeploy.parameters.json b/hdInsight-apache-spark/azuredeploy.parameters.json index 9f16ca15c07c..b7732ac267ac 100644 --- a/hdInsight-apache-spark/azuredeploy.parameters.json +++ b/hdInsight-apache-spark/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/hdinsight-genomics-adam/azuredeploy.json b/hdinsight-genomics-adam/azuredeploy.json index 9bae3ca65514..298a7ac01b38 100644 --- a/hdinsight-genomics-adam/azuredeploy.json +++ b/hdinsight-genomics-adam/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/hdinsight-genomics-adam/azuredeploy.parameters.json b/hdinsight-genomics-adam/azuredeploy.parameters.json index a7c89c286cb3..02f2d58f9b93 100644 --- a/hdinsight-genomics-adam/azuredeploy.parameters.json +++ b/hdinsight-genomics-adam/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/hdinsight-linux-run-script-action/azuredeploy.json b/hdinsight-linux-run-script-action/azuredeploy.json index 1a69552ab09b..c1cc9efa0dd9 100644 --- a/hdinsight-linux-run-script-action/azuredeploy.json +++ b/hdinsight-linux-run-script-action/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterVNetAddressSpace": { diff --git a/hdinsight-linux-run-script-action/azuredeploy.parameters.json b/hdinsight-linux-run-script-action/azuredeploy.parameters.json index aacf1b6231d3..96db7c5fbc33 100644 --- a/hdinsight-linux-run-script-action/azuredeploy.parameters.json +++ b/hdinsight-linux-run-script-action/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/iis-2vm-sql-1vm/azuredeploy.json b/iis-2vm-sql-1vm/azuredeploy.json index 074c91bf52a8..0d1976e784cb 100644 --- a/iis-2vm-sql-1vm/azuredeploy.json +++ b/iis-2vm-sql-1vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { diff --git a/iis-2vm-sql-1vm/azuredeploy.parameters.json b/iis-2vm-sql-1vm/azuredeploy.parameters.json index 9431f8fa7382..e4cbd89967e4 100644 --- a/iis-2vm-sql-1vm/azuredeploy.parameters.json +++ b/iis-2vm-sql-1vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "envPrefixName": { diff --git a/informatica-adf-hdinsight-powerbi/azuredeploy.json b/informatica-adf-hdinsight-powerbi/azuredeploy.json index 19eb4cdd66c4..db11128796bf 100755 --- a/informatica-adf-hdinsight-powerbi/azuredeploy.json +++ b/informatica-adf-hdinsight-powerbi/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/informatica-adf-hdinsight-powerbi/azuredeploy.parameters.json b/informatica-adf-hdinsight-powerbi/azuredeploy.parameters.json index f045731bd412..67db06830d5b 100755 --- a/informatica-adf-hdinsight-powerbi/azuredeploy.parameters.json +++ b/informatica-adf-hdinsight-powerbi/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/informatica-adf-hdinsight-powerbi/nested/azuredatafactory.json b/informatica-adf-hdinsight-powerbi/nested/azuredatafactory.json index 817110ceca7d..882fd0091395 100755 --- a/informatica-adf-hdinsight-powerbi/nested/azuredatafactory.json +++ b/informatica-adf-hdinsight-powerbi/nested/azuredatafactory.json @@ -1,6 +1,6 @@ { "contentVersion": "1.0.0.0", - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "parameters": { "sqlDWServerName": { "type": "string", diff --git a/informatica-adf-hdinsight-powerbi/nested/contcreate-automation.json b/informatica-adf-hdinsight-powerbi/nested/contcreate-automation.json index 99f2933b18ea..a61152316127 100755 --- a/informatica-adf-hdinsight-powerbi/nested/contcreate-automation.json +++ b/informatica-adf-hdinsight-powerbi/nested/contcreate-automation.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "automationAccountName": { diff --git a/informatica-adf-hdinsight-powerbi/nested/createtableautomationjob.json b/informatica-adf-hdinsight-powerbi/nested/createtableautomationjob.json index 3432718a1c0e..c19456796e6d 100755 --- a/informatica-adf-hdinsight-powerbi/nested/createtableautomationjob.json +++ b/informatica-adf-hdinsight-powerbi/nested/createtableautomationjob.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "jobId": { diff --git a/informatica-adf-hdinsight-powerbi/nested/info-csa-extension.json b/informatica-adf-hdinsight-powerbi/nested/info-csa-extension.json index c3672bf3263c..40eeadd38591 100755 --- a/informatica-adf-hdinsight-powerbi/nested/info-csa-extension.json +++ b/informatica-adf-hdinsight-powerbi/nested/info-csa-extension.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/informatica-adf-hdinsight-powerbi/nested/info-nsg.json b/informatica-adf-hdinsight-powerbi/nested/info-nsg.json index 20caadfe3c85..59a6cb7bd270 100755 --- a/informatica-adf-hdinsight-powerbi/nested/info-nsg.json +++ b/informatica-adf-hdinsight-powerbi/nested/info-nsg.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/informatica-adf-hdinsight-powerbi/nested/info-signup-automation.json b/informatica-adf-hdinsight-powerbi/nested/info-signup-automation.json index a08356ac48a5..bbf5c687412e 100755 --- a/informatica-adf-hdinsight-powerbi/nested/info-signup-automation.json +++ b/informatica-adf-hdinsight-powerbi/nested/info-signup-automation.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "automationAccountName": { diff --git a/informatica-adf-hdinsight-powerbi/nested/network-interface.json b/informatica-adf-hdinsight-powerbi/nested/network-interface.json index 3b6049b3efc9..da3363edd434 100755 --- a/informatica-adf-hdinsight-powerbi/nested/network-interface.json +++ b/informatica-adf-hdinsight-powerbi/nested/network-interface.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/informatica-adf-hdinsight-powerbi/nested/public-ip.json b/informatica-adf-hdinsight-powerbi/nested/public-ip.json index f47710b26f30..d6fce7d44c93 100755 --- a/informatica-adf-hdinsight-powerbi/nested/public-ip.json +++ b/informatica-adf-hdinsight-powerbi/nested/public-ip.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/informatica-adf-hdinsight-powerbi/nested/sqldatawarehouse.json b/informatica-adf-hdinsight-powerbi/nested/sqldatawarehouse.json index 99f639f6608c..9696639439ce 100755 --- a/informatica-adf-hdinsight-powerbi/nested/sqldatawarehouse.json +++ b/informatica-adf-hdinsight-powerbi/nested/sqldatawarehouse.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/informatica-adf-hdinsight-powerbi/nested/storage.json b/informatica-adf-hdinsight-powerbi/nested/storage.json index 0ee88c10fc48..c0fcdd1c25f5 100755 --- a/informatica-adf-hdinsight-powerbi/nested/storage.json +++ b/informatica-adf-hdinsight-powerbi/nested/storage.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/informatica-adf-hdinsight-powerbi/nested/virtual-machine-with-plan.json b/informatica-adf-hdinsight-powerbi/nested/virtual-machine-with-plan.json index c7d9d9a96bd1..8f990571e6de 100755 --- a/informatica-adf-hdinsight-powerbi/nested/virtual-machine-with-plan.json +++ b/informatica-adf-hdinsight-powerbi/nested/virtual-machine-with-plan.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/informatica-adf-hdinsight-powerbi/nested/vnet-subnet.json b/informatica-adf-hdinsight-powerbi/nested/vnet-subnet.json index a80394047adb..9cc7f833be59 100755 --- a/informatica-adf-hdinsight-powerbi/nested/vnet-subnet.json +++ b/informatica-adf-hdinsight-powerbi/nested/vnet-subnet.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/informatica-adf-hdinsight-powerbi/nested/workflow-automation.json b/informatica-adf-hdinsight-powerbi/nested/workflow-automation.json index d226f15e67a3..4284e1817f0f 100755 --- a/informatica-adf-hdinsight-powerbi/nested/workflow-automation.json +++ b/informatica-adf-hdinsight-powerbi/nested/workflow-automation.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "automationAccountName": { diff --git a/intel-lustre-client-server/azuredeploy.json b/intel-lustre-client-server/azuredeploy.json index 3d6061f1623b..6ec7c8f1cc98 100644 --- a/intel-lustre-client-server/azuredeploy.json +++ b/intel-lustre-client-server/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "artifactsBaseUrl": { diff --git a/intel-lustre-client-server/azuredeploy.parameters.json b/intel-lustre-client-server/azuredeploy.parameters.json index 385c0c431504..812d67452bfd 100644 --- a/intel-lustre-client-server/azuredeploy.parameters.json +++ b/intel-lustre-client-server/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "artifactsBaseUrl": { diff --git a/intel-lustre-client-server/monitoring.json b/intel-lustre-client-server/monitoring.json index d4bffc5a63fe..20eb151d0112 100644 --- a/intel-lustre-client-server/monitoring.json +++ b/intel-lustre-client-server/monitoring.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/intel-lustre-client-server/vnet-existing.json b/intel-lustre-client-server/vnet-existing.json index 1f5737bc311b..f0a381c1c5d3 100644 --- a/intel-lustre-client-server/vnet-existing.json +++ b/intel-lustre-client-server/vnet-existing.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/intel-lustre-client-server/vnet-new.json b/intel-lustre-client-server/vnet-new.json index 50cbf9461cab..de9705e7d0d3 100644 --- a/intel-lustre-client-server/vnet-new.json +++ b/intel-lustre-client-server/vnet-new.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/intel-lustre-clients-on-centos/azuredeploy.json b/intel-lustre-clients-on-centos/azuredeploy.json index 8dbecc3143f6..5aa5b251f1d3 100644 --- a/intel-lustre-clients-on-centos/azuredeploy.json +++ b/intel-lustre-clients-on-centos/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "image": { diff --git a/intel-lustre-clients-on-centos/azuredeploy.parameters.json b/intel-lustre-clients-on-centos/azuredeploy.parameters.json index e48e93b64b81..bcb485031808 100644 --- a/intel-lustre-clients-on-centos/azuredeploy.parameters.json +++ b/intel-lustre-clients-on-centos/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/intel-lustre-clients-vmss-centos/azuredeploy.json b/intel-lustre-clients-vmss-centos/azuredeploy.json index af585ef7b0ea..29a280f0e8a3 100644 --- a/intel-lustre-clients-vmss-centos/azuredeploy.json +++ b/intel-lustre-clients-vmss-centos/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageSku": { diff --git a/intel-lustre-clients-vmss-centos/azuredeploy.parameters.json b/intel-lustre-clients-vmss-centos/azuredeploy.parameters.json index a7a98c743021..2a900d7f4394 100644 --- a/intel-lustre-clients-vmss-centos/azuredeploy.parameters.json +++ b/intel-lustre-clients-vmss-centos/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/intel-lustre-clients-vmss-centos/scale.json b/intel-lustre-clients-vmss-centos/scale.json index bf3e8aa75530..0c051420ac39 100644 --- a/intel-lustre-clients-vmss-centos/scale.json +++ b/intel-lustre-clients-vmss-centos/scale.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingVMSSName": { diff --git a/iomad-cluster-ubuntu/azuredeploy.json b/iomad-cluster-ubuntu/azuredeploy.json index 8e99f2952399..22ec1e8823de 100644 --- a/iomad-cluster-ubuntu/azuredeploy.json +++ b/iomad-cluster-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/iomad-cluster-ubuntu/azuredeploy.parameters.json b/iomad-cluster-ubuntu/azuredeploy.parameters.json index 5f6e895e0ac0..ba0b1f618932 100644 --- a/iomad-cluster-ubuntu/azuredeploy.parameters.json +++ b/iomad-cluster-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/iomad-singlevm-ubuntu/azuredeploy.json b/iomad-singlevm-ubuntu/azuredeploy.json index f31ce9466431..69b69b4028bd 100644 --- a/iomad-singlevm-ubuntu/azuredeploy.json +++ b/iomad-singlevm-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/iomad-singlevm-ubuntu/azuredeploy.parameters.json b/iomad-singlevm-ubuntu/azuredeploy.parameters.json index f48fd9865d42..d5061d534266 100644 --- a/iomad-singlevm-ubuntu/azuredeploy.parameters.json +++ b/iomad-singlevm-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/ipv6-in-vnet-StdLB/azuredeploy.parameters.json b/ipv6-in-vnet-StdLB/azuredeploy.parameters.json index f9b8ed4a107c..db78c08fb5b9 100644 --- a/ipv6-in-vnet-StdLB/azuredeploy.parameters.json +++ b/ipv6-in-vnet-StdLB/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/ipv6-in-vnet-vmss/azuredeploy.json b/ipv6-in-vnet-vmss/azuredeploy.json index bfa912d0fede..7c4c4018c9af 100644 --- a/ipv6-in-vnet-vmss/azuredeploy.json +++ b/ipv6-in-vnet-vmss/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/ipv6-in-vnet-vmss/azuredeploy.parameters.json b/ipv6-in-vnet-vmss/azuredeploy.parameters.json index f9b8ed4a107c..db78c08fb5b9 100644 --- a/ipv6-in-vnet-vmss/azuredeploy.parameters.json +++ b/ipv6-in-vnet-vmss/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/ipv6-in-vnet/azuredeploy.json b/ipv6-in-vnet/azuredeploy.json index 629a5f59c930..2610c5273b05 100644 --- a/ipv6-in-vnet/azuredeploy.json +++ b/ipv6-in-vnet/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/ipv6-in-vnet/azuredeploy.parameters.json b/ipv6-in-vnet/azuredeploy.parameters.json index f9b8ed4a107c..db78c08fb5b9 100644 --- a/ipv6-in-vnet/azuredeploy.parameters.json +++ b/ipv6-in-vnet/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/jboss-eap-standalone-openshift/azuredeploy.json b/jboss-eap-standalone-openshift/azuredeploy.json index 317224f5f8ec..e946a08d41dd 100755 --- a/jboss-eap-standalone-openshift/azuredeploy.json +++ b/jboss-eap-standalone-openshift/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/jboss-eap-standalone-openshift/azuredeploy.parameters.json b/jboss-eap-standalone-openshift/azuredeploy.parameters.json index 27349d3bcf3a..5cf63a3046f6 100644 --- a/jboss-eap-standalone-openshift/azuredeploy.parameters.json +++ b/jboss-eap-standalone-openshift/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/jboss-eap-standalone-rhel7/azuredeploy.json b/jboss-eap-standalone-rhel7/azuredeploy.json index 6c02ef26c916..8cc63ef4bcc2 100755 --- a/jboss-eap-standalone-rhel7/azuredeploy.json +++ b/jboss-eap-standalone-rhel7/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/jboss-eap-standalone-rhel7/azuredeploy.parameters.json b/jboss-eap-standalone-rhel7/azuredeploy.parameters.json index 884d5f413917..87818219ab4b 100755 --- a/jboss-eap-standalone-rhel7/azuredeploy.parameters.json +++ b/jboss-eap-standalone-rhel7/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/jenkins-cicd-container/azuredeploy.parameters.json b/jenkins-cicd-container/azuredeploy.parameters.json index 3b2d96943c90..40d36fd582ca 100644 --- a/jenkins-cicd-container/azuredeploy.parameters.json +++ b/jenkins-cicd-container/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "spClientId": { diff --git a/jenkins-cicd-container/nested/grafana.json b/jenkins-cicd-container/nested/grafana.json index f4e7b9ea582c..7f439b3b2a20 100755 --- a/jenkins-cicd-container/nested/grafana.json +++ b/jenkins-cicd-container/nested/grafana.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "grafanaVMName": { diff --git a/jenkins-cicd-vmss/azuredeploy.json b/jenkins-cicd-vmss/azuredeploy.json index bfe075c70ab1..000ca2f46b23 100644 --- a/jenkins-cicd-vmss/azuredeploy.json +++ b/jenkins-cicd-vmss/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "jenkinsVMAdminUsername": { diff --git a/jenkins-cicd-vmss/azuredeploy.parameters.json b/jenkins-cicd-vmss/azuredeploy.parameters.json index 903a1cb9caea..e950ad24a521 100644 --- a/jenkins-cicd-vmss/azuredeploy.parameters.json +++ b/jenkins-cicd-vmss/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "jenkinsVMAdminUsername": { diff --git a/jenkins-cicd-vmss/nested/jenkins.json b/jenkins-cicd-vmss/nested/jenkins.json index b2e4b45a10fe..e6a0dc354531 100644 --- a/jenkins-cicd-vmss/nested/jenkins.json +++ b/jenkins-cicd-vmss/nested/jenkins.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/jenkins-cicd-webapp/azuredeploy.json b/jenkins-cicd-webapp/azuredeploy.json index 0c0f7eb0311b..b701ef694ebc 100644 --- a/jenkins-cicd-webapp/azuredeploy.json +++ b/jenkins-cicd-webapp/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "jenkinsVMAdminUsername": { diff --git a/jenkins-cicd-webapp/azuredeploy.parameters.json b/jenkins-cicd-webapp/azuredeploy.parameters.json index 2e1423d12465..47fe2db9a69a 100644 --- a/jenkins-cicd-webapp/azuredeploy.parameters.json +++ b/jenkins-cicd-webapp/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "jenkinsVMAdminUsername": { diff --git a/jenkins-cicd-webapp/nested/jenkins.json b/jenkins-cicd-webapp/nested/jenkins.json index c7de16b5df60..2ea05cd8cf1c 100644 --- a/jenkins-cicd-webapp/nested/jenkins.json +++ b/jenkins-cicd-webapp/nested/jenkins.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/jenkins-on-ubuntu/azuredeploy.json b/jenkins-on-ubuntu/azuredeploy.json index d42d8b493123..bea497029e8a 100644 --- a/jenkins-on-ubuntu/azuredeploy.json +++ b/jenkins-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/jenkins-on-ubuntu/azuredeploy.parameters.json b/jenkins-on-ubuntu/azuredeploy.parameters.json index aee97e4c4d20..31e14f664bcd 100644 --- a/jenkins-on-ubuntu/azuredeploy.parameters.json +++ b/jenkins-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/jenkins-on-ubuntu/jenkmaster-resources.json b/jenkins-on-ubuntu/jenkmaster-resources.json index 4ee442808aa3..3eeb76e111da 100644 --- a/jenkins-on-ubuntu/jenkmaster-resources.json +++ b/jenkins-on-ubuntu/jenkmaster-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/jenkins-on-ubuntu/jenkslave-resources.json b/jenkins-on-ubuntu/jenkslave-resources.json index 02242500c2ea..d406ebe66d6a 100644 --- a/jenkins-on-ubuntu/jenkslave-resources.json +++ b/jenkins-on-ubuntu/jenkslave-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/jenkins-on-ubuntu/shared-resources.json b/jenkins-on-ubuntu/shared-resources.json index 40d6f62a40e3..f6bb312997e8 100644 --- a/jenkins-on-ubuntu/shared-resources.json +++ b/jenkins-on-ubuntu/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "networkSettings": { diff --git a/kafka-on-ubuntu/azuredeploy.json b/kafka-on-ubuntu/azuredeploy.json index 2e9c2c12d8ea..45e734f54de3 100644 --- a/kafka-on-ubuntu/azuredeploy.json +++ b/kafka-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/kafka-on-ubuntu/azuredeploy.parameters.json b/kafka-on-ubuntu/azuredeploy.parameters.json index c64bd848fbca..099834117c51 100644 --- a/kafka-on-ubuntu/azuredeploy.parameters.json +++ b/kafka-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/kafka-on-ubuntu/jumpbox-resources-disabled.json b/kafka-on-ubuntu/jumpbox-resources-disabled.json index e643c635d131..8505d935ea9e 100644 --- a/kafka-on-ubuntu/jumpbox-resources-disabled.json +++ b/kafka-on-ubuntu/jumpbox-resources-disabled.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/kafka-on-ubuntu/jumpbox-resources-enabled.json b/kafka-on-ubuntu/jumpbox-resources-enabled.json index 6b78cbacb049..941053f6b67d 100644 --- a/kafka-on-ubuntu/jumpbox-resources-enabled.json +++ b/kafka-on-ubuntu/jumpbox-resources-enabled.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/kafka-on-ubuntu/shared-resources.json b/kafka-on-ubuntu/shared-resources.json index c6e577df74bc..00c2fc94959d 100644 --- a/kafka-on-ubuntu/shared-resources.json +++ b/kafka-on-ubuntu/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { diff --git a/kafka-ubuntu-multidisks/azuredeploy.json b/kafka-ubuntu-multidisks/azuredeploy.json index b2f654ec2b18..17b1d4a91763 100644 --- a/kafka-ubuntu-multidisks/azuredeploy.json +++ b/kafka-ubuntu-multidisks/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountNamePrefix": { diff --git a/kafka-ubuntu-multidisks/azuredeploy.parameters.json b/kafka-ubuntu-multidisks/azuredeploy.parameters.json index 87fa1eb213be..e8491e15dc23 100644 --- a/kafka-ubuntu-multidisks/azuredeploy.parameters.json +++ b/kafka-ubuntu-multidisks/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountNamePrefix": { diff --git a/kafka-ubuntu-multidisks/datastore-16disk-resources.json b/kafka-ubuntu-multidisks/datastore-16disk-resources.json index f9ebdd11f9cc..1077da50f7c2 100644 --- a/kafka-ubuntu-multidisks/datastore-16disk-resources.json +++ b/kafka-ubuntu-multidisks/datastore-16disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/kafka-ubuntu-multidisks/datastore-2disk-resources.json b/kafka-ubuntu-multidisks/datastore-2disk-resources.json index 6a43024a4b2c..f414388926df 100644 --- a/kafka-ubuntu-multidisks/datastore-2disk-resources.json +++ b/kafka-ubuntu-multidisks/datastore-2disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/kafka-ubuntu-multidisks/datastore-8disk-resources.json b/kafka-ubuntu-multidisks/datastore-8disk-resources.json index 2b75a0fc11e2..2aec9b10482f 100644 --- a/kafka-ubuntu-multidisks/datastore-8disk-resources.json +++ b/kafka-ubuntu-multidisks/datastore-8disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/kafka-ubuntu-multidisks/empty-resources.json b/kafka-ubuntu-multidisks/empty-resources.json index 1411285c1ff6..8db8c666fa4f 100644 --- a/kafka-ubuntu-multidisks/empty-resources.json +++ b/kafka-ubuntu-multidisks/empty-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/kafka-ubuntu-multidisks/jumpbox-resources.json b/kafka-ubuntu-multidisks/jumpbox-resources.json index 436b5d4d833b..f2c8c4bd6f3e 100644 --- a/kafka-ubuntu-multidisks/jumpbox-resources.json +++ b/kafka-ubuntu-multidisks/jumpbox-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/kafka-ubuntu-multidisks/shared-resources.json b/kafka-ubuntu-multidisks/shared-resources.json index 411e3b8d4757..d931301bbb48 100644 --- a/kafka-ubuntu-multidisks/shared-resources.json +++ b/kafka-ubuntu-multidisks/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageSettings": { diff --git a/kafka-ubuntu-multidisks/zookeeper-resources.json b/kafka-ubuntu-multidisks/zookeeper-resources.json index 9a86cdef92d1..f58a5ad927e6 100644 --- a/kafka-ubuntu-multidisks/zookeeper-resources.json +++ b/kafka-ubuntu-multidisks/zookeeper-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/kemp-loadmaster-ha-pair/azuredeploy.json b/kemp-loadmaster-ha-pair/azuredeploy.json index 4beabab9cb59..efc5c53c01e2 100644 --- a/kemp-loadmaster-ha-pair/azuredeploy.json +++ b/kemp-loadmaster-ha-pair/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "balPassword": { diff --git a/kemp-loadmaster-ha-pair/azuredeploy.parameters.json b/kemp-loadmaster-ha-pair/azuredeploy.parameters.json index 0909bf43d8b8..eeb2d759b44a 100644 --- a/kemp-loadmaster-ha-pair/azuredeploy.parameters.json +++ b/kemp-loadmaster-ha-pair/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "balPassword": { diff --git a/kemp-loadmaster-multinic/azuredeploy.json b/kemp-loadmaster-multinic/azuredeploy.json index 951d076c7d56..4f3f4c5478eb 100644 --- a/kemp-loadmaster-multinic/azuredeploy.json +++ b/kemp-loadmaster-multinic/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "balPassword": { diff --git a/kemp-loadmaster-multinic/azuredeploy.parameters.json b/kemp-loadmaster-multinic/azuredeploy.parameters.json index 53f332a3e4a9..f12a029be6d7 100644 --- a/kemp-loadmaster-multinic/azuredeploy.parameters.json +++ b/kemp-loadmaster-multinic/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "balPassword": { diff --git a/kentico-mvc-environment/azuredeploy.json b/kentico-mvc-environment/azuredeploy.json index f45741540f9a..871b6707b2ce 100644 --- a/kentico-mvc-environment/azuredeploy.json +++ b/kentico-mvc-environment/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "hostingPlanMVC": { diff --git a/kentico-mvc-environment/azuredeploy.parameters.json b/kentico-mvc-environment/azuredeploy.parameters.json index cbb87b496ee3..c735e326ed44 100644 --- a/kentico-mvc-environment/azuredeploy.parameters.json +++ b/kentico-mvc-environment/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlAdministratorLogin": { diff --git a/kubernetes-on-ubuntu-vmss/azuredeploy.parameters.json b/kubernetes-on-ubuntu-vmss/azuredeploy.parameters.json index 157185d34e68..22b6742254e8 100644 --- a/kubernetes-on-ubuntu-vmss/azuredeploy.parameters.json +++ b/kubernetes-on-ubuntu-vmss/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/lamp-app/azuredeploy.json b/lamp-app/azuredeploy.json index 1dd269834bad..d21790bb5773 100644 --- a/lamp-app/azuredeploy.json +++ b/lamp-app/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountNamePrefix": { diff --git a/lamp-app/azuredeploy.parameters.json b/lamp-app/azuredeploy.parameters.json index 856976c4d78a..c82adf63a3d9 100644 --- a/lamp-app/azuredeploy.parameters.json +++ b/lamp-app/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountNamePrefix": { diff --git a/lansa-vmss-windows-autoscale-sql-database/azuredeploy.parameters.json b/lansa-vmss-windows-autoscale-sql-database/azuredeploy.parameters.json index bf5528b669c3..090e4bb4cff4 100644 --- a/lansa-vmss-windows-autoscale-sql-database/azuredeploy.parameters.json +++ b/lansa-vmss-windows-autoscale-sql-database/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "stackName": { diff --git a/lap-mysql-ubuntu/azuredeploy.json b/lap-mysql-ubuntu/azuredeploy.json index 522870e02594..21825903dc74 100644 --- a/lap-mysql-ubuntu/azuredeploy.json +++ b/lap-mysql-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/lap-mysql-ubuntu/azuredeploy.parameters.json b/lap-mysql-ubuntu/azuredeploy.parameters.json index be34983de9fe..57d1b1890cb6 100644 --- a/lap-mysql-ubuntu/azuredeploy.parameters.json +++ b/lap-mysql-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/lap-mysql-ubuntu/lamplap-resources.json b/lap-mysql-ubuntu/lamplap-resources.json index 4a423b6b6b66..e3d897f16e90 100644 --- a/lap-mysql-ubuntu/lamplap-resources.json +++ b/lap-mysql-ubuntu/lamplap-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/lap-mysql-ubuntu/lampmysql-resources.json b/lap-mysql-ubuntu/lampmysql-resources.json index 12bae90da883..340689d22813 100644 --- a/lap-mysql-ubuntu/lampmysql-resources.json +++ b/lap-mysql-ubuntu/lampmysql-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/lap-mysql-ubuntu/shared-resources.json b/lap-mysql-ubuntu/shared-resources.json index 99e0fd2569dd..3523d886bfa5 100644 --- a/lap-mysql-ubuntu/shared-resources.json +++ b/lap-mysql-ubuntu/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "networkSettings": { diff --git a/lap-neo4j-ubuntu/azuredeploy.json b/lap-neo4j-ubuntu/azuredeploy.json index 3d9937b77628..346f154b020f 100644 --- a/lap-neo4j-ubuntu/azuredeploy.json +++ b/lap-neo4j-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/lap-neo4j-ubuntu/azuredeploy.parameters.json b/lap-neo4j-ubuntu/azuredeploy.parameters.json index 7fe4f3448b06..303e4fa15f91 100644 --- a/lap-neo4j-ubuntu/azuredeploy.parameters.json +++ b/lap-neo4j-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/lap-neo4j-ubuntu/nested/lanplap-resources.json b/lap-neo4j-ubuntu/nested/lanplap-resources.json index 76d6765a6a7c..b724d270ab21 100644 --- a/lap-neo4j-ubuntu/nested/lanplap-resources.json +++ b/lap-neo4j-ubuntu/nested/lanplap-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/lap-neo4j-ubuntu/nested/lanpneo4j-resources.json b/lap-neo4j-ubuntu/nested/lanpneo4j-resources.json index 2ca53911a542..9ac6131f4567 100644 --- a/lap-neo4j-ubuntu/nested/lanpneo4j-resources.json +++ b/lap-neo4j-ubuntu/nested/lanpneo4j-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/lap-neo4j-ubuntu/nested/shared-resources.json b/lap-neo4j-ubuntu/nested/shared-resources.json index 4358858d44e4..03854ee01903 100644 --- a/lap-neo4j-ubuntu/nested/shared-resources.json +++ b/lap-neo4j-ubuntu/nested/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "networkSettings": { diff --git a/mahara-autoscale-cache/azuredeploy.json b/mahara-autoscale-cache/azuredeploy.json index 38105fbe9502..b13c527d680d 100644 --- a/mahara-autoscale-cache/azuredeploy.json +++ b/mahara-autoscale-cache/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { diff --git a/mahara-autoscale-cache/azuredeploy.parameters.json b/mahara-autoscale-cache/azuredeploy.parameters.json index 00374607fa67..f2a148f4031d 100644 --- a/mahara-autoscale-cache/azuredeploy.parameters.json +++ b/mahara-autoscale-cache/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sshPublicKey": { "value": "GEN-SSH-PUB-KEY" }, diff --git a/mahara-autoscale-cache/nested/controller.json b/mahara-autoscale-cache/nested/controller.json index 1693d90d7758..eefe409e5043 100644 --- a/mahara-autoscale-cache/nested/controller.json +++ b/mahara-autoscale-cache/nested/controller.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "maharaCommon": { diff --git a/mahara-autoscale-cache/nested/controllerconfig.json b/mahara-autoscale-cache/nested/controllerconfig.json index 1d14ab1fbc23..d298c7b9ff60 100644 --- a/mahara-autoscale-cache/nested/controllerconfig.json +++ b/mahara-autoscale-cache/nested/controllerconfig.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "maharaCommon": { diff --git a/mahara-autoscale-cache/nested/elastic-search.json b/mahara-autoscale-cache/nested/elastic-search.json index c2d737b84e34..1bdb74cc4080 100644 --- a/mahara-autoscale-cache/nested/elastic-search.json +++ b/mahara-autoscale-cache/nested/elastic-search.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "maharaCommon": { diff --git a/mahara-autoscale-cache/nested/elasticconfig.json b/mahara-autoscale-cache/nested/elasticconfig.json index a72273a2fac8..5a0dbc6fcdcb 100644 --- a/mahara-autoscale-cache/nested/elasticconfig.json +++ b/mahara-autoscale-cache/nested/elasticconfig.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "maharaCommon": { diff --git a/mahara-autoscale-cache/nested/gluster.json b/mahara-autoscale-cache/nested/gluster.json index 7b6783f61d9e..1eeb4df12f5b 100644 --- a/mahara-autoscale-cache/nested/gluster.json +++ b/mahara-autoscale-cache/nested/gluster.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "maharaCommon": { diff --git a/mahara-autoscale-cache/nested/glustervm.json b/mahara-autoscale-cache/nested/glustervm.json index a3686a382352..04e7c935cf41 100644 --- a/mahara-autoscale-cache/nested/glustervm.json +++ b/mahara-autoscale-cache/nested/glustervm.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "counter": { diff --git a/mahara-autoscale-cache/nested/glustervmconfig.json b/mahara-autoscale-cache/nested/glustervmconfig.json index fc3cea94d19e..5f7cca3d6869 100644 --- a/mahara-autoscale-cache/nested/glustervmconfig.json +++ b/mahara-autoscale-cache/nested/glustervmconfig.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "maharaCommon": { diff --git a/mahara-autoscale-cache/nested/mysql.json b/mahara-autoscale-cache/nested/mysql.json index 2543c6912998..1e7e98b0883f 100644 --- a/mahara-autoscale-cache/nested/mysql.json +++ b/mahara-autoscale-cache/nested/mysql.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "maharaCommon": { diff --git a/mahara-autoscale-cache/nested/network.json b/mahara-autoscale-cache/nested/network.json index db3600a7fb69..e0edc04602f4 100644 --- a/mahara-autoscale-cache/nested/network.json +++ b/mahara-autoscale-cache/nested/network.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "maharaCommon": { diff --git a/mahara-autoscale-cache/nested/none-search.json b/mahara-autoscale-cache/nested/none-search.json index 57036b514fec..21abba5b30bf 100644 --- a/mahara-autoscale-cache/nested/none-search.json +++ b/mahara-autoscale-cache/nested/none-search.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "maharaCommon": { diff --git a/mahara-autoscale-cache/nested/postgres.json b/mahara-autoscale-cache/nested/postgres.json index 4ea99b689240..57bb86e479ff 100644 --- a/mahara-autoscale-cache/nested/postgres.json +++ b/mahara-autoscale-cache/nested/postgres.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "maharaCommon": { diff --git a/mahara-autoscale-cache/nested/recoveryservices.json b/mahara-autoscale-cache/nested/recoveryservices.json index 9367e8d8238c..b416dca05026 100644 --- a/mahara-autoscale-cache/nested/recoveryservices.json +++ b/mahara-autoscale-cache/nested/recoveryservices.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "maharaCommon": { diff --git a/mahara-autoscale-cache/nested/recoveryservicesEnlist.json b/mahara-autoscale-cache/nested/recoveryservicesEnlist.json index b7b25e8eb1dc..bd30fbad8faf 100644 --- a/mahara-autoscale-cache/nested/recoveryservicesEnlist.json +++ b/mahara-autoscale-cache/nested/recoveryservicesEnlist.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "maharaCommon": { diff --git a/mahara-autoscale-cache/nested/storageAccount.json b/mahara-autoscale-cache/nested/storageAccount.json index 43a4bffd891f..0eda284691e4 100644 --- a/mahara-autoscale-cache/nested/storageAccount.json +++ b/mahara-autoscale-cache/nested/storageAccount.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "maharaCommon": { diff --git a/mahara-autoscale-cache/nested/webvmss.json b/mahara-autoscale-cache/nested/webvmss.json index 218915d3ad6d..29e486bea7ad 100644 --- a/mahara-autoscale-cache/nested/webvmss.json +++ b/mahara-autoscale-cache/nested/webvmss.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "maharaCommon": { diff --git a/managed-disk-performance-meter/azuredeploy.json b/managed-disk-performance-meter/azuredeploy.json index e501df571d7b..9e344e9895bc 100644 --- a/managed-disk-performance-meter/azuredeploy.json +++ b/managed-disk-performance-meter/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmSize": { diff --git a/managed-disk-performance-meter/azuredeploy.parameters.json b/managed-disk-performance-meter/azuredeploy.parameters.json index be34983de9fe..57d1b1890cb6 100644 --- a/managed-disk-performance-meter/azuredeploy.parameters.json +++ b/managed-disk-performance-meter/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/managed-disk-raid-performance-meter/azuredeploy.json b/managed-disk-raid-performance-meter/azuredeploy.json index 23df9b4ea6e1..a2cd70d5e40c 100644 --- a/managed-disk-raid-performance-meter/azuredeploy.json +++ b/managed-disk-raid-performance-meter/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmSize": { diff --git a/managed-disk-raid-performance-meter/azuredeploy.parameters.json b/managed-disk-raid-performance-meter/azuredeploy.parameters.json index be34983de9fe..57d1b1890cb6 100644 --- a/managed-disk-raid-performance-meter/azuredeploy.parameters.json +++ b/managed-disk-raid-performance-meter/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/managementgroup-level-templates/mg-policy/azuredeploy.parameters.json b/managementgroup-level-templates/mg-policy/azuredeploy.parameters.json index ecd0b43b6c4b..40247ed05ea5 100644 --- a/managementgroup-level-templates/mg-policy/azuredeploy.parameters.json +++ b/managementgroup-level-templates/mg-policy/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "targetMg": { diff --git a/manifold-endpoint/azuredeploy.json b/manifold-endpoint/azuredeploy.json index bbd9dcc103b2..5bdd9afddaa8 100644 --- a/manifold-endpoint/azuredeploy.json +++ b/manifold-endpoint/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmDnsPrefix": { diff --git a/manifold-endpoint/azuredeploy.parameters.json b/manifold-endpoint/azuredeploy.parameters.json index 56e7278d7061..248fdc40290d 100644 --- a/manifold-endpoint/azuredeploy.parameters.json +++ b/manifold-endpoint/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmDnsPrefix": { diff --git a/matlab-cluster/azuredeploy.json b/matlab-cluster/azuredeploy.json index aa86e4dce57e..d85e01798ef5 100644 --- a/matlab-cluster/azuredeploy.json +++ b/matlab-cluster/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/matlab-cluster/azuredeploy.parameters.json b/matlab-cluster/azuredeploy.parameters.json index 8f7aa07ec144..b75f4fc7d9cf 100644 --- a/matlab-cluster/azuredeploy.parameters.json +++ b/matlab-cluster/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/matlab-cluster/scripts/azuredeploy.parameters.script.driven.template.json b/matlab-cluster/scripts/azuredeploy.parameters.script.driven.template.json index 36bde6b9dfed..7b0b7ec1339f 100644 --- a/matlab-cluster/scripts/azuredeploy.parameters.script.driven.template.json +++ b/matlab-cluster/scripts/azuredeploy.parameters.script.driven.template.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/mcafee-extension-windows-vm/azuredeploy.json b/mcafee-extension-windows-vm/azuredeploy.json index 582158c90b68..5f6b82dd4171 100644 --- a/mcafee-extension-windows-vm/azuredeploy.json +++ b/mcafee-extension-windows-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/mcafee-extension-windows-vm/azuredeploy.parameters.json b/mcafee-extension-windows-vm/azuredeploy.parameters.json index 15cceabc9caf..3a1fa91bb897 100644 --- a/mcafee-extension-windows-vm/azuredeploy.parameters.json +++ b/mcafee-extension-windows-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/media-service-output-primary-key/azuredeploy.json b/media-service-output-primary-key/azuredeploy.json index 7835b77a8826..64b79e6ef6a6 100644 --- a/media-service-output-primary-key/azuredeploy.json +++ b/media-service-output-primary-key/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/media-service-output-primary-key/azuredeploy.parameters.json b/media-service-output-primary-key/azuredeploy.parameters.json index 74586147bf07..a7022673a9ba 100644 --- a/media-service-output-primary-key/azuredeploy.parameters.json +++ b/media-service-output-primary-key/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/memcached-multi-vm-ubuntu/azuredeploy.json b/memcached-multi-vm-ubuntu/azuredeploy.json index 3772dd3aee18..dfc0f09c8616 100644 --- a/memcached-multi-vm-ubuntu/azuredeploy.json +++ b/memcached-multi-vm-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/memcached-multi-vm-ubuntu/azuredeploy.parameters.json b/memcached-multi-vm-ubuntu/azuredeploy.parameters.json index 765bcc1d6885..d66ee4756f48 100644 --- a/memcached-multi-vm-ubuntu/azuredeploy.parameters.json +++ b/memcached-multi-vm-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/minecraft-on-ubuntu/azuredeploy.json b/minecraft-on-ubuntu/azuredeploy.json index f789421e2f5a..33be2f95b40f 100644 --- a/minecraft-on-ubuntu/azuredeploy.json +++ b/minecraft-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "minecraftUser": { diff --git a/minecraft-on-ubuntu/azuredeploy.parameters.json b/minecraft-on-ubuntu/azuredeploy.parameters.json index d8743f1a72b8..8b8b26919af5 100644 --- a/minecraft-on-ubuntu/azuredeploy.parameters.json +++ b/minecraft-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "minecraftUser": { diff --git a/mongodb-high-availability/arbiter-resources.json b/mongodb-high-availability/arbiter-resources.json index 72c49ad568c7..aaa140c4dfb4 100644 --- a/mongodb-high-availability/arbiter-resources.json +++ b/mongodb-high-availability/arbiter-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-high-availability/azuredeploy.json b/mongodb-high-availability/azuredeploy.json index 0447a78e244d..86f8b555b685 100644 --- a/mongodb-high-availability/azuredeploy.json +++ b/mongodb-high-availability/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mongodb-high-availability/azuredeploy.parameters.json b/mongodb-high-availability/azuredeploy.parameters.json index 8f578f57bafc..80bc71dd8502 100644 --- a/mongodb-high-availability/azuredeploy.parameters.json +++ b/mongodb-high-availability/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mongodb-high-availability/empty-resources.json b/mongodb-high-availability/empty-resources.json index 8c3f609efee9..69dddcd3a02d 100644 --- a/mongodb-high-availability/empty-resources.json +++ b/mongodb-high-availability/empty-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-high-availability/jumpbox-resources.json b/mongodb-high-availability/jumpbox-resources.json index d7436100f61d..c9497f76dc66 100644 --- a/mongodb-high-availability/jumpbox-resources.json +++ b/mongodb-high-availability/jumpbox-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-high-availability/member-resources-D1.json b/mongodb-high-availability/member-resources-D1.json index b153114e9bf4..3b0cba70aabf 100644 --- a/mongodb-high-availability/member-resources-D1.json +++ b/mongodb-high-availability/member-resources-D1.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-high-availability/member-resources-D11.json b/mongodb-high-availability/member-resources-D11.json index d372f5913d06..216acc9b175d 100644 --- a/mongodb-high-availability/member-resources-D11.json +++ b/mongodb-high-availability/member-resources-D11.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-high-availability/member-resources-D12.json b/mongodb-high-availability/member-resources-D12.json index 762a4c86cc82..1084775f4547 100644 --- a/mongodb-high-availability/member-resources-D12.json +++ b/mongodb-high-availability/member-resources-D12.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-high-availability/member-resources-D13.json b/mongodb-high-availability/member-resources-D13.json index c2327c6640e6..af05998c14e6 100644 --- a/mongodb-high-availability/member-resources-D13.json +++ b/mongodb-high-availability/member-resources-D13.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-high-availability/member-resources-D14.json b/mongodb-high-availability/member-resources-D14.json index aaff5d2b0f43..65e32b48e303 100644 --- a/mongodb-high-availability/member-resources-D14.json +++ b/mongodb-high-availability/member-resources-D14.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-high-availability/member-resources-D2.json b/mongodb-high-availability/member-resources-D2.json index 48ae82babe62..41f8b8490442 100644 --- a/mongodb-high-availability/member-resources-D2.json +++ b/mongodb-high-availability/member-resources-D2.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-high-availability/member-resources-D3.json b/mongodb-high-availability/member-resources-D3.json index 0b81f55f988c..98930c415c50 100644 --- a/mongodb-high-availability/member-resources-D3.json +++ b/mongodb-high-availability/member-resources-D3.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-high-availability/member-resources-D4.json b/mongodb-high-availability/member-resources-D4.json index dce021279b85..ddace21bc8c1 100644 --- a/mongodb-high-availability/member-resources-D4.json +++ b/mongodb-high-availability/member-resources-D4.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-high-availability/shared-resources.json b/mongodb-high-availability/shared-resources.json index 22e29da54c60..efdf990eafd3 100644 --- a/mongodb-high-availability/shared-resources.json +++ b/mongodb-high-availability/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-nodejs-high-availability/arbiter-resources.json b/mongodb-nodejs-high-availability/arbiter-resources.json index fc473a358ace..e57012337540 100644 --- a/mongodb-nodejs-high-availability/arbiter-resources.json +++ b/mongodb-nodejs-high-availability/arbiter-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-nodejs-high-availability/azuredeploy.json b/mongodb-nodejs-high-availability/azuredeploy.json index e9988cfaee45..88f89bbe0127 100644 --- a/mongodb-nodejs-high-availability/azuredeploy.json +++ b/mongodb-nodejs-high-availability/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mongodb-nodejs-high-availability/azuredeploy.parameters.json b/mongodb-nodejs-high-availability/azuredeploy.parameters.json index e1267278f4a0..8c333eff5220 100644 --- a/mongodb-nodejs-high-availability/azuredeploy.parameters.json +++ b/mongodb-nodejs-high-availability/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mongodb-nodejs-high-availability/empty-resources.json b/mongodb-nodejs-high-availability/empty-resources.json index 4514c0eaaca0..e4fcba5ddc4d 100644 --- a/mongodb-nodejs-high-availability/empty-resources.json +++ b/mongodb-nodejs-high-availability/empty-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-nodejs-high-availability/frontend-resource.json b/mongodb-nodejs-high-availability/frontend-resource.json index 0ef754fe782a..3a2c2133c0fb 100644 --- a/mongodb-nodejs-high-availability/frontend-resource.json +++ b/mongodb-nodejs-high-availability/frontend-resource.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-nodejs-high-availability/jumpbox-resources.json b/mongodb-nodejs-high-availability/jumpbox-resources.json index 6de412bd04f2..05fab5f43bcf 100644 --- a/mongodb-nodejs-high-availability/jumpbox-resources.json +++ b/mongodb-nodejs-high-availability/jumpbox-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-nodejs-high-availability/member-resources-D1.json b/mongodb-nodejs-high-availability/member-resources-D1.json index a6fa228fb936..739fbe74ec99 100644 --- a/mongodb-nodejs-high-availability/member-resources-D1.json +++ b/mongodb-nodejs-high-availability/member-resources-D1.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-nodejs-high-availability/member-resources-D11.json b/mongodb-nodejs-high-availability/member-resources-D11.json index a4c7bc8bdd8d..5f56c59d0cca 100644 --- a/mongodb-nodejs-high-availability/member-resources-D11.json +++ b/mongodb-nodejs-high-availability/member-resources-D11.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-nodejs-high-availability/member-resources-D12.json b/mongodb-nodejs-high-availability/member-resources-D12.json index 2597a943d0b0..65154faedcd8 100644 --- a/mongodb-nodejs-high-availability/member-resources-D12.json +++ b/mongodb-nodejs-high-availability/member-resources-D12.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-nodejs-high-availability/member-resources-D13.json b/mongodb-nodejs-high-availability/member-resources-D13.json index a69309998a00..3b0707b5ee6a 100644 --- a/mongodb-nodejs-high-availability/member-resources-D13.json +++ b/mongodb-nodejs-high-availability/member-resources-D13.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-nodejs-high-availability/member-resources-D14.json b/mongodb-nodejs-high-availability/member-resources-D14.json index 7268de2eeb83..6f6cf0d7d7ff 100644 --- a/mongodb-nodejs-high-availability/member-resources-D14.json +++ b/mongodb-nodejs-high-availability/member-resources-D14.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-nodejs-high-availability/member-resources-D2.json b/mongodb-nodejs-high-availability/member-resources-D2.json index 0d8b454b29fe..48445d2e1079 100644 --- a/mongodb-nodejs-high-availability/member-resources-D2.json +++ b/mongodb-nodejs-high-availability/member-resources-D2.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-nodejs-high-availability/member-resources-D3.json b/mongodb-nodejs-high-availability/member-resources-D3.json index a42a37fd3a8a..a874c2b8de00 100644 --- a/mongodb-nodejs-high-availability/member-resources-D3.json +++ b/mongodb-nodejs-high-availability/member-resources-D3.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-nodejs-high-availability/member-resources-D4.json b/mongodb-nodejs-high-availability/member-resources-D4.json index d28fae363dda..3fd879bd03ff 100644 --- a/mongodb-nodejs-high-availability/member-resources-D4.json +++ b/mongodb-nodejs-high-availability/member-resources-D4.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-nodejs-high-availability/shared-resources.json b/mongodb-nodejs-high-availability/shared-resources.json index dbc024d6a6ae..f9635e413b85 100644 --- a/mongodb-nodejs-high-availability/shared-resources.json +++ b/mongodb-nodejs-high-availability/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/mongodb-on-centos/azuredeploy.json b/mongodb-on-centos/azuredeploy.json index 35f7332b4ebc..a8b0db64d2b5 100644 --- a/mongodb-on-centos/azuredeploy.json +++ b/mongodb-on-centos/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsNameForPublicIP": { diff --git a/mongodb-on-centos/azuredeploy.parameters.json b/mongodb-on-centos/azuredeploy.parameters.json index 2a159335ba2f..e1db64c33c14 100644 --- a/mongodb-on-centos/azuredeploy.parameters.json +++ b/mongodb-on-centos/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mongodb-on-ubuntu/azuredeploy.json b/mongodb-on-ubuntu/azuredeploy.json index e6998eac1431..1345941655e8 100644 --- a/mongodb-on-ubuntu/azuredeploy.json +++ b/mongodb-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsNameForPublicIP": { diff --git a/mongodb-on-ubuntu/azuredeploy.parameters.json b/mongodb-on-ubuntu/azuredeploy.parameters.json index 739f9ed6b40c..d7762ae206ce 100644 --- a/mongodb-on-ubuntu/azuredeploy.parameters.json +++ b/mongodb-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mongodb-replica-set-centos/azuredeploy.json b/mongodb-replica-set-centos/azuredeploy.json index ef7f2fe31a43..59c7a377c77e 100644 --- a/mongodb-replica-set-centos/azuredeploy.json +++ b/mongodb-replica-set-centos/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mongodb-replica-set-centos/azuredeploy.parameters.json b/mongodb-replica-set-centos/azuredeploy.parameters.json index f0783360b155..8499c6abe5e5 100644 --- a/mongodb-replica-set-centos/azuredeploy.parameters.json +++ b/mongodb-replica-set-centos/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mongodb-replica-set-centos/nested/disksSelector.json b/mongodb-replica-set-centos/nested/disksSelector.json index 0b78badc4e93..f7d2b7c5d1a9 100644 --- a/mongodb-replica-set-centos/nested/disksSelector.json +++ b/mongodb-replica-set-centos/nested/disksSelector.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "numDataDisks": { diff --git a/mongodb-replica-set-centos/nested/primary-resources.json b/mongodb-replica-set-centos/nested/primary-resources.json index 039d9933b967..01e0a825bfef 100644 --- a/mongodb-replica-set-centos/nested/primary-resources.json +++ b/mongodb-replica-set-centos/nested/primary-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "replSetName": { diff --git a/mongodb-replica-set-centos/nested/secondary-resources.json b/mongodb-replica-set-centos/nested/secondary-resources.json index a4fa4cde5d13..562f607d77c0 100644 --- a/mongodb-replica-set-centos/nested/secondary-resources.json +++ b/mongodb-replica-set-centos/nested/secondary-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "replSetName": { diff --git a/mongodb-replica-set-centos/nested/shared-resources.json b/mongodb-replica-set-centos/nested/shared-resources.json index ec4e723e289f..2c315a39198e 100644 --- a/mongodb-replica-set-centos/nested/shared-resources.json +++ b/mongodb-replica-set-centos/nested/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "networkSettings": { diff --git a/mongodb-sharding-centos/azuredeploy.json b/mongodb-sharding-centos/azuredeploy.json index 7ad62c76f1b2..e755af7b027f 100644 --- a/mongodb-sharding-centos/azuredeploy.json +++ b/mongodb-sharding-centos/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mongodb-sharding-centos/azuredeploy.parameters.json b/mongodb-sharding-centos/azuredeploy.parameters.json index d753bc7f3909..5e0e56cfe4ab 100644 --- a/mongodb-sharding-centos/azuredeploy.parameters.json +++ b/mongodb-sharding-centos/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mongodb-sharding-centos/nested/config-primary-resources.json b/mongodb-sharding-centos/nested/config-primary-resources.json index f5fcc65a100b..6a83bcc9d9bb 100644 --- a/mongodb-sharding-centos/nested/config-primary-resources.json +++ b/mongodb-sharding-centos/nested/config-primary-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mongodb-sharding-centos/nested/config-secondary-resources.json b/mongodb-sharding-centos/nested/config-secondary-resources.json index a6a6644e3e3e..1c4815eb6239 100644 --- a/mongodb-sharding-centos/nested/config-secondary-resources.json +++ b/mongodb-sharding-centos/nested/config-secondary-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mongodb-sharding-centos/nested/disksSelector.json b/mongodb-sharding-centos/nested/disksSelector.json index c1e6d3a71441..d6893cc845d5 100644 --- a/mongodb-sharding-centos/nested/disksSelector.json +++ b/mongodb-sharding-centos/nested/disksSelector.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "numDataDisks": { diff --git a/mongodb-sharding-centos/nested/replica-primary-resources.json b/mongodb-sharding-centos/nested/replica-primary-resources.json index 57bac4a92c6f..ff395a1fb126 100644 --- a/mongodb-sharding-centos/nested/replica-primary-resources.json +++ b/mongodb-sharding-centos/nested/replica-primary-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "replSetName": { diff --git a/mongodb-sharding-centos/nested/replica-secondary-resources.json b/mongodb-sharding-centos/nested/replica-secondary-resources.json index 5e819fe99255..a1d43e65c4fc 100644 --- a/mongodb-sharding-centos/nested/replica-secondary-resources.json +++ b/mongodb-sharding-centos/nested/replica-secondary-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "replSetName": { diff --git a/mongodb-sharding-centos/nested/router1-resources.json b/mongodb-sharding-centos/nested/router1-resources.json index ddf5d775949b..7660b056b146 100644 --- a/mongodb-sharding-centos/nested/router1-resources.json +++ b/mongodb-sharding-centos/nested/router1-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mongodb-sharding-centos/nested/router2-resources.json b/mongodb-sharding-centos/nested/router2-resources.json index 83668bc418fa..5d0f002214e9 100644 --- a/mongodb-sharding-centos/nested/router2-resources.json +++ b/mongodb-sharding-centos/nested/router2-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mongodb-sharding-centos/nested/shared-resources.json b/mongodb-sharding-centos/nested/shared-resources.json index d26752f3ce33..d131df317e32 100644 --- a/mongodb-sharding-centos/nested/shared-resources.json +++ b/mongodb-sharding-centos/nested/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "networkSettings": { diff --git a/monitor-action-groups/azuredeploy.json b/monitor-action-groups/azuredeploy.json index e06b321d6714..37660ed7c2bc 100644 --- a/monitor-action-groups/azuredeploy.json +++ b/monitor-action-groups/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "actionGroupName": { diff --git a/monitor-action-groups/azuredeploy.parameters.json b/monitor-action-groups/azuredeploy.parameters.json index 9b31d60fa006..03355a178e21 100644 --- a/monitor-action-groups/azuredeploy.parameters.json +++ b/monitor-action-groups/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "actionGroupName": { diff --git a/monitor-autoscale-alert/azuredeploy.json b/monitor-autoscale-alert/azuredeploy.json index 2cf0f4d2cda0..3542515b3eb1 100644 --- a/monitor-autoscale-alert/azuredeploy.json +++ b/monitor-autoscale-alert/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "actionGroupName": { diff --git a/monitor-autoscale-alert/azuredeploy.parameters.json b/monitor-autoscale-alert/azuredeploy.parameters.json index faaf9fb88757..fc658a80ddb4 100644 --- a/monitor-autoscale-alert/azuredeploy.parameters.json +++ b/monitor-autoscale-alert/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "actionGroupName": { diff --git a/monitor-autoscale-failed-alert/azuredeploy.json b/monitor-autoscale-failed-alert/azuredeploy.json index ff6b89225af1..cc1e6cb64020 100644 --- a/monitor-autoscale-failed-alert/azuredeploy.json +++ b/monitor-autoscale-failed-alert/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "actionGroupName": { diff --git a/monitor-autoscale-failed-alert/azuredeploy.parameters.json b/monitor-autoscale-failed-alert/azuredeploy.parameters.json index 2f463615fe3d..05df796b6f80 100644 --- a/monitor-autoscale-failed-alert/azuredeploy.parameters.json +++ b/monitor-autoscale-failed-alert/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "actionGroupName": { diff --git a/monitor-autoscale-vmss-simplemetricbased/azuredeploy.json b/monitor-autoscale-vmss-simplemetricbased/azuredeploy.json index dc4a4dea5cce..9904f7e6b480 100644 --- a/monitor-autoscale-vmss-simplemetricbased/azuredeploy.json +++ b/monitor-autoscale-vmss-simplemetricbased/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmSku": { diff --git a/monitor-autoscale-vmss-simplemetricbased/azuredeploy.parameters.json b/monitor-autoscale-vmss-simplemetricbased/azuredeploy.parameters.json index dedad97f28f5..cb88c1d20e3b 100644 --- a/monitor-autoscale-vmss-simplemetricbased/azuredeploy.parameters.json +++ b/monitor-autoscale-vmss-simplemetricbased/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmSku": { diff --git a/monitor-autoscale-webappserviceplan-simplemetricbased/azuredeploy.json b/monitor-autoscale-webappserviceplan-simplemetricbased/azuredeploy.json index b773ff7305fb..cbfe2c49f9b7 100644 --- a/monitor-autoscale-webappserviceplan-simplemetricbased/azuredeploy.json +++ b/monitor-autoscale-webappserviceplan-simplemetricbased/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "svcPlanName": { diff --git a/monitor-autoscale-webappserviceplan-simplemetricbased/azuredeploy.parameters.json b/monitor-autoscale-webappserviceplan-simplemetricbased/azuredeploy.parameters.json index 133ebc46c8b8..ab988b4dcff9 100644 --- a/monitor-autoscale-webappserviceplan-simplemetricbased/azuredeploy.parameters.json +++ b/monitor-autoscale-webappserviceplan-simplemetricbased/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "svcPlanName": { diff --git a/monitor-servicehealth-alert/azuredeploy.json b/monitor-servicehealth-alert/azuredeploy.json index edf46c9c6a38..31757564b1aa 100644 --- a/monitor-servicehealth-alert/azuredeploy.json +++ b/monitor-servicehealth-alert/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "actionGroupName": { diff --git a/monitor-servicehealth-alert/azuredeploy.parameters.json b/monitor-servicehealth-alert/azuredeploy.parameters.json index 94e9e89e0085..34895921a0a1 100644 --- a/monitor-servicehealth-alert/azuredeploy.parameters.json +++ b/monitor-servicehealth-alert/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "actionGroupName": { diff --git a/moodle-scalable-cluster-ubuntu/azuredeploy.json b/moodle-scalable-cluster-ubuntu/azuredeploy.json index 2846e53c7f18..bfd32497928d 100644 --- a/moodle-scalable-cluster-ubuntu/azuredeploy.json +++ b/moodle-scalable-cluster-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { @@ -347,7 +347,7 @@ "properties": { "mode": "Incremental", "template": { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "resources": [] } diff --git a/moodle-scalable-cluster-ubuntu/azuredeploy.parameters.json b/moodle-scalable-cluster-ubuntu/azuredeploy.parameters.json index 38fd3f236dd4..f1cdde1b5754 100644 --- a/moodle-scalable-cluster-ubuntu/azuredeploy.parameters.json +++ b/moodle-scalable-cluster-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "autoscaleVmCount": { "value": 10 }, diff --git a/moodle-scalable-cluster-ubuntu/nested/controller.json b/moodle-scalable-cluster-ubuntu/nested/controller.json index 6e5ca34d7749..81e75e8eef49 100644 --- a/moodle-scalable-cluster-ubuntu/nested/controller.json +++ b/moodle-scalable-cluster-ubuntu/nested/controller.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "moodleCommon": { diff --git a/moodle-scalable-cluster-ubuntu/nested/controllerconfig.json b/moodle-scalable-cluster-ubuntu/nested/controllerconfig.json index 98f41b740146..c7844af83810 100644 --- a/moodle-scalable-cluster-ubuntu/nested/controllerconfig.json +++ b/moodle-scalable-cluster-ubuntu/nested/controllerconfig.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "moodleCommon": { diff --git a/moodle-scalable-cluster-ubuntu/nested/elastic.json b/moodle-scalable-cluster-ubuntu/nested/elastic.json index 10dba5d5a152..464fc94f3923 100644 --- a/moodle-scalable-cluster-ubuntu/nested/elastic.json +++ b/moodle-scalable-cluster-ubuntu/nested/elastic.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "moodleCommon": { diff --git a/moodle-scalable-cluster-ubuntu/nested/elasticconfig.json b/moodle-scalable-cluster-ubuntu/nested/elasticconfig.json index 50dff10a92c6..5bd1234e54c8 100644 --- a/moodle-scalable-cluster-ubuntu/nested/elasticconfig.json +++ b/moodle-scalable-cluster-ubuntu/nested/elasticconfig.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "moodleCommon": { diff --git a/moodle-scalable-cluster-ubuntu/nested/gluster.json b/moodle-scalable-cluster-ubuntu/nested/gluster.json index c30c78464b17..529c1e8bd007 100644 --- a/moodle-scalable-cluster-ubuntu/nested/gluster.json +++ b/moodle-scalable-cluster-ubuntu/nested/gluster.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "moodleCommon": { diff --git a/moodle-scalable-cluster-ubuntu/nested/glustervm.json b/moodle-scalable-cluster-ubuntu/nested/glustervm.json index c5d13d7ef7db..3768b13cbcbd 100644 --- a/moodle-scalable-cluster-ubuntu/nested/glustervm.json +++ b/moodle-scalable-cluster-ubuntu/nested/glustervm.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "counter": { diff --git a/moodle-scalable-cluster-ubuntu/nested/glustervmconfig.json b/moodle-scalable-cluster-ubuntu/nested/glustervmconfig.json index 471e011b5a37..79f25964d5ef 100644 --- a/moodle-scalable-cluster-ubuntu/nested/glustervmconfig.json +++ b/moodle-scalable-cluster-ubuntu/nested/glustervmconfig.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "moodleCommon": { diff --git a/moodle-scalable-cluster-ubuntu/nested/mysql.json b/moodle-scalable-cluster-ubuntu/nested/mysql.json index 5b97cb2552db..96e58a767481 100644 --- a/moodle-scalable-cluster-ubuntu/nested/mysql.json +++ b/moodle-scalable-cluster-ubuntu/nested/mysql.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "moodleCommon": { diff --git a/moodle-scalable-cluster-ubuntu/nested/network.json b/moodle-scalable-cluster-ubuntu/nested/network.json index 6ae4f129c014..bbc8ae5cecf9 100644 --- a/moodle-scalable-cluster-ubuntu/nested/network.json +++ b/moodle-scalable-cluster-ubuntu/nested/network.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "moodleCommon": { diff --git a/moodle-scalable-cluster-ubuntu/nested/postgres.json b/moodle-scalable-cluster-ubuntu/nested/postgres.json index 2f1b6c62012b..6735ef0a6bfb 100644 --- a/moodle-scalable-cluster-ubuntu/nested/postgres.json +++ b/moodle-scalable-cluster-ubuntu/nested/postgres.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "moodleCommon": { diff --git a/moodle-scalable-cluster-ubuntu/nested/recoveryservices.json b/moodle-scalable-cluster-ubuntu/nested/recoveryservices.json index ae99cabe90de..0b11cefb9082 100644 --- a/moodle-scalable-cluster-ubuntu/nested/recoveryservices.json +++ b/moodle-scalable-cluster-ubuntu/nested/recoveryservices.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "moodleCommon": { diff --git a/moodle-scalable-cluster-ubuntu/nested/recoveryservicesEnlist.json b/moodle-scalable-cluster-ubuntu/nested/recoveryservicesEnlist.json index ec66c277273f..d29fd60b32fa 100644 --- a/moodle-scalable-cluster-ubuntu/nested/recoveryservicesEnlist.json +++ b/moodle-scalable-cluster-ubuntu/nested/recoveryservicesEnlist.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "moodleCommon": { diff --git a/moodle-scalable-cluster-ubuntu/nested/redis.json b/moodle-scalable-cluster-ubuntu/nested/redis.json index c366b7eb26c3..6478cf8ef262 100644 --- a/moodle-scalable-cluster-ubuntu/nested/redis.json +++ b/moodle-scalable-cluster-ubuntu/nested/redis.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "moodleCommon": { diff --git a/moodle-scalable-cluster-ubuntu/nested/storageAccount.json b/moodle-scalable-cluster-ubuntu/nested/storageAccount.json index 8768324dc3fc..ab5b551a65a8 100644 --- a/moodle-scalable-cluster-ubuntu/nested/storageAccount.json +++ b/moodle-scalable-cluster-ubuntu/nested/storageAccount.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "moodleCommon": { diff --git a/moodle-scalable-cluster-ubuntu/nested/webvmss.json b/moodle-scalable-cluster-ubuntu/nested/webvmss.json index 1e3f0fc58603..cbb404b9e0fc 100644 --- a/moodle-scalable-cluster-ubuntu/nested/webvmss.json +++ b/moodle-scalable-cluster-ubuntu/nested/webvmss.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "moodleCommon": { diff --git a/multi-vm-chef-template-ubuntu-vm/azuredeploy.json b/multi-vm-chef-template-ubuntu-vm/azuredeploy.json index 5a95c0900e71..6de21af52116 100644 --- a/multi-vm-chef-template-ubuntu-vm/azuredeploy.json +++ b/multi-vm-chef-template-ubuntu-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmDnsName": { diff --git a/multi-vm-chef-template-ubuntu-vm/azuredeploy.parameters.json b/multi-vm-chef-template-ubuntu-vm/azuredeploy.parameters.json index fa28bc749e45..69fad1539720 100644 --- a/multi-vm-chef-template-ubuntu-vm/azuredeploy.parameters.json +++ b/multi-vm-chef-template-ubuntu-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mysql-ha-pxc-zones/azuredeploy.json b/mysql-ha-pxc-zones/azuredeploy.json index 5bcc4432314d..32d7c1747112 100644 --- a/mysql-ha-pxc-zones/azuredeploy.json +++ b/mysql-ha-pxc-zones/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/mysql-ha-pxc-zones/azuredeploy.parameters.json b/mysql-ha-pxc-zones/azuredeploy.parameters.json index f9b8ed4a107c..db78c08fb5b9 100644 --- a/mysql-ha-pxc-zones/azuredeploy.parameters.json +++ b/mysql-ha-pxc-zones/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mysql-ha-pxc/azuredeploy.json b/mysql-ha-pxc/azuredeploy.json index 4479a4e23252..d9acf63d03bc 100644 --- a/mysql-ha-pxc/azuredeploy.json +++ b/mysql-ha-pxc/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsName": { diff --git a/mysql-ha-pxc/azuredeploy.parameters.json b/mysql-ha-pxc/azuredeploy.parameters.json index f5a8fdab8a9d..308f44a4c63a 100644 --- a/mysql-ha-pxc/azuredeploy.parameters.json +++ b/mysql-ha-pxc/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsName": { diff --git a/mysql-mha-haproxy-ubuntu/azuredeploy.json b/mysql-mha-haproxy-ubuntu/azuredeploy.json index c25ffb9ad931..c90443063dc0 100644 --- a/mysql-mha-haproxy-ubuntu/azuredeploy.json +++ b/mysql-mha-haproxy-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/mysql-mha-haproxy-ubuntu/azuredeploy.parameters.json b/mysql-mha-haproxy-ubuntu/azuredeploy.parameters.json index 58ad19e86f2a..54a5bc62a6e1 100644 --- a/mysql-mha-haproxy-ubuntu/azuredeploy.parameters.json +++ b/mysql-mha-haproxy-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/mysql-mha-haproxy-ubuntu/nested/haproxy-resources.json b/mysql-mha-haproxy-ubuntu/nested/haproxy-resources.json index 9bdb16c19282..402cba71dd2b 100644 --- a/mysql-mha-haproxy-ubuntu/nested/haproxy-resources.json +++ b/mysql-mha-haproxy-ubuntu/nested/haproxy-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mysql-mha-haproxy-ubuntu/nested/master-resources.json b/mysql-mha-haproxy-ubuntu/nested/master-resources.json index 767450b4b6dc..55b97bbd7779 100644 --- a/mysql-mha-haproxy-ubuntu/nested/master-resources.json +++ b/mysql-mha-haproxy-ubuntu/nested/master-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mysql-mha-haproxy-ubuntu/nested/shared-resources.json b/mysql-mha-haproxy-ubuntu/nested/shared-resources.json index 99e0fd2569dd..3523d886bfa5 100644 --- a/mysql-mha-haproxy-ubuntu/nested/shared-resources.json +++ b/mysql-mha-haproxy-ubuntu/nested/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "networkSettings": { diff --git a/mysql-mha-haproxy-ubuntu/nested/slave01-resources.json b/mysql-mha-haproxy-ubuntu/nested/slave01-resources.json index 552c813749be..b45020e6f814 100644 --- a/mysql-mha-haproxy-ubuntu/nested/slave01-resources.json +++ b/mysql-mha-haproxy-ubuntu/nested/slave01-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mysql-mha-haproxy-ubuntu/nested/slave02-resources.json b/mysql-mha-haproxy-ubuntu/nested/slave02-resources.json index c9c4f793d046..d04ee644ac75 100644 --- a/mysql-mha-haproxy-ubuntu/nested/slave02-resources.json +++ b/mysql-mha-haproxy-ubuntu/nested/slave02-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mysql-paas-replication/azuredeploy.json b/mysql-paas-replication/azuredeploy.json index 58571e14ac9e..047cf444d29d 100644 --- a/mysql-paas-replication/azuredeploy.json +++ b/mysql-paas-replication/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "serverName": { diff --git a/mysql-paas-replication/azuredeploy.parameters.json b/mysql-paas-replication/azuredeploy.parameters.json index 302e0726e0ae..bdd9b2536848 100644 --- a/mysql-paas-replication/azuredeploy.parameters.json +++ b/mysql-paas-replication/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "administratorLogin": { diff --git a/mysql-paas-replication/nested/mysql.json b/mysql-paas-replication/nested/mysql.json index 393299b2b4ba..f5b06f8d0552 100644 --- a/mysql-paas-replication/nested/mysql.json +++ b/mysql-paas-replication/nested/mysql.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sku": { diff --git a/mysql-paas-replication/nested/mysqlReplica.json b/mysql-paas-replication/nested/mysqlReplica.json index 9b5cc1ee18a1..c41d2400e5f8 100644 --- a/mysql-paas-replication/nested/mysqlReplica.json +++ b/mysql-paas-replication/nested/mysqlReplica.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sku": { diff --git a/mysql-replication/azuredeploy.json b/mysql-replication/azuredeploy.json index b5a7d439de90..b4bef825bbb9 100644 --- a/mysql-replication/azuredeploy.json +++ b/mysql-replication/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsName": { diff --git a/mysql-replication/azuredeploy.parameters.json b/mysql-replication/azuredeploy.parameters.json index b4e4b3ba45dd..a32a30b938c5 100644 --- a/mysql-replication/azuredeploy.parameters.json +++ b/mysql-replication/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsName": { diff --git a/mysql-replication/vnet-existing.json b/mysql-replication/vnet-existing.json index 454a66df0413..69885a1475f6 100644 --- a/mysql-replication/vnet-existing.json +++ b/mysql-replication/vnet-existing.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/mysql-replication/vnet-new.json b/mysql-replication/vnet-new.json index 35a313d90857..1eff83c72fc8 100644 --- a/mysql-replication/vnet-new.json +++ b/mysql-replication/vnet-new.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/mysql-standalone-server-ubuntu/azuredeploy.json b/mysql-standalone-server-ubuntu/azuredeploy.json index ad08d27642d6..d912f44e742a 100644 --- a/mysql-standalone-server-ubuntu/azuredeploy.json +++ b/mysql-standalone-server-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/mysql-standalone-server-ubuntu/azuredeploy.parameters.json b/mysql-standalone-server-ubuntu/azuredeploy.parameters.json index 251c640fde8a..c8698da5779b 100644 --- a/mysql-standalone-server-ubuntu/azuredeploy.parameters.json +++ b/mysql-standalone-server-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/nagios-on-ubuntu/azuredeploy.json b/nagios-on-ubuntu/azuredeploy.json index 06c3735e75e2..a7e65bd6e056 100644 --- a/nagios-on-ubuntu/azuredeploy.json +++ b/nagios-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/nagios-on-ubuntu/azuredeploy.parameters.json b/nagios-on-ubuntu/azuredeploy.parameters.json index a39e660a5c5a..affbf762b68f 100644 --- a/nagios-on-ubuntu/azuredeploy.parameters.json +++ b/nagios-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/neo4j-ubuntu-vm/azuredeploy.json b/neo4j-ubuntu-vm/azuredeploy.json index 577f56291063..3dcce1524c78 100644 --- a/neo4j-ubuntu-vm/azuredeploy.json +++ b/neo4j-ubuntu-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/neo4j-ubuntu-vm/azuredeploy.parameters.json b/neo4j-ubuntu-vm/azuredeploy.parameters.json index a8e0f95a200a..debbeb37e933 100644 --- a/neo4j-ubuntu-vm/azuredeploy.parameters.json +++ b/neo4j-ubuntu-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/netapp-ontap-sql/azuredeploy.json b/netapp-ontap-sql/azuredeploy.json index fe8699b823f0..e3abcf7b3349 100644 --- a/netapp-ontap-sql/azuredeploy.json +++ b/netapp-ontap-sql/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/netapp-ontap-sql/azuredeploy.parameters.json b/netapp-ontap-sql/azuredeploy.parameters.json index a5ee638674e6..32a5f8d9c9d2 100644 --- a/netapp-ontap-sql/azuredeploy.parameters.json +++ b/netapp-ontap-sql/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/netapp-ontap-sql/nested/jump-vm.json b/netapp-ontap-sql/nested/jump-vm.json index 27abf44353e9..5d080b81c2ec 100644 --- a/netapp-ontap-sql/nested/jump-vm.json +++ b/netapp-ontap-sql/nested/jump-vm.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUserName": { diff --git a/netapp-ontap-sql/nested/netapp-oncommand-cloudmanager.json b/netapp-ontap-sql/nested/netapp-oncommand-cloudmanager.json index e04d7dafc5a8..635ccb9ac653 100644 --- a/netapp-ontap-sql/nested/netapp-oncommand-cloudmanager.json +++ b/netapp-ontap-sql/nested/netapp-oncommand-cloudmanager.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUserName": { diff --git a/netapp-ontap-sql/nested/netapp-ontap-cloud.json b/netapp-ontap-sql/nested/netapp-ontap-cloud.json index c9b19e4d0a6d..20cdc817a0c1 100644 --- a/netapp-ontap-sql/nested/netapp-ontap-cloud.json +++ b/netapp-ontap-sql/nested/netapp-ontap-cloud.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminEmailAddress": { diff --git a/netapp-ontap-sql/nested/shared-resources.json b/netapp-ontap-sql/nested/shared-resources.json index 09d7caa563d9..acf94c669fd2 100644 --- a/netapp-ontap-sql/nested/shared-resources.json +++ b/netapp-ontap-sql/nested/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "webNsgName": { diff --git a/netapp-ontap-sql/nested/sql-netappotc-connect.json b/netapp-ontap-sql/nested/sql-netappotc-connect.json index cf8989542290..f6bc30cf9564 100644 --- a/netapp-ontap-sql/nested/sql-netappotc-connect.json +++ b/netapp-ontap-sql/nested/sql-netappotc-connect.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminEmailAddress": { diff --git a/netapp-ontap-sql/nested/sql-vm.json b/netapp-ontap-sql/nested/sql-vm.json index 6e645caa229f..10be9e2d0768 100644 --- a/netapp-ontap-sql/nested/sql-vm.json +++ b/netapp-ontap-sql/nested/sql-vm.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlVmName": { diff --git a/netki-wns-api-server-on-ubuntu/azuredeploy.json b/netki-wns-api-server-on-ubuntu/azuredeploy.json index 4db90bfc6f7a..f5eb000a4449 100644 --- a/netki-wns-api-server-on-ubuntu/azuredeploy.json +++ b/netki-wns-api-server-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/netki-wns-api-server-on-ubuntu/azuredeploy.parameters.json b/netki-wns-api-server-on-ubuntu/azuredeploy.parameters.json index e25f610d55ed..6eb7eda8a394 100644 --- a/netki-wns-api-server-on-ubuntu/azuredeploy.parameters.json +++ b/netki-wns-api-server-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/nextflow-genomics-cluster-ubuntu/azuredeploy.json b/nextflow-genomics-cluster-ubuntu/azuredeploy.json index 2703913f8e99..4a0b5d55dca5 100644 --- a/nextflow-genomics-cluster-ubuntu/azuredeploy.json +++ b/nextflow-genomics-cluster-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/nextflow-genomics-cluster-ubuntu/azuredeploy.parameters.json b/nextflow-genomics-cluster-ubuntu/azuredeploy.parameters.json index 41b72ea59f65..b7aab177d5a1 100644 --- a/nextflow-genomics-cluster-ubuntu/azuredeploy.parameters.json +++ b/nextflow-genomics-cluster-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/nfs-ha-cluster-ubuntu/azuredeploy.json b/nfs-ha-cluster-ubuntu/azuredeploy.json index 032b57b8104d..c0a2ec22186c 100644 --- a/nfs-ha-cluster-ubuntu/azuredeploy.json +++ b/nfs-ha-cluster-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { @@ -135,7 +135,7 @@ "properties": { "mode": "Incremental", "template": { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "resources": [] } diff --git a/nfs-ha-cluster-ubuntu/azuredeploy.parameters.json b/nfs-ha-cluster-ubuntu/azuredeploy.parameters.json index 66195d4689fb..d45ed13691b8 100644 --- a/nfs-ha-cluster-ubuntu/azuredeploy.parameters.json +++ b/nfs-ha-cluster-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "subnetId": { "value": "GET-PREREQ-subnetId" }, diff --git a/nfs-ha-cluster-ubuntu/nested/nfs-ha-vm.json b/nfs-ha-cluster-ubuntu/nested/nfs-ha-vm.json index 8bc0eae181b8..cc312d1fa4b2 100644 --- a/nfs-ha-cluster-ubuntu/nested/nfs-ha-vm.json +++ b/nfs-ha-cluster-ubuntu/nested/nfs-ha-vm.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { diff --git a/nfs-ha-cluster-ubuntu/nested/nfs-ha.json b/nfs-ha-cluster-ubuntu/nested/nfs-ha.json index e09a2ab819ca..137017a28f17 100644 --- a/nfs-ha-cluster-ubuntu/nested/nfs-ha.json +++ b/nfs-ha-cluster-ubuntu/nested/nfs-ha.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { diff --git a/nfs-ha-cluster-ubuntu/nested/nfs-ha.param.json b/nfs-ha-cluster-ubuntu/nested/nfs-ha.param.json index 0cad40f81a35..9ee4ea7c4232 100644 --- a/nfs-ha-cluster-ubuntu/nested/nfs-ha.param.json +++ b/nfs-ha-cluster-ubuntu/nested/nfs-ha.param.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { diff --git a/nfs-ha-cluster-ubuntu/prereqs/prereq.azuredeploy.json b/nfs-ha-cluster-ubuntu/prereqs/prereq.azuredeploy.json index ec0de04c6816..d0f5725ea90f 100644 --- a/nfs-ha-cluster-ubuntu/prereqs/prereq.azuredeploy.json +++ b/nfs-ha-cluster-ubuntu/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/nfs-ha-cluster-ubuntu/prereqs/prereq.azuredeploy.parameters.json b/nfs-ha-cluster-ubuntu/prereqs/prereq.azuredeploy.parameters.json index 97e77b1a1623..295490304522 100644 --- a/nfs-ha-cluster-ubuntu/prereqs/prereq.azuredeploy.parameters.json +++ b/nfs-ha-cluster-ubuntu/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/nylas-email-sync-engine/azuredeploy.json b/nylas-email-sync-engine/azuredeploy.json index dd69e58f2cc8..cd79af5e92b3 100644 --- a/nylas-email-sync-engine/azuredeploy.json +++ b/nylas-email-sync-engine/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/nylas-email-sync-engine/azuredeploy.parameters.json b/nylas-email-sync-engine/azuredeploy.parameters.json index 5e51bddb6b79..0d8649430901 100644 --- a/nylas-email-sync-engine/azuredeploy.parameters.json +++ b/nylas-email-sync-engine/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/octopus-deploy-tentacle-windows/azuredeploy.json b/octopus-deploy-tentacle-windows/azuredeploy.json index 14bf3d9cb166..57c46e7f0e07 100644 --- a/octopus-deploy-tentacle-windows/azuredeploy.json +++ b/octopus-deploy-tentacle-windows/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmAdminUsername": { diff --git a/octopus-deploy-tentacle-windows/azuredeploy.parameters.json b/octopus-deploy-tentacle-windows/azuredeploy.parameters.json index d1871b6974ef..bb98fd63e871 100644 --- a/octopus-deploy-tentacle-windows/azuredeploy.parameters.json +++ b/octopus-deploy-tentacle-windows/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmAdminUserName": { diff --git a/octopusdeploy3-single-vm-windows/azuredeploy.json b/octopusdeploy3-single-vm-windows/azuredeploy.json index 2697fa4e1eba..9d5bfa8507ea 100644 --- a/octopusdeploy3-single-vm-windows/azuredeploy.json +++ b/octopusdeploy3-single-vm-windows/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmAdminUsername": { diff --git a/octopusdeploy3-single-vm-windows/azuredeploy.parameters.json b/octopusdeploy3-single-vm-windows/azuredeploy.parameters.json index 07656be94f2a..63d9aba625c8 100644 --- a/octopusdeploy3-single-vm-windows/azuredeploy.parameters.json +++ b/octopusdeploy3-single-vm-windows/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmAdminUsername": { diff --git a/oms-active-directory-security-audit-solution/azuredeploy.json b/oms-active-directory-security-audit-solution/azuredeploy.json index 9f3e883c3741..1fdad915a82d 100644 --- a/oms-active-directory-security-audit-solution/azuredeploy.json +++ b/oms-active-directory-security-audit-solution/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/oms-active-directory-security-audit-solution/azuredeploy.parameters.json b/oms-active-directory-security-audit-solution/azuredeploy.parameters.json index 3ffb351eea0f..abced880535c 100644 --- a/oms-active-directory-security-audit-solution/azuredeploy.parameters.json +++ b/oms-active-directory-security-audit-solution/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/oms-all-deploy/azuredeploy.json b/oms-all-deploy/azuredeploy.json index 6339d7974e81..dd473215c6ec 100644 --- a/oms-all-deploy/azuredeploy.json +++ b/oms-all-deploy/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsRecoveryVaultName": { diff --git a/oms-all-deploy/azuredeploy.parameters.json b/oms-all-deploy/azuredeploy.parameters.json index 0c78d8c4501b..f0f2c65afd1d 100644 --- a/oms-all-deploy/azuredeploy.parameters.json +++ b/oms-all-deploy/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "omsRecoveryVaultName": { diff --git a/oms-all-deploy/nestedtemplates/omsAutomation.json b/oms-all-deploy/nestedtemplates/omsAutomation.json index e31cfd43fb40..e6900672a300 100644 --- a/oms-all-deploy/nestedtemplates/omsAutomation.json +++ b/oms-all-deploy/nestedtemplates/omsAutomation.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsAutomationAccountName": { diff --git a/oms-all-deploy/nestedtemplates/omsRecoveryServices.json b/oms-all-deploy/nestedtemplates/omsRecoveryServices.json index ba2d22d17048..a23b0ae929e0 100644 --- a/oms-all-deploy/nestedtemplates/omsRecoveryServices.json +++ b/oms-all-deploy/nestedtemplates/omsRecoveryServices.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsRecoveryVaultName": { diff --git a/oms-all-deploy/nestedtemplates/omsWorkspace.json b/oms-all-deploy/nestedtemplates/omsWorkspace.json index e7ad2540c0f2..c2f210d80e6f 100644 --- a/oms-all-deploy/nestedtemplates/omsWorkspace.json +++ b/oms-all-deploy/nestedtemplates/omsWorkspace.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspaceName": { diff --git a/oms-automation-solution/azuredeploy.json b/oms-automation-solution/azuredeploy.json index eb42cf58c238..ba0d2bbbbb1b 100644 --- a/oms-automation-solution/azuredeploy.json +++ b/oms-automation-solution/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceRegion": { diff --git a/oms-automation-solution/azuredeploy.parameters.json b/oms-automation-solution/azuredeploy.parameters.json index e328367168f5..f7257fdd38de 100644 --- a/oms-automation-solution/azuredeploy.parameters.json +++ b/oms-automation-solution/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/oms-azure-resource-usage-solution/azuredeploy.json b/oms-azure-resource-usage-solution/azuredeploy.json index a9987494135f..ab3c3dd5664d 100644 --- a/oms-azure-resource-usage-solution/azuredeploy.json +++ b/oms-azure-resource-usage-solution/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsLogAnalyticsWorkspaceName": { diff --git a/oms-azure-resource-usage-solution/azuredeploy.parameters.json b/oms-azure-resource-usage-solution/azuredeploy.parameters.json index 189065b75c20..628e430d8e60 100644 --- a/oms-azure-resource-usage-solution/azuredeploy.parameters.json +++ b/oms-azure-resource-usage-solution/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "omsLogAnalyticsWorkspaceName": { diff --git a/oms-azure-resource-usage-solution/azuredeployonlyautomation.json b/oms-azure-resource-usage-solution/azuredeployonlyautomation.json index 10fb176d1bad..8a57c4cdd4db 100644 --- a/oms-azure-resource-usage-solution/azuredeployonlyautomation.json +++ b/oms-azure-resource-usage-solution/azuredeployonlyautomation.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspaceId": { diff --git a/oms-azure-resource-usage-solution/azuredeployonlyloganalytics.json b/oms-azure-resource-usage-solution/azuredeployonlyloganalytics.json index e7ef8db9ede1..ed02fe8d798a 100644 --- a/oms-azure-resource-usage-solution/azuredeployonlyloganalytics.json +++ b/oms-azure-resource-usage-solution/azuredeployonlyloganalytics.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsLogAnalyticsWorkspaceName": { diff --git a/oms-azure-storage-analytics-solution/azuredeploy.json b/oms-azure-storage-analytics-solution/azuredeploy.json index a805dda1edb2..966c634379d5 100644 --- a/oms-azure-storage-analytics-solution/azuredeploy.json +++ b/oms-azure-storage-analytics-solution/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "deploymentNameSuffix": { diff --git a/oms-azure-storage-analytics-solution/azuredeploy.parameters.json b/oms-azure-storage-analytics-solution/azuredeploy.parameters.json index 086d14ef58e4..0338f77393c2 100644 --- a/oms-azure-storage-analytics-solution/azuredeploy.parameters.json +++ b/oms-azure-storage-analytics-solution/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "deploymentNameSuffix": { diff --git a/oms-azure-storage-analytics-solution/nestedtemplates/deployToLinkedWorkspaceAnalyticsOnly.json b/oms-azure-storage-analytics-solution/nestedtemplates/deployToLinkedWorkspaceAnalyticsOnly.json index 80b2d329dcca..6dcefadcee66 100644 --- a/oms-azure-storage-analytics-solution/nestedtemplates/deployToLinkedWorkspaceAnalyticsOnly.json +++ b/oms-azure-storage-analytics-solution/nestedtemplates/deployToLinkedWorkspaceAnalyticsOnly.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "deploymentNameSuffix": { diff --git a/oms-azure-storage-analytics-solution/nestedtemplates/deployToLinkedWorkspaceWithAuditLogs.json b/oms-azure-storage-analytics-solution/nestedtemplates/deployToLinkedWorkspaceWithAuditLogs.json index a68e7ce6297a..1ca6f8b5bdd1 100644 --- a/oms-azure-storage-analytics-solution/nestedtemplates/deployToLinkedWorkspaceWithAuditLogs.json +++ b/oms-azure-storage-analytics-solution/nestedtemplates/deployToLinkedWorkspaceWithAuditLogs.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "deploymentNameSuffix": { diff --git a/oms-azure-storage-analytics-solution/nestedtemplates/deployToWorkspaceAnalyticsOnly.json b/oms-azure-storage-analytics-solution/nestedtemplates/deployToWorkspaceAnalyticsOnly.json index 1115c00a4c32..5786ca9cd146 100644 --- a/oms-azure-storage-analytics-solution/nestedtemplates/deployToWorkspaceAnalyticsOnly.json +++ b/oms-azure-storage-analytics-solution/nestedtemplates/deployToWorkspaceAnalyticsOnly.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "deploymentNameSuffix": { diff --git a/oms-azure-storage-analytics-solution/nestedtemplates/deployToWorkspaceWithAuditLogs.json b/oms-azure-storage-analytics-solution/nestedtemplates/deployToWorkspaceWithAuditLogs.json index b60f481216db..693078aaa5fc 100644 --- a/oms-azure-storage-analytics-solution/nestedtemplates/deployToWorkspaceWithAuditLogs.json +++ b/oms-azure-storage-analytics-solution/nestedtemplates/deployToWorkspaceWithAuditLogs.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "deploymentNameSuffix": { diff --git a/oms-azure-storage-analytics-solution/nestedtemplates/omsDeployStorageAnalyticsOnly.json b/oms-azure-storage-analytics-solution/nestedtemplates/omsDeployStorageAnalyticsOnly.json index fc752443ff54..a05b0165598a 100644 --- a/oms-azure-storage-analytics-solution/nestedtemplates/omsDeployStorageAnalyticsOnly.json +++ b/oms-azure-storage-analytics-solution/nestedtemplates/omsDeployStorageAnalyticsOnly.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "deploymentNameSuffix": { diff --git a/oms-azure-storage-analytics-solution/nestedtemplates/omsDeployStorageAnalyticsWithAuditLogs.json b/oms-azure-storage-analytics-solution/nestedtemplates/omsDeployStorageAnalyticsWithAuditLogs.json index 1f3e07b7d8d9..e02468323dc1 100644 --- a/oms-azure-storage-analytics-solution/nestedtemplates/omsDeployStorageAnalyticsWithAuditLogs.json +++ b/oms-azure-storage-analytics-solution/nestedtemplates/omsDeployStorageAnalyticsWithAuditLogs.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "deploymentNameSuffix": { diff --git a/oms-azure-vminventory-solution/azuredeploy.json b/oms-azure-vminventory-solution/azuredeploy.json index ee8e8f491c06..fecb29282857 100644 --- a/oms-azure-vminventory-solution/azuredeploy.json +++ b/oms-azure-vminventory-solution/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsLogAnalyticsWorkspaceName": { diff --git a/oms-azure-vminventory-solution/azuredeploy.parameters.json b/oms-azure-vminventory-solution/azuredeploy.parameters.json index 579a54580cfe..b53943f4a9af 100644 --- a/oms-azure-vminventory-solution/azuredeploy.parameters.json +++ b/oms-azure-vminventory-solution/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "omsLogAnalyticsWorkspaceName": { diff --git a/oms-azure-vminventory-solution/azuredeployonlyautomation.json b/oms-azure-vminventory-solution/azuredeployonlyautomation.json index ddc23e56fc85..47cccf163ae3 100644 --- a/oms-azure-vminventory-solution/azuredeployonlyautomation.json +++ b/oms-azure-vminventory-solution/azuredeployonlyautomation.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspaceId": { diff --git a/oms-azure-vminventory-solution/azuredeployonlyloganalytics.json b/oms-azure-vminventory-solution/azuredeployonlyloganalytics.json index cee634bcc44c..5f065c01e1f2 100644 --- a/oms-azure-vminventory-solution/azuredeployonlyloganalytics.json +++ b/oms-azure-vminventory-solution/azuredeployonlyloganalytics.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsLogAnalyticsWorkspaceName": { diff --git a/oms-azurensg-solution/azuredeploy.json b/oms-azurensg-solution/azuredeploy.json index 616637500d6e..4137124fbc54 100644 --- a/oms-azurensg-solution/azuredeploy.json +++ b/oms-azurensg-solution/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/oms-azurensg-solution/azuredeploy.parameters.json b/oms-azurensg-solution/azuredeploy.parameters.json index 53625b4e6670..85930520c62e 100644 --- a/oms-azurensg-solution/azuredeploy.parameters.json +++ b/oms-azurensg-solution/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceLocation": { diff --git a/oms-cloudfoundry-solution/azuredeploy.json b/oms-cloudfoundry-solution/azuredeploy.json index 7cb5f6491edf..493410ee2da2 100644 --- a/oms-cloudfoundry-solution/azuredeploy.json +++ b/oms-cloudfoundry-solution/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspaceName": { diff --git a/oms-cloudfoundry-solution/azuredeploy.parameters.json b/oms-cloudfoundry-solution/azuredeploy.parameters.json index 96443674ef6a..149f27363826 100644 --- a/oms-cloudfoundry-solution/azuredeploy.parameters.json +++ b/oms-cloudfoundry-solution/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspaceRegion": { diff --git a/oms-cloudfoundry-solution/nested/omsAlerts.json b/oms-cloudfoundry-solution/nested/omsAlerts.json index 08d72050f634..851ffc0bbd43 100644 --- a/oms-cloudfoundry-solution/nested/omsAlerts.json +++ b/oms-cloudfoundry-solution/nested/omsAlerts.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspaceName": { diff --git a/oms-cloudfoundry-solution/nested/omsCustomViews.json b/oms-cloudfoundry-solution/nested/omsCustomViews.json index 359a52e12f14..ca1aac2aa6f8 100644 --- a/oms-cloudfoundry-solution/nested/omsCustomViews.json +++ b/oms-cloudfoundry-solution/nested/omsCustomViews.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspaceName": { diff --git a/oms-cloudfoundry-solution/nested/omsSavedSearches.json b/oms-cloudfoundry-solution/nested/omsSavedSearches.json index d8a6876d2cb2..839fc6c7de70 100644 --- a/oms-cloudfoundry-solution/nested/omsSavedSearches.json +++ b/oms-cloudfoundry-solution/nested/omsSavedSearches.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspaceName": { diff --git a/oms-cloudfoundry-solution/nested/omsWorkspace.json b/oms-cloudfoundry-solution/nested/omsWorkspace.json index c250440657f0..db0ab823f24e 100644 --- a/oms-cloudfoundry-solution/nested/omsWorkspace.json +++ b/oms-cloudfoundry-solution/nested/omsWorkspace.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspaceName": { diff --git a/oms-existing-storage-account/azuredeploy.json b/oms-existing-storage-account/azuredeploy.json index b64d4ca6ba90..59c765039ec7 100644 --- a/oms-existing-storage-account/azuredeploy.json +++ b/oms-existing-storage-account/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspaceName": { diff --git a/oms-existing-storage-account/azuredeploy.parameters.json b/oms-existing-storage-account/azuredeploy.parameters.json index e4f7be4d6cb9..fe649519f475 100644 --- a/oms-existing-storage-account/azuredeploy.parameters.json +++ b/oms-existing-storage-account/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "omsworkspaceName": { diff --git a/oms-existing-storage-account/prereqs/prereq.azuredeploy.json b/oms-existing-storage-account/prereqs/prereq.azuredeploy.json index ee71c65b33fc..4ef453dd0ff8 100644 --- a/oms-existing-storage-account/prereqs/prereq.azuredeploy.json +++ b/oms-existing-storage-account/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { }, diff --git a/oms-existing-storage-account/prereqs/prereq.azuredeploy.parameters.json b/oms-existing-storage-account/prereqs/prereq.azuredeploy.parameters.json index abc1324aa7e7..4c451f19bb2f 100644 --- a/oms-existing-storage-account/prereqs/prereq.azuredeploy.parameters.json +++ b/oms-existing-storage-account/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { } diff --git a/oms-hyperv-replica-solution/azuredeploy.json b/oms-hyperv-replica-solution/azuredeploy.json index 0f3d420fcf88..d16aa407be0d 100644 --- a/oms-hyperv-replica-solution/azuredeploy.json +++ b/oms-hyperv-replica-solution/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.1.0", "parameters": { "workspaceName": { diff --git a/oms-hyperv-replica-solution/azuredeploy.parameters.json b/oms-hyperv-replica-solution/azuredeploy.parameters.json index 55e56173d793..c554a4fbd86b 100644 --- a/oms-hyperv-replica-solution/azuredeploy.parameters.json +++ b/oms-hyperv-replica-solution/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/oms-kemp-applicationdelivery-solution/azuredeploy.json b/oms-kemp-applicationdelivery-solution/azuredeploy.json index cd7adb3b5f67..f702c1bc767a 100644 --- a/oms-kemp-applicationdelivery-solution/azuredeploy.json +++ b/oms-kemp-applicationdelivery-solution/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsLogAnalyticsWorkspaceName": { diff --git a/oms-kemp-applicationdelivery-solution/azuredeploy.parameters.json b/oms-kemp-applicationdelivery-solution/azuredeploy.parameters.json index 43a3ff111f67..aabfa5e1c1ba 100644 --- a/oms-kemp-applicationdelivery-solution/azuredeploy.parameters.json +++ b/oms-kemp-applicationdelivery-solution/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "omsLogAnalyticsWorkspaceName": { diff --git a/oms-scomacs-solution/azuredeploy.json b/oms-scomacs-solution/azuredeploy.json index 4df0bdb25235..3970ea9c550d 100644 --- a/oms-scomacs-solution/azuredeploy.json +++ b/oms-scomacs-solution/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/oms-scomacs-solution/azuredeploy.parameters.json b/oms-scomacs-solution/azuredeploy.parameters.json index d9c9113ef921..b6e7c6036a28 100644 --- a/oms-scomacs-solution/azuredeploy.parameters.json +++ b/oms-scomacs-solution/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/oms-servicebus-solution/azuredeploy.json b/oms-servicebus-solution/azuredeploy.json index a5cacb7c878b..04cab488b475 100644 --- a/oms-servicebus-solution/azuredeploy.json +++ b/oms-servicebus-solution/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspaceName": { diff --git a/oms-servicebus-solution/azuredeploy.parameters.json b/oms-servicebus-solution/azuredeploy.parameters.json index 4667280821e0..b51a76ea2612 100644 --- a/oms-servicebus-solution/azuredeploy.parameters.json +++ b/oms-servicebus-solution/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "omsWorkspaceName": { diff --git a/oms-servicebus-solution/nestedtemplates/addMultipleSubscriptions.json b/oms-servicebus-solution/nestedtemplates/addMultipleSubscriptions.json index df4ec9382516..b294f2a690c1 100644 --- a/oms-servicebus-solution/nestedtemplates/addMultipleSubscriptions.json +++ b/oms-servicebus-solution/nestedtemplates/addMultipleSubscriptions.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "OMSWorkspaceId": { diff --git a/oms-vmm-analytics/azuredeploy.json b/oms-vmm-analytics/azuredeploy.json index cc93849cc3bb..146f323ea609 100644 --- a/oms-vmm-analytics/azuredeploy.json +++ b/oms-vmm-analytics/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/oms-vmm-analytics/azuredeploy.parameters.json b/oms-vmm-analytics/azuredeploy.parameters.json index ddfbbfee6e54..cc046db71f58 100644 --- a/oms-vmm-analytics/azuredeploy.parameters.json +++ b/oms-vmm-analytics/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/openchain-blockchain-coinprism/azuredeploy.json b/openchain-blockchain-coinprism/azuredeploy.json index 427a27c4c8b2..4c45e3a8296e 100644 --- a/openchain-blockchain-coinprism/azuredeploy.json +++ b/openchain-blockchain-coinprism/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountNamePrefix": { diff --git a/openchain-blockchain-coinprism/azuredeploy.parameters.json b/openchain-blockchain-coinprism/azuredeploy.parameters.json index 50db2dc75457..8cda6d9b014a 100644 --- a/openchain-blockchain-coinprism/azuredeploy.parameters.json +++ b/openchain-blockchain-coinprism/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountNamePrefix": { diff --git a/openedx-devstack-ubuntu/azuredeploy.json b/openedx-devstack-ubuntu/azuredeploy.json index 9d83139a54e9..f3b2b279ce27 100644 --- a/openedx-devstack-ubuntu/azuredeploy.json +++ b/openedx-devstack-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/openedx-devstack-ubuntu/azuredeploy.parameters.json b/openedx-devstack-ubuntu/azuredeploy.parameters.json index ad666cb30c6c..4eec47763b16 100644 --- a/openedx-devstack-ubuntu/azuredeploy.parameters.json +++ b/openedx-devstack-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/openedx-fullstack-ubuntu/azuredeploy.json b/openedx-fullstack-ubuntu/azuredeploy.json index e628b96b27f3..d8455e6620d3 100644 --- a/openedx-fullstack-ubuntu/azuredeploy.json +++ b/openedx-fullstack-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/openedx-fullstack-ubuntu/azuredeploy.parameters.json b/openedx-fullstack-ubuntu/azuredeploy.parameters.json index 4932b2752461..fa9f3b1a4757 100644 --- a/openedx-fullstack-ubuntu/azuredeploy.parameters.json +++ b/openedx-fullstack-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/openedx-scalable-ubuntu/azuredeploy.json b/openedx-scalable-ubuntu/azuredeploy.json index d5bae2e77802..e80d47ecd802 100644 --- a/openedx-scalable-ubuntu/azuredeploy.json +++ b/openedx-scalable-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/openedx-scalable-ubuntu/azuredeploy.parameters.json b/openedx-scalable-ubuntu/azuredeploy.parameters.json index 63462654809b..768764cde6fe 100644 --- a/openedx-scalable-ubuntu/azuredeploy.parameters.json +++ b/openedx-scalable-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/openjdk-tomcat-ubuntu-vm/azuredeploy.json b/openjdk-tomcat-ubuntu-vm/azuredeploy.json index 394e29021b40..4a6091990b59 100644 --- a/openjdk-tomcat-ubuntu-vm/azuredeploy.json +++ b/openjdk-tomcat-ubuntu-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "javaPackageName": { diff --git a/openjdk-tomcat-ubuntu-vm/azuredeploy.parameters.json b/openjdk-tomcat-ubuntu-vm/azuredeploy.parameters.json index 76f3adabc1af..5540231a28ea 100644 --- a/openjdk-tomcat-ubuntu-vm/azuredeploy.parameters.json +++ b/openjdk-tomcat-ubuntu-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "javaPackageName": { diff --git a/openldap-cluster-ubuntu/azuredeploy.json b/openldap-cluster-ubuntu/azuredeploy.json index 4baf1c25b26a..0ba9e5b771d5 100644 --- a/openldap-cluster-ubuntu/azuredeploy.json +++ b/openldap-cluster-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmAdminUsername": { diff --git a/openldap-cluster-ubuntu/azuredeploy.parameters.json b/openldap-cluster-ubuntu/azuredeploy.parameters.json index b1f732065301..c6637b9be425 100644 --- a/openldap-cluster-ubuntu/azuredeploy.parameters.json +++ b/openldap-cluster-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmAdminUsername": { diff --git a/openldap-singlevm-ubuntu/azuredeploy.json b/openldap-singlevm-ubuntu/azuredeploy.json index c4021179dd8c..c27705d3b497 100644 --- a/openldap-singlevm-ubuntu/azuredeploy.json +++ b/openldap-singlevm-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmAdminUsername": { diff --git a/openldap-singlevm-ubuntu/azuredeploy.parameters.json b/openldap-singlevm-ubuntu/azuredeploy.parameters.json index d9fef5ab205a..8bca8229e1cf 100644 --- a/openldap-singlevm-ubuntu/azuredeploy.parameters.json +++ b/openldap-singlevm-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmAdminUsername": { diff --git a/opensis-cluster-ubuntu/azuredeploy.json b/opensis-cluster-ubuntu/azuredeploy.json index 3bad075266bf..f4d609cb9526 100644 --- a/opensis-cluster-ubuntu/azuredeploy.json +++ b/opensis-cluster-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/opensis-cluster-ubuntu/azuredeploy.parameters.json b/opensis-cluster-ubuntu/azuredeploy.parameters.json index 0976f8a78abe..96545795c7fd 100644 --- a/opensis-cluster-ubuntu/azuredeploy.parameters.json +++ b/opensis-cluster-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/opensis-singlevm-ubuntu/azuredeploy.json b/opensis-singlevm-ubuntu/azuredeploy.json index 32b69329484a..270584697e32 100644 --- a/opensis-singlevm-ubuntu/azuredeploy.json +++ b/opensis-singlevm-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/opensis-singlevm-ubuntu/azuredeploy.parameters.json b/opensis-singlevm-ubuntu/azuredeploy.parameters.json index c311bc06b5d9..91be4a12305b 100644 --- a/opensis-singlevm-ubuntu/azuredeploy.parameters.json +++ b/opensis-singlevm-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/openvpn-access-server-ubuntu/azuredeploy.json b/openvpn-access-server-ubuntu/azuredeploy.json index e6f49a6ab1b0..a63315d4abce 100644 --- a/openvpn-access-server-ubuntu/azuredeploy.json +++ b/openvpn-access-server-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/openvpn-access-server-ubuntu/azuredeploy.parameters.json b/openvpn-access-server-ubuntu/azuredeploy.parameters.json index 68bc1941c7f6..3cb8e62e1473 100644 --- a/openvpn-access-server-ubuntu/azuredeploy.parameters.json +++ b/openvpn-access-server-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/orchard-cms-video-portal/azuredeploy.json b/orchard-cms-video-portal/azuredeploy.json index e2dd21f6ec87..d119fb0eeb61 100644 --- a/orchard-cms-video-portal/azuredeploy.json +++ b/orchard-cms-video-portal/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "appName": { diff --git a/orchard-cms-video-portal/azuredeploy.parameters.json b/orchard-cms-video-portal/azuredeploy.parameters.json index cd37f9d91d91..cc8e9b365b3e 100644 --- a/orchard-cms-video-portal/azuredeploy.parameters.json +++ b/orchard-cms-video-portal/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "appName": { diff --git a/pf-freebsd-setup/azuredeploy.json b/pf-freebsd-setup/azuredeploy.json index 98e6a14b001e..90a2ebae8906 100644 --- a/pf-freebsd-setup/azuredeploy.json +++ b/pf-freebsd-setup/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "frontendPrivateNicIP1": { diff --git a/pf-freebsd-setup/azuredeploy.parameters.json b/pf-freebsd-setup/azuredeploy.parameters.json index d7d12423cecf..935b7f5b65e7 100644 --- a/pf-freebsd-setup/azuredeploy.parameters.json +++ b/pf-freebsd-setup/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "frontendPrivateNicIP1": { diff --git a/phabricator-on-ubuntu/azuredeploy.json b/phabricator-on-ubuntu/azuredeploy.json index c28a975bbc98..b9774db55041 100644 --- a/phabricator-on-ubuntu/azuredeploy.json +++ b/phabricator-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/phabricator-on-ubuntu/azuredeploy.parameters.json b/phabricator-on-ubuntu/azuredeploy.parameters.json index 1e1c2cf88827..ae56c2200e44 100644 --- a/phabricator-on-ubuntu/azuredeploy.parameters.json +++ b/phabricator-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/php-pgsql-freebsd-setup/azuredeploy.json b/php-pgsql-freebsd-setup/azuredeploy.json index 86b3ef32a44b..cbb5de45d549 100644 --- a/php-pgsql-freebsd-setup/azuredeploy.json +++ b/php-pgsql-freebsd-setup/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsName": { diff --git a/php-pgsql-freebsd-setup/azuredeploy.parameters.json b/php-pgsql-freebsd-setup/azuredeploy.parameters.json index bc90a0cf1ea1..e34533f05ce8 100644 --- a/php-pgsql-freebsd-setup/azuredeploy.parameters.json +++ b/php-pgsql-freebsd-setup/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsName": { diff --git a/pivotalcloudfoundry-apigee/Apigee/ApigeeNotRequired.json b/pivotalcloudfoundry-apigee/Apigee/ApigeeNotRequired.json index 905c43ce68b9..b694eeca7f4b 100644 --- a/pivotalcloudfoundry-apigee/Apigee/ApigeeNotRequired.json +++ b/pivotalcloudfoundry-apigee/Apigee/ApigeeNotRequired.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "tshirtSize": { diff --git a/pivotalcloudfoundry-apigee/Apigee/ApigeeRequired.json b/pivotalcloudfoundry-apigee/Apigee/ApigeeRequired.json index fa47744b2281..d6c392f993cc 100644 --- a/pivotalcloudfoundry-apigee/Apigee/ApigeeRequired.json +++ b/pivotalcloudfoundry-apigee/Apigee/ApigeeRequired.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/pivotalcloudfoundry-apigee/Apigee/empty-resources.json b/pivotalcloudfoundry-apigee/Apigee/empty-resources.json index 568f78d6083f..d16c2170f48e 100644 --- a/pivotalcloudfoundry-apigee/Apigee/empty-resources.json +++ b/pivotalcloudfoundry-apigee/Apigee/empty-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/pivotalcloudfoundry-apigee/Apigee/management-instances-sshPublicKey.json b/pivotalcloudfoundry-apigee/Apigee/management-instances-sshPublicKey.json index 8b9ec3663bd8..cf9bb1dc4fc2 100644 --- a/pivotalcloudfoundry-apigee/Apigee/management-instances-sshPublicKey.json +++ b/pivotalcloudfoundry-apigee/Apigee/management-instances-sshPublicKey.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/pivotalcloudfoundry-apigee/Apigee/shared-resources.json b/pivotalcloudfoundry-apigee/Apigee/shared-resources.json index cbfcea142547..55836692c298 100644 --- a/pivotalcloudfoundry-apigee/Apigee/shared-resources.json +++ b/pivotalcloudfoundry-apigee/Apigee/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/pivotalcloudfoundry-apigee/azuredeploy.json b/pivotalcloudfoundry-apigee/azuredeploy.json index 5d6d52789d25..401bcdbbf714 100644 --- a/pivotalcloudfoundry-apigee/azuredeploy.json +++ b/pivotalcloudfoundry-apigee/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/pivotalcloudfoundry-apigee/azuredeploy.parameters.json b/pivotalcloudfoundry-apigee/azuredeploy.parameters.json index 4847f57454f0..b371c4971aa9 100644 --- a/pivotalcloudfoundry-apigee/azuredeploy.parameters.json +++ b/pivotalcloudfoundry-apigee/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/pivotalcloudfoundry-apigee/pcf/pcfdeploy.json b/pivotalcloudfoundry-apigee/pcf/pcfdeploy.json index 4b7dd203d746..bb41a27c0c87 100644 --- a/pivotalcloudfoundry-apigee/pcf/pcfdeploy.json +++ b/pivotalcloudfoundry-apigee/pcf/pcfdeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "apigeeEdge": { diff --git a/postgresql-on-ubuntu/azuredeploy.json b/postgresql-on-ubuntu/azuredeploy.json index cfeb0e501e1f..2328de28591a 100644 --- a/postgresql-on-ubuntu/azuredeploy.json +++ b/postgresql-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "domainName": { diff --git a/postgresql-on-ubuntu/azuredeploy.parameters.json b/postgresql-on-ubuntu/azuredeploy.parameters.json index 0cea2dc62205..b817d78af606 100644 --- a/postgresql-on-ubuntu/azuredeploy.parameters.json +++ b/postgresql-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/postgresql-on-ubuntu/database-16disk-resources.json b/postgresql-on-ubuntu/database-16disk-resources.json index 8bda3d1df6ff..a31251244422 100644 --- a/postgresql-on-ubuntu/database-16disk-resources.json +++ b/postgresql-on-ubuntu/database-16disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/postgresql-on-ubuntu/database-2disk-resources.json b/postgresql-on-ubuntu/database-2disk-resources.json index b4a4a5a5b387..7468f2ac113b 100644 --- a/postgresql-on-ubuntu/database-2disk-resources.json +++ b/postgresql-on-ubuntu/database-2disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/postgresql-on-ubuntu/database-8disk-resources.json b/postgresql-on-ubuntu/database-8disk-resources.json index d1a1e96d8baf..d6165cc32a6a 100644 --- a/postgresql-on-ubuntu/database-8disk-resources.json +++ b/postgresql-on-ubuntu/database-8disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/postgresql-on-ubuntu/empty-resources.json b/postgresql-on-ubuntu/empty-resources.json index d5538f15090d..0de62e653f0f 100644 --- a/postgresql-on-ubuntu/empty-resources.json +++ b/postgresql-on-ubuntu/empty-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminPassword": { diff --git a/postgresql-on-ubuntu/jumpbox-resources.json b/postgresql-on-ubuntu/jumpbox-resources.json index 2c67c1bf2a7a..870a99d6309b 100644 --- a/postgresql-on-ubuntu/jumpbox-resources.json +++ b/postgresql-on-ubuntu/jumpbox-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/postgresql-on-ubuntu/shared-resources.json b/postgresql-on-ubuntu/shared-resources.json index ff184ff53cc6..d45edfd5914f 100644 --- a/postgresql-on-ubuntu/shared-resources.json +++ b/postgresql-on-ubuntu/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "availabilitySetSettings": { diff --git a/postgresql-standalone-server-ubuntu/azuredeploy.json b/postgresql-standalone-server-ubuntu/azuredeploy.json index f6b2da78e726..632621c29c9b 100644 --- a/postgresql-standalone-server-ubuntu/azuredeploy.json +++ b/postgresql-standalone-server-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/postgresql-standalone-server-ubuntu/azuredeploy.parameters.json b/postgresql-standalone-server-ubuntu/azuredeploy.parameters.json index 4eebf6e43b05..fc8303287146 100644 --- a/postgresql-standalone-server-ubuntu/azuredeploy.parameters.json +++ b/postgresql-standalone-server-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/pubnub-eventhub-bridge/azuredeploy.json b/pubnub-eventhub-bridge/azuredeploy.json index 8f785453b73c..6bb0ea345668 100755 --- a/pubnub-eventhub-bridge/azuredeploy.json +++ b/pubnub-eventhub-bridge/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "Event Hub Namespace": { diff --git a/pubnub-eventhub-bridge/azuredeploy.parameters.json b/pubnub-eventhub-bridge/azuredeploy.parameters.json index cef312908402..b925672cfc23 100755 --- a/pubnub-eventhub-bridge/azuredeploy.parameters.json +++ b/pubnub-eventhub-bridge/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "Event Hub Namespace": { diff --git a/puppet-agent-linux/azuredeploy.json b/puppet-agent-linux/azuredeploy.json index 036ed5f12983..6702fbd5356e 100644 --- a/puppet-agent-linux/azuredeploy.json +++ b/puppet-agent-linux/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmSize": { diff --git a/puppet-agent-linux/azuredeploy.parameters.json b/puppet-agent-linux/azuredeploy.parameters.json index cd0452c5fae3..5de2726bb575 100644 --- a/puppet-agent-linux/azuredeploy.parameters.json +++ b/puppet-agent-linux/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "username": { diff --git a/puppet-agent-windows/azuredeploy.json b/puppet-agent-windows/azuredeploy.json index 56c6ce036aa0..918fa042f139 100644 --- a/puppet-agent-windows/azuredeploy.json +++ b/puppet-agent-windows/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountNamePrefix": { diff --git a/puppet-agent-windows/azuredeploy.parameters.json b/puppet-agent-windows/azuredeploy.parameters.json index a9c30ee7160c..a59a045091e7 100644 --- a/puppet-agent-windows/azuredeploy.parameters.json +++ b/puppet-agent-windows/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountNamePrefix": { diff --git a/puppet-enterprise-cluster/azuredeploy.json b/puppet-enterprise-cluster/azuredeploy.json index 05496e128dac..22641c0185ab 100644 --- a/puppet-enterprise-cluster/azuredeploy.json +++ b/puppet-enterprise-cluster/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/puppet-enterprise-cluster/azuredeploy.parameters.json b/puppet-enterprise-cluster/azuredeploy.parameters.json index f8c3e0a551cf..7c03b269bd1e 100644 --- a/puppet-enterprise-cluster/azuredeploy.parameters.json +++ b/puppet-enterprise-cluster/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/puppet-enterprise-rhel-win/azuredeploy.json b/puppet-enterprise-rhel-win/azuredeploy.json index 9abed8fa036f..4cf6698bda7a 100644 --- a/puppet-enterprise-rhel-win/azuredeploy.json +++ b/puppet-enterprise-rhel-win/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmUsername": { diff --git a/puppet-enterprise-rhel-win/azuredeploy.parameters.json b/puppet-enterprise-rhel-win/azuredeploy.parameters.json index a29e4cdb82e3..8b10a47a3b02 100644 --- a/puppet-enterprise-rhel-win/azuredeploy.parameters.json +++ b/puppet-enterprise-rhel-win/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmUsername": { diff --git a/python-proxy-on-ubuntu/azuredeploy.json b/python-proxy-on-ubuntu/azuredeploy.json index 42d598a1350e..22dfdff181fa 100644 --- a/python-proxy-on-ubuntu/azuredeploy.json +++ b/python-proxy-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/python-proxy-on-ubuntu/azuredeploy.parameters.json b/python-proxy-on-ubuntu/azuredeploy.parameters.json index f6f2aca66840..901a58cdcb16 100644 --- a/python-proxy-on-ubuntu/azuredeploy.parameters.json +++ b/python-proxy-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/qlik-sense-enterprise/azuredeploy.json b/qlik-sense-enterprise/azuredeploy.json index 180ebdefecf1..b85d706203a5 100644 --- a/qlik-sense-enterprise/azuredeploy.json +++ b/qlik-sense-enterprise/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "_artifactsLocation": { diff --git a/qlik-sense-enterprise/azuredeploy.parameters.json b/qlik-sense-enterprise/azuredeploy.parameters.json index 66b07da110d9..da0dd72b0b0f 100644 --- a/qlik-sense-enterprise/azuredeploy.parameters.json +++ b/qlik-sense-enterprise/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/radium-blockchain-ubuntu/azuredeploy.json b/radium-blockchain-ubuntu/azuredeploy.json index 5c21cfb7a5ab..825c567d8560 100644 --- a/radium-blockchain-ubuntu/azuredeploy.json +++ b/radium-blockchain-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/radium-blockchain-ubuntu/azuredeploy.parameters.json b/radium-blockchain-ubuntu/azuredeploy.parameters.json index 225cc59cf5a2..b54ccc3b85b4 100644 --- a/radium-blockchain-ubuntu/azuredeploy.parameters.json +++ b/radium-blockchain-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/rds-deployment-existing-ad/azuredeploy.json b/rds-deployment-existing-ad/azuredeploy.json index 4ade233951c2..263cfd821b5b 100644 --- a/rds-deployment-existing-ad/azuredeploy.json +++ b/rds-deployment-existing-ad/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/rds-deployment-existing-ad/azuredeploy.parameters.json b/rds-deployment-existing-ad/azuredeploy.parameters.json index d8ded1ebbc5b..1c111d896cbc 100644 --- a/rds-deployment-existing-ad/azuredeploy.parameters.json +++ b/rds-deployment-existing-ad/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/rds-deployment-ha-gateway/azuredeploy.json b/rds-deployment-ha-gateway/azuredeploy.json index d9f9a4341903..4b02641d963d 100644 --- a/rds-deployment-ha-gateway/azuredeploy.json +++ b/rds-deployment-ha-gateway/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/rds-deployment-ha-gateway/azuredeploy.parameters.json b/rds-deployment-ha-gateway/azuredeploy.parameters.json index 322da412d918..085a3679efc4 100644 --- a/rds-deployment-ha-gateway/azuredeploy.parameters.json +++ b/rds-deployment-ha-gateway/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminPassword": { diff --git a/rds-deployment/azuredeploy.json b/rds-deployment/azuredeploy.json index 0e721295452f..982ff9e60b6c 100644 --- a/rds-deployment/azuredeploy.json +++ b/rds-deployment/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "gwdnsLabelPrefix": { diff --git a/rds-deployment/azuredeploy.parameters.json b/rds-deployment/azuredeploy.parameters.json index bb9115d94d67..97b8bd33b776 100644 --- a/rds-deployment/azuredeploy.parameters.json +++ b/rds-deployment/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "gwdnsLabelPrefix": { diff --git a/rds-deployment/vnet-with-dns-server.json b/rds-deployment/vnet-with-dns-server.json index 454bc8a77d01..bec7a5ce2f20 100644 --- a/rds-deployment/vnet-with-dns-server.json +++ b/rds-deployment/vnet-with-dns-server.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/rds-update-certificate/azuredeploy.json b/rds-update-certificate/azuredeploy.json index e9dd1bc89884..107bbd6042b9 100644 --- a/rds-update-certificate/azuredeploy.json +++ b/rds-update-certificate/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vaultName": { diff --git a/rds-update-certificate/azuredeploy.parameters.json b/rds-update-certificate/azuredeploy.parameters.json index 0b2114f3f714..61fcf691121f 100644 --- a/rds-update-certificate/azuredeploy.parameters.json +++ b/rds-update-certificate/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vaultName": { diff --git a/rds-update-rdsh-collection/azuredeploy.json b/rds-update-rdsh-collection/azuredeploy.json index 0e81df73ef0c..d2b4bacc9153 100644 --- a/rds-update-rdsh-collection/azuredeploy.json +++ b/rds-update-rdsh-collection/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "existingRdshCollectionName": { diff --git a/rds-update-rdsh-collection/azuredeploy.parameters.json b/rds-update-rdsh-collection/azuredeploy.parameters.json index 5d9c2eefa8be..9bc43224c3d3 100644 --- a/rds-update-rdsh-collection/azuredeploy.parameters.json +++ b/rds-update-rdsh-collection/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "existingDomainName": { diff --git a/redis-high-availability/azuredeploy.json b/redis-high-availability/azuredeploy.json index e4b061510e66..960987af5bb0 100644 --- a/redis-high-availability/azuredeploy.json +++ b/redis-high-availability/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/redis-high-availability/azuredeploy.parameters.json b/redis-high-availability/azuredeploy.parameters.json index 42910dc56aec..2203e02f8f65 100644 --- a/redis-high-availability/azuredeploy.parameters.json +++ b/redis-high-availability/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/redis-high-availability/empty-resources.json b/redis-high-availability/empty-resources.json index a1b02af1b2e1..4569c6c700d4 100644 --- a/redis-high-availability/empty-resources.json +++ b/redis-high-availability/empty-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/redis-high-availability/jumpbox-resources.json b/redis-high-availability/jumpbox-resources.json index 34e24be8f27c..c009d2c3cfe3 100644 --- a/redis-high-availability/jumpbox-resources.json +++ b/redis-high-availability/jumpbox-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/redis-high-availability/node-resources.json b/redis-high-availability/node-resources.json index 07c8cc64f9f8..2f4c10f07ca5 100644 --- a/redis-high-availability/node-resources.json +++ b/redis-high-availability/node-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/redis-high-availability/shared-resources.json b/redis-high-availability/shared-resources.json index fa901ae105ae..c8b293190e80 100644 --- a/redis-high-availability/shared-resources.json +++ b/redis-high-availability/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/rhel-3tier-iaas/azuredeploy.json b/rhel-3tier-iaas/azuredeploy.json index 716c659dbcac..256f0a6552e1 100644 --- a/rhel-3tier-iaas/azuredeploy.json +++ b/rhel-3tier-iaas/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/rhel-3tier-iaas/azuredeploy.parameters.json b/rhel-3tier-iaas/azuredeploy.parameters.json index f8d5aabc6bf2..7c7860b580cd 100644 --- a/rhel-3tier-iaas/azuredeploy.parameters.json +++ b/rhel-3tier-iaas/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/ros-vm-windows/azuredeploy.json b/ros-vm-windows/azuredeploy.json index 118284c64300..576b785ce31e 100644 --- a/ros-vm-windows/azuredeploy.json +++ b/ros-vm-windows/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/ros-vm-windows/azuredeploy.parameters.json b/ros-vm-windows/azuredeploy.parameters.json index d45086d8466f..b2f9d9d60793 100644 --- a/ros-vm-windows/azuredeploy.parameters.json +++ b/ros-vm-windows/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "projectName": { diff --git a/ros-vm-windows/nestedtemplates/customScriptExtension.json b/ros-vm-windows/nestedtemplates/customScriptExtension.json index c0535fff01c7..ffc24961284e 100644 --- a/ros-vm-windows/nestedtemplates/customScriptExtension.json +++ b/ros-vm-windows/nestedtemplates/customScriptExtension.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/ros-vm-windows/nestedtemplates/nvidiaGpuDriverWindows.json b/ros-vm-windows/nestedtemplates/nvidiaGpuDriverWindows.json index c56c578b7575..2d36918236b1 100644 --- a/ros-vm-windows/nestedtemplates/nvidiaGpuDriverWindows.json +++ b/ros-vm-windows/nestedtemplates/nvidiaGpuDriverWindows.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/s2d-oms-mgmt-solution/azuredeploy.json b/s2d-oms-mgmt-solution/azuredeploy.json index 8ed3b9ec0359..ce89a330d40e 100644 --- a/s2d-oms-mgmt-solution/azuredeploy.json +++ b/s2d-oms-mgmt-solution/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "omsLogAnalyticsWorkspaceName": { diff --git a/s2d-oms-mgmt-solution/azuredeploy.parameters.json b/s2d-oms-mgmt-solution/azuredeploy.parameters.json index c8324b26da7d..01ad5329bff4 100644 --- a/s2d-oms-mgmt-solution/azuredeploy.parameters.json +++ b/s2d-oms-mgmt-solution/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "omsLogAnalyticsWorkspaceName": { diff --git a/s2d-oms-mgmt-solution/prereqs/prereq.azuredeploy.json b/s2d-oms-mgmt-solution/prereqs/prereq.azuredeploy.json index fb7942929a40..5a7c76795371 100644 --- a/s2d-oms-mgmt-solution/prereqs/prereq.azuredeploy.json +++ b/s2d-oms-mgmt-solution/prereqs/prereq.azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {}, "variables": { diff --git a/s2d-oms-mgmt-solution/prereqs/prereq.azuredeploy.parameters.json b/s2d-oms-mgmt-solution/prereqs/prereq.azuredeploy.parameters.json index 35b6135f26b5..26a013c893ba 100644 --- a/s2d-oms-mgmt-solution/prereqs/prereq.azuredeploy.parameters.json +++ b/s2d-oms-mgmt-solution/prereqs/prereq.azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": {} } \ No newline at end of file diff --git a/safekit-cluster-farm/azuredeploy.json b/safekit-cluster-farm/azuredeploy.json index 00c8128dde67..2dae1f81e1c4 100644 --- a/safekit-cluster-farm/azuredeploy.json +++ b/safekit-cluster-farm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "OS": { diff --git a/safekit-cluster-farm/azuredeploy.parameters.json b/safekit-cluster-farm/azuredeploy.parameters.json index 20d8137b22da..00ad713db017 100644 --- a/safekit-cluster-farm/azuredeploy.parameters.json +++ b/safekit-cluster-farm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUser": { diff --git a/safekit-cluster-farm/nestedtemplates/cfgFarm.json b/safekit-cluster-farm/nestedtemplates/cfgFarm.json index 3114b3b444a0..fed6ba94c229 100644 --- a/safekit-cluster-farm/nestedtemplates/cfgFarm.json +++ b/safekit-cluster-farm/nestedtemplates/cfgFarm.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmname": { diff --git a/safekit-cluster-farm/nestedtemplates/cluster.json b/safekit-cluster-farm/nestedtemplates/cluster.json index f800d65849fc..02d8a85e2c28 100644 --- a/safekit-cluster-farm/nestedtemplates/cluster.json +++ b/safekit-cluster-farm/nestedtemplates/cluster.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "OS": { diff --git a/safekit-cluster-farm/nestedtemplates/createvip.json b/safekit-cluster-farm/nestedtemplates/createvip.json index 54a91d4d1b64..c3d95e445ad1 100644 --- a/safekit-cluster-farm/nestedtemplates/createvip.json +++ b/safekit-cluster-farm/nestedtemplates/createvip.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "VIPDnsLabel": { diff --git a/safekit-cluster-farm/nestedtemplates/installCluster.json b/safekit-cluster-farm/nestedtemplates/installCluster.json index 8b3d41f51960..c17a1216ecfa 100644 --- a/safekit-cluster-farm/nestedtemplates/installCluster.json +++ b/safekit-cluster-farm/nestedtemplates/installCluster.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmname": { diff --git a/safekit-cluster-farm/nestedtemplates/installModule.json b/safekit-cluster-farm/nestedtemplates/installModule.json index d925084306b6..43cb9acfd511 100644 --- a/safekit-cluster-farm/nestedtemplates/installModule.json +++ b/safekit-cluster-farm/nestedtemplates/installModule.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmname": { diff --git a/safekit-cluster-farm/nestedtemplates/safekitdepl.json b/safekit-cluster-farm/nestedtemplates/safekitdepl.json index 852b489f0d65..2af593b3caf8 100644 --- a/safekit-cluster-farm/nestedtemplates/safekitdepl.json +++ b/safekit-cluster-farm/nestedtemplates/safekitdepl.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmname": { diff --git a/safekit-cluster-mirror/azuredeploy.json b/safekit-cluster-mirror/azuredeploy.json index e09cb9d83dec..90d5b3bb3013 100644 --- a/safekit-cluster-mirror/azuredeploy.json +++ b/safekit-cluster-mirror/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "OS": { diff --git a/safekit-cluster-mirror/azuredeploy.parameters.json b/safekit-cluster-mirror/azuredeploy.parameters.json index 20d8137b22da..00ad713db017 100644 --- a/safekit-cluster-mirror/azuredeploy.parameters.json +++ b/safekit-cluster-mirror/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUser": { diff --git a/safekit-cluster-mirror/nestedtemplates/cfgMirror.json b/safekit-cluster-mirror/nestedtemplates/cfgMirror.json index de2087b4f1ee..622fa3ce1e7c 100644 --- a/safekit-cluster-mirror/nestedtemplates/cfgMirror.json +++ b/safekit-cluster-mirror/nestedtemplates/cfgMirror.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmname": { diff --git a/safekit-cluster-mirror/nestedtemplates/cluster.json b/safekit-cluster-mirror/nestedtemplates/cluster.json index 5961788d152f..c02c2b3b2419 100644 --- a/safekit-cluster-mirror/nestedtemplates/cluster.json +++ b/safekit-cluster-mirror/nestedtemplates/cluster.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "OS": { @@ -236,7 +236,7 @@ "properties": { "mode": "Incremental", "template": { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "resources": [ { diff --git a/safekit-cluster-mirror/nestedtemplates/createvip.json b/safekit-cluster-mirror/nestedtemplates/createvip.json index 54a91d4d1b64..c3d95e445ad1 100644 --- a/safekit-cluster-mirror/nestedtemplates/createvip.json +++ b/safekit-cluster-mirror/nestedtemplates/createvip.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "VIPDnsLabel": { diff --git a/safekit-cluster-mirror/nestedtemplates/installCluster.json b/safekit-cluster-mirror/nestedtemplates/installCluster.json index 5ef4eb8ef3a3..6792595b212b 100644 --- a/safekit-cluster-mirror/nestedtemplates/installCluster.json +++ b/safekit-cluster-mirror/nestedtemplates/installCluster.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmname": { diff --git a/safekit-cluster-mirror/nestedtemplates/installModule.json b/safekit-cluster-mirror/nestedtemplates/installModule.json index 116d3d93ad9b..93e969b82e9e 100644 --- a/safekit-cluster-mirror/nestedtemplates/installModule.json +++ b/safekit-cluster-mirror/nestedtemplates/installModule.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmname": { diff --git a/safekit-cluster-mirror/nestedtemplates/safekitdepl.json b/safekit-cluster-mirror/nestedtemplates/safekitdepl.json index 0ae2b9b1391e..39eeeaeca64f 100644 --- a/safekit-cluster-mirror/nestedtemplates/safekitdepl.json +++ b/safekit-cluster-mirror/nestedtemplates/safekitdepl.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmname": { diff --git a/sap-2-tier-marketplace-image-md/azuredeploy.json b/sap-2-tier-marketplace-image-md/azuredeploy.json index 94dbb812611a..1e85afb6dd79 100644 --- a/sap-2-tier-marketplace-image-md/azuredeploy.json +++ b/sap-2-tier-marketplace-image-md/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-2-tier-marketplace-image-md/azuredeploy.parameters.json b/sap-2-tier-marketplace-image-md/azuredeploy.parameters.json index 26d045eccb96..092a3ea8f090 100644 --- a/sap-2-tier-marketplace-image-md/azuredeploy.parameters.json +++ b/sap-2-tier-marketplace-image-md/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/sap-2-tier-marketplace-image/azuredeploy.json b/sap-2-tier-marketplace-image/azuredeploy.json index e0e698e612c2..fdfaa8069a2f 100644 --- a/sap-2-tier-marketplace-image/azuredeploy.json +++ b/sap-2-tier-marketplace-image/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-2-tier-marketplace-image/azuredeploy.parameters.json b/sap-2-tier-marketplace-image/azuredeploy.parameters.json index f70bb6aca16b..468c51479dc6 100644 --- a/sap-2-tier-marketplace-image/azuredeploy.parameters.json +++ b/sap-2-tier-marketplace-image/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-2-tier-marketplace-image/shared/cs-server-Standard_D11_multiNIC_No.json b/sap-2-tier-marketplace-image/shared/cs-server-Standard_D11_multiNIC_No.json index 5b8b32fb29ae..31b8d27b263d 100644 --- a/sap-2-tier-marketplace-image/shared/cs-server-Standard_D11_multiNIC_No.json +++ b/sap-2-tier-marketplace-image/shared/cs-server-Standard_D11_multiNIC_No.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-marketplace-image/shared/cs-server-Standard_D13_multiNIC_No.json b/sap-2-tier-marketplace-image/shared/cs-server-Standard_D13_multiNIC_No.json index a74c23f696f1..2c3bcaf63782 100644 --- a/sap-2-tier-marketplace-image/shared/cs-server-Standard_D13_multiNIC_No.json +++ b/sap-2-tier-marketplace-image/shared/cs-server-Standard_D13_multiNIC_No.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-marketplace-image/shared/cs-server-Standard_D14_multiNIC_No.json b/sap-2-tier-marketplace-image/shared/cs-server-Standard_D14_multiNIC_No.json index de735d68fecb..f07a4d9cfc71 100644 --- a/sap-2-tier-marketplace-image/shared/cs-server-Standard_D14_multiNIC_No.json +++ b/sap-2-tier-marketplace-image/shared/cs-server-Standard_D14_multiNIC_No.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-marketplace-image/shared/cs-server-Standard_DS11_multiNIC_No.json b/sap-2-tier-marketplace-image/shared/cs-server-Standard_DS11_multiNIC_No.json index 7e9747a6b2ba..fb0e38248279 100644 --- a/sap-2-tier-marketplace-image/shared/cs-server-Standard_DS11_multiNIC_No.json +++ b/sap-2-tier-marketplace-image/shared/cs-server-Standard_DS11_multiNIC_No.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-marketplace-image/shared/cs-server-Standard_DS13_multiNIC_No.json b/sap-2-tier-marketplace-image/shared/cs-server-Standard_DS13_multiNIC_No.json index adc3f5f602ea..ba15d6036aa3 100644 --- a/sap-2-tier-marketplace-image/shared/cs-server-Standard_DS13_multiNIC_No.json +++ b/sap-2-tier-marketplace-image/shared/cs-server-Standard_DS13_multiNIC_No.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-marketplace-image/shared/cs-server-Standard_DS14_multiNIC_No.json b/sap-2-tier-marketplace-image/shared/cs-server-Standard_DS14_multiNIC_No.json index 455f060252ba..6566943ea95b 100644 --- a/sap-2-tier-marketplace-image/shared/cs-server-Standard_DS14_multiNIC_No.json +++ b/sap-2-tier-marketplace-image/shared/cs-server-Standard_DS14_multiNIC_No.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-marketplace-image/shared/cs-server-Standard_GS5_multiNIC_No.json b/sap-2-tier-marketplace-image/shared/cs-server-Standard_GS5_multiNIC_No.json index fb07a43aaf24..80505823e8ba 100644 --- a/sap-2-tier-marketplace-image/shared/cs-server-Standard_GS5_multiNIC_No.json +++ b/sap-2-tier-marketplace-image/shared/cs-server-Standard_GS5_multiNIC_No.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-marketplace-image/shared/db-server-Standard_GS2_multiNIC_No.json b/sap-2-tier-marketplace-image/shared/db-server-Standard_GS2_multiNIC_No.json index 812d733e80be..cfea80064eb0 100644 --- a/sap-2-tier-marketplace-image/shared/db-server-Standard_GS2_multiNIC_No.json +++ b/sap-2-tier-marketplace-image/shared/db-server-Standard_GS2_multiNIC_No.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-marketplace-image/shared/db-server-Standard_GS3_multiNIC_No.json b/sap-2-tier-marketplace-image/shared/db-server-Standard_GS3_multiNIC_No.json index 9d8acc8ee4f9..26fa6fe25a59 100644 --- a/sap-2-tier-marketplace-image/shared/db-server-Standard_GS3_multiNIC_No.json +++ b/sap-2-tier-marketplace-image/shared/db-server-Standard_GS3_multiNIC_No.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-marketplace-image/shared/db-server-Standard_GS4_multiNIC_No.json b/sap-2-tier-marketplace-image/shared/db-server-Standard_GS4_multiNIC_No.json index 5420e5637ead..86627a8fe32b 100644 --- a/sap-2-tier-marketplace-image/shared/db-server-Standard_GS4_multiNIC_No.json +++ b/sap-2-tier-marketplace-image/shared/db-server-Standard_GS4_multiNIC_No.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-marketplace-image/shared/db-server-Standard_GS5_multiNIC_No.json b/sap-2-tier-marketplace-image/shared/db-server-Standard_GS5_multiNIC_No.json index 71365d347817..f13a20fb3711 100644 --- a/sap-2-tier-marketplace-image/shared/db-server-Standard_GS5_multiNIC_No.json +++ b/sap-2-tier-marketplace-image/shared/db-server-Standard_GS5_multiNIC_No.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-marketplace-image/shared/disks.json b/sap-2-tier-marketplace-image/shared/disks.json index 100ae62c5dce..94b5df9fcdc8 100644 --- a/sap-2-tier-marketplace-image/shared/disks.json +++ b/sap-2-tier-marketplace-image/shared/disks.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "diskName": { diff --git a/sap-2-tier-marketplace-image/shared/disks0.json b/sap-2-tier-marketplace-image/shared/disks0.json index 485a7248dc6f..19afd92fed6e 100644 --- a/sap-2-tier-marketplace-image/shared/disks0.json +++ b/sap-2-tier-marketplace-image/shared/disks0.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "diskName": { diff --git a/sap-2-tier-marketplace-image/shared/existingnsg.json b/sap-2-tier-marketplace-image/shared/existingnsg.json index effedd4ccb66..6be6cab51f48 100644 --- a/sap-2-tier-marketplace-image/shared/existingnsg.json +++ b/sap-2-tier-marketplace-image/shared/existingnsg.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nsgName": { diff --git a/sap-2-tier-marketplace-image/shared/existingpip.json b/sap-2-tier-marketplace-image/shared/existingpip.json index fdb73a0341f8..2a48dbd01128 100644 --- a/sap-2-tier-marketplace-image/shared/existingpip.json +++ b/sap-2-tier-marketplace-image/shared/existingpip.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publicIpName": { diff --git a/sap-2-tier-marketplace-image/shared/existingvnet.json b/sap-2-tier-marketplace-image/shared/existingvnet.json index 2a32b23ac755..4b43af5f12b7 100644 --- a/sap-2-tier-marketplace-image/shared/existingvnet.json +++ b/sap-2-tier-marketplace-image/shared/existingvnet.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/sap-2-tier-marketplace-image/shared/existingvnetnsg.json b/sap-2-tier-marketplace-image/shared/existingvnetnsg.json index d94a9f1b34c4..48faaf8488b7 100644 --- a/sap-2-tier-marketplace-image/shared/existingvnetnsg.json +++ b/sap-2-tier-marketplace-image/shared/existingvnetnsg.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/sap-2-tier-marketplace-image/shared/lb-DB-HANA.json b/sap-2-tier-marketplace-image/shared/lb-DB-HANA.json index a57c5a6f769d..18371c44c11f 100644 --- a/sap-2-tier-marketplace-image/shared/lb-DB-HANA.json +++ b/sap-2-tier-marketplace-image/shared/lb-DB-HANA.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-2-tier-marketplace-image/shared/lb-DB-SQL.json b/sap-2-tier-marketplace-image/shared/lb-DB-SQL.json index 8cabfc983f64..957d2110db17 100644 --- a/sap-2-tier-marketplace-image/shared/lb-DB-SQL.json +++ b/sap-2-tier-marketplace-image/shared/lb-DB-SQL.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-2-tier-marketplace-image/shared/lb-DB0.json b/sap-2-tier-marketplace-image/shared/lb-DB0.json index 4c44e52542b6..71a8e74d3eef 100644 --- a/sap-2-tier-marketplace-image/shared/lb-DB0.json +++ b/sap-2-tier-marketplace-image/shared/lb-DB0.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-2-tier-marketplace-image/shared/lb-ERS-Linux.json b/sap-2-tier-marketplace-image/shared/lb-ERS-Linux.json index 310d42bfddc9..8c240f38a027 100644 --- a/sap-2-tier-marketplace-image/shared/lb-ERS-Linux.json +++ b/sap-2-tier-marketplace-image/shared/lb-ERS-Linux.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-2-tier-marketplace-image/shared/lb-ERS-Windows.json b/sap-2-tier-marketplace-image/shared/lb-ERS-Windows.json index 2ff354045b0a..e7232c8374f4 100644 --- a/sap-2-tier-marketplace-image/shared/lb-ERS-Windows.json +++ b/sap-2-tier-marketplace-image/shared/lb-ERS-Windows.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-2-tier-marketplace-image/shared/lb-ERS0.json b/sap-2-tier-marketplace-image/shared/lb-ERS0.json index aa8a93e20eb5..d9962575b3a1 100644 --- a/sap-2-tier-marketplace-image/shared/lb-ERS0.json +++ b/sap-2-tier-marketplace-image/shared/lb-ERS0.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-2-tier-marketplace-image/shared/lb-SCS.json b/sap-2-tier-marketplace-image/shared/lb-SCS.json index a3acfd5a9802..e1e1e989a88a 100644 --- a/sap-2-tier-marketplace-image/shared/lb-SCS.json +++ b/sap-2-tier-marketplace-image/shared/lb-SCS.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-2-tier-marketplace-image/shared/lb-SCS0.json b/sap-2-tier-marketplace-image/shared/lb-SCS0.json index be872832bb12..00723ecfac8c 100644 --- a/sap-2-tier-marketplace-image/shared/lb-SCS0.json +++ b/sap-2-tier-marketplace-image/shared/lb-SCS0.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-2-tier-marketplace-image/shared/loadbalancer.json b/sap-2-tier-marketplace-image/shared/loadbalancer.json index db90eead7481..b9bb4cd1c9e8 100644 --- a/sap-2-tier-marketplace-image/shared/loadbalancer.json +++ b/sap-2-tier-marketplace-image/shared/loadbalancer.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-2-tier-marketplace-image/shared/newnsg.json b/sap-2-tier-marketplace-image/shared/newnsg.json index a4dc17d062e5..e69b4bb64a5e 100644 --- a/sap-2-tier-marketplace-image/shared/newnsg.json +++ b/sap-2-tier-marketplace-image/shared/newnsg.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nsgName": { diff --git a/sap-2-tier-marketplace-image/shared/newpip.json b/sap-2-tier-marketplace-image/shared/newpip.json index 07cd7b3f655f..6289cb08bc54 100644 --- a/sap-2-tier-marketplace-image/shared/newpip.json +++ b/sap-2-tier-marketplace-image/shared/newpip.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publicIpName": { diff --git a/sap-2-tier-marketplace-image/shared/newvnet.json b/sap-2-tier-marketplace-image/shared/newvnet.json index bea4086c95f9..88d6624e36c1 100644 --- a/sap-2-tier-marketplace-image/shared/newvnet.json +++ b/sap-2-tier-marketplace-image/shared/newvnet.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/sap-2-tier-marketplace-image/shared/newvnetnsg.json b/sap-2-tier-marketplace-image/shared/newvnetnsg.json index 1003d60a3611..d64c2f8319ba 100644 --- a/sap-2-tier-marketplace-image/shared/newvnetnsg.json +++ b/sap-2-tier-marketplace-image/shared/newvnetnsg.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/sap-2-tier-marketplace-image/shared/nic-config.json b/sap-2-tier-marketplace-image/shared/nic-config.json index bd376a03e3d3..4db818148246 100644 --- a/sap-2-tier-marketplace-image/shared/nic-config.json +++ b/sap-2-tier-marketplace-image/shared/nic-config.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/sap-2-tier-marketplace-image/shared/os-disk-parts-md.json b/sap-2-tier-marketplace-image/shared/os-disk-parts-md.json index 9bb632c646ca..5bac7048ccac 100644 --- a/sap-2-tier-marketplace-image/shared/os-disk-parts-md.json +++ b/sap-2-tier-marketplace-image/shared/os-disk-parts-md.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageSku": { diff --git a/sap-2-tier-marketplace-image/shared/os-disk-parts.json b/sap-2-tier-marketplace-image/shared/os-disk-parts.json index b01500da661c..fe3c8265e840 100644 --- a/sap-2-tier-marketplace-image/shared/os-disk-parts.json +++ b/sap-2-tier-marketplace-image/shared/os-disk-parts.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageSku": { diff --git a/sap-2-tier-marketplace-image/shared/server-Standard_multiNIC_No.json b/sap-2-tier-marketplace-image/shared/server-Standard_multiNIC_No.json index 167053604854..f9dcee163570 100644 --- a/sap-2-tier-marketplace-image/shared/server-Standard_multiNIC_No.json +++ b/sap-2-tier-marketplace-image/shared/server-Standard_multiNIC_No.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-marketplace-image/shared/server-md.json b/sap-2-tier-marketplace-image/shared/server-md.json index 9eccbad557e6..8e7e576dfbfa 100644 --- a/sap-2-tier-marketplace-image/shared/server-md.json +++ b/sap-2-tier-marketplace-image/shared/server-md.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-marketplace-image/shared/server.json b/sap-2-tier-marketplace-image/shared/server.json index 547d2a179da9..7816611752f9 100644 --- a/sap-2-tier-marketplace-image/shared/server.json +++ b/sap-2-tier-marketplace-image/shared/server.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-marketplace-image/shared/server2-noplan.json b/sap-2-tier-marketplace-image/shared/server2-noplan.json index edc07cc72050..1913735869e0 100644 --- a/sap-2-tier-marketplace-image/shared/server2-noplan.json +++ b/sap-2-tier-marketplace-image/shared/server2-noplan.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-marketplace-image/shared/server2.json b/sap-2-tier-marketplace-image/shared/server2.json index 440e61a64740..71a229b43af9 100644 --- a/sap-2-tier-marketplace-image/shared/server2.json +++ b/sap-2-tier-marketplace-image/shared/server2.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-user-disk-md/azuredeploy.json b/sap-2-tier-user-disk-md/azuredeploy.json index 74811e95d135..7223de939da2 100644 --- a/sap-2-tier-user-disk-md/azuredeploy.json +++ b/sap-2-tier-user-disk-md/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-2-tier-user-disk-md/azuredeploy.parameters.json b/sap-2-tier-user-disk-md/azuredeploy.parameters.json index f241e2cbd2a3..25e2de38c94c 100644 --- a/sap-2-tier-user-disk-md/azuredeploy.parameters.json +++ b/sap-2-tier-user-disk-md/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-2-tier-user-disk-md/shared/newnsg.json b/sap-2-tier-user-disk-md/shared/newnsg.json index a4dc17d062e5..e69b4bb64a5e 100644 --- a/sap-2-tier-user-disk-md/shared/newnsg.json +++ b/sap-2-tier-user-disk-md/shared/newnsg.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nsgName": { diff --git a/sap-2-tier-user-disk-md/shared/newpip.json b/sap-2-tier-user-disk-md/shared/newpip.json index 07cd7b3f655f..6289cb08bc54 100644 --- a/sap-2-tier-user-disk-md/shared/newpip.json +++ b/sap-2-tier-user-disk-md/shared/newpip.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publicIpName": { diff --git a/sap-2-tier-user-disk-md/shared/newvnetnsg.json b/sap-2-tier-user-disk-md/shared/newvnetnsg.json index 1003d60a3611..d64c2f8319ba 100644 --- a/sap-2-tier-user-disk-md/shared/newvnetnsg.json +++ b/sap-2-tier-user-disk-md/shared/newvnetnsg.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/sap-2-tier-user-disk-md/shared/nic-config.json b/sap-2-tier-user-disk-md/shared/nic-config.json index fd5a0c945ad8..d7b41b71caba 100644 --- a/sap-2-tier-user-disk-md/shared/nic-config.json +++ b/sap-2-tier-user-disk-md/shared/nic-config.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/sap-2-tier-user-disk-md/shared/os-disk-parts-md.json b/sap-2-tier-user-disk-md/shared/os-disk-parts-md.json index f218f3cd3f6c..f9f5800ecc5c 100644 --- a/sap-2-tier-user-disk-md/shared/os-disk-parts-md.json +++ b/sap-2-tier-user-disk-md/shared/os-disk-parts-md.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageSku": { diff --git a/sap-2-tier-user-disk-md/shared/server-md.json b/sap-2-tier-user-disk-md/shared/server-md.json index 9eccbad557e6..8e7e576dfbfa 100644 --- a/sap-2-tier-user-disk-md/shared/server-md.json +++ b/sap-2-tier-user-disk-md/shared/server-md.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-2-tier-user-image-md/azuredeploy.json b/sap-2-tier-user-image-md/azuredeploy.json index 55e98f85e4ca..b12c2e16c5c5 100644 --- a/sap-2-tier-user-image-md/azuredeploy.json +++ b/sap-2-tier-user-image-md/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-2-tier-user-image-md/azuredeploy.parameters.json b/sap-2-tier-user-image-md/azuredeploy.parameters.json index 265f17aa1368..fe2ed09ca13a 100644 --- a/sap-2-tier-user-image-md/azuredeploy.parameters.json +++ b/sap-2-tier-user-image-md/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-3-tier-marketplace-image-converged-md/azuredeploy.json b/sap-3-tier-marketplace-image-converged-md/azuredeploy.json index b776622a9950..eeb055434e8e 100644 --- a/sap-3-tier-marketplace-image-converged-md/azuredeploy.json +++ b/sap-3-tier-marketplace-image-converged-md/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-3-tier-marketplace-image-converged-md/azuredeploy.parameters.json b/sap-3-tier-marketplace-image-converged-md/azuredeploy.parameters.json index 7cb9d39a36cf..fa2f6aeb3f5b 100644 --- a/sap-3-tier-marketplace-image-converged-md/azuredeploy.parameters.json +++ b/sap-3-tier-marketplace-image-converged-md/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-3-tier-marketplace-image-converged-md/shared/lb-DB-HANA.json b/sap-3-tier-marketplace-image-converged-md/shared/lb-DB-HANA.json index a57c5a6f769d..18371c44c11f 100644 --- a/sap-3-tier-marketplace-image-converged-md/shared/lb-DB-HANA.json +++ b/sap-3-tier-marketplace-image-converged-md/shared/lb-DB-HANA.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-marketplace-image-converged-md/shared/lb-DB-SQL.json b/sap-3-tier-marketplace-image-converged-md/shared/lb-DB-SQL.json index 8cabfc983f64..957d2110db17 100644 --- a/sap-3-tier-marketplace-image-converged-md/shared/lb-DB-SQL.json +++ b/sap-3-tier-marketplace-image-converged-md/shared/lb-DB-SQL.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-marketplace-image-converged-md/shared/lb-DB0.json b/sap-3-tier-marketplace-image-converged-md/shared/lb-DB0.json index 4c44e52542b6..71a8e74d3eef 100644 --- a/sap-3-tier-marketplace-image-converged-md/shared/lb-DB0.json +++ b/sap-3-tier-marketplace-image-converged-md/shared/lb-DB0.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-marketplace-image-converged-md/shared/lb-ERS-Linux.json b/sap-3-tier-marketplace-image-converged-md/shared/lb-ERS-Linux.json index 310d42bfddc9..8c240f38a027 100644 --- a/sap-3-tier-marketplace-image-converged-md/shared/lb-ERS-Linux.json +++ b/sap-3-tier-marketplace-image-converged-md/shared/lb-ERS-Linux.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-marketplace-image-converged-md/shared/lb-ERS-Windows.json b/sap-3-tier-marketplace-image-converged-md/shared/lb-ERS-Windows.json index 2ff354045b0a..e7232c8374f4 100644 --- a/sap-3-tier-marketplace-image-converged-md/shared/lb-ERS-Windows.json +++ b/sap-3-tier-marketplace-image-converged-md/shared/lb-ERS-Windows.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-marketplace-image-converged-md/shared/lb-ERS0.json b/sap-3-tier-marketplace-image-converged-md/shared/lb-ERS0.json index aa8a93e20eb5..d9962575b3a1 100644 --- a/sap-3-tier-marketplace-image-converged-md/shared/lb-ERS0.json +++ b/sap-3-tier-marketplace-image-converged-md/shared/lb-ERS0.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-marketplace-image-converged-md/shared/lb-SCS.json b/sap-3-tier-marketplace-image-converged-md/shared/lb-SCS.json index a3acfd5a9802..e1e1e989a88a 100644 --- a/sap-3-tier-marketplace-image-converged-md/shared/lb-SCS.json +++ b/sap-3-tier-marketplace-image-converged-md/shared/lb-SCS.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-marketplace-image-converged-md/shared/lb-SCS0.json b/sap-3-tier-marketplace-image-converged-md/shared/lb-SCS0.json index be872832bb12..00723ecfac8c 100644 --- a/sap-3-tier-marketplace-image-converged-md/shared/lb-SCS0.json +++ b/sap-3-tier-marketplace-image-converged-md/shared/lb-SCS0.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-marketplace-image-converged-md/shared/loadbalancer.json b/sap-3-tier-marketplace-image-converged-md/shared/loadbalancer.json index 8b87b6c92dbb..20309cda3013 100644 --- a/sap-3-tier-marketplace-image-converged-md/shared/loadbalancer.json +++ b/sap-3-tier-marketplace-image-converged-md/shared/loadbalancer.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-marketplace-image-converged-md/shared/newnsg.json b/sap-3-tier-marketplace-image-converged-md/shared/newnsg.json index a4dc17d062e5..e69b4bb64a5e 100644 --- a/sap-3-tier-marketplace-image-converged-md/shared/newnsg.json +++ b/sap-3-tier-marketplace-image-converged-md/shared/newnsg.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nsgName": { diff --git a/sap-3-tier-marketplace-image-converged-md/shared/newpip.json b/sap-3-tier-marketplace-image-converged-md/shared/newpip.json index 07cd7b3f655f..6289cb08bc54 100644 --- a/sap-3-tier-marketplace-image-converged-md/shared/newpip.json +++ b/sap-3-tier-marketplace-image-converged-md/shared/newpip.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publicIpName": { diff --git a/sap-3-tier-marketplace-image-converged-md/shared/newvnetnsg.json b/sap-3-tier-marketplace-image-converged-md/shared/newvnetnsg.json index 1003d60a3611..d64c2f8319ba 100644 --- a/sap-3-tier-marketplace-image-converged-md/shared/newvnetnsg.json +++ b/sap-3-tier-marketplace-image-converged-md/shared/newvnetnsg.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/sap-3-tier-marketplace-image-converged-md/shared/nic-config.json b/sap-3-tier-marketplace-image-converged-md/shared/nic-config.json index fd5a0c945ad8..d7b41b71caba 100644 --- a/sap-3-tier-marketplace-image-converged-md/shared/nic-config.json +++ b/sap-3-tier-marketplace-image-converged-md/shared/nic-config.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/sap-3-tier-marketplace-image-converged-md/shared/os-disk-parts-md.json b/sap-3-tier-marketplace-image-converged-md/shared/os-disk-parts-md.json index 7c40cc9b7ef1..0e6104536309 100644 --- a/sap-3-tier-marketplace-image-converged-md/shared/os-disk-parts-md.json +++ b/sap-3-tier-marketplace-image-converged-md/shared/os-disk-parts-md.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageSku": { diff --git a/sap-3-tier-marketplace-image-converged-md/shared/server-md.json b/sap-3-tier-marketplace-image-converged-md/shared/server-md.json index 9eccbad557e6..8e7e576dfbfa 100644 --- a/sap-3-tier-marketplace-image-converged-md/shared/server-md.json +++ b/sap-3-tier-marketplace-image-converged-md/shared/server-md.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-3-tier-marketplace-image-md/azuredeploy.json b/sap-3-tier-marketplace-image-md/azuredeploy.json index 0bae70a6a940..d0021addc8aa 100644 --- a/sap-3-tier-marketplace-image-md/azuredeploy.json +++ b/sap-3-tier-marketplace-image-md/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-3-tier-marketplace-image-md/azuredeploy.parameters.json b/sap-3-tier-marketplace-image-md/azuredeploy.parameters.json index 26d045eccb96..092a3ea8f090 100644 --- a/sap-3-tier-marketplace-image-md/azuredeploy.parameters.json +++ b/sap-3-tier-marketplace-image-md/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/sap-3-tier-marketplace-image-multi-sid-apps-md/azuredeploy.json b/sap-3-tier-marketplace-image-multi-sid-apps-md/azuredeploy.json index d0b2e1c8a956..29aa906f7aa1 100644 --- a/sap-3-tier-marketplace-image-multi-sid-apps-md/azuredeploy.json +++ b/sap-3-tier-marketplace-image-multi-sid-apps-md/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-3-tier-marketplace-image-multi-sid-apps-md/azuredeploy.parameters.json b/sap-3-tier-marketplace-image-multi-sid-apps-md/azuredeploy.parameters.json index 571a16f72697..b59ed9a6c221 100644 --- a/sap-3-tier-marketplace-image-multi-sid-apps-md/azuredeploy.parameters.json +++ b/sap-3-tier-marketplace-image-multi-sid-apps-md/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/sap-3-tier-marketplace-image-multi-sid-db-md/azuredeploy.json b/sap-3-tier-marketplace-image-multi-sid-db-md/azuredeploy.json index 51f50226a516..3c17b9bc0976 100644 --- a/sap-3-tier-marketplace-image-multi-sid-db-md/azuredeploy.json +++ b/sap-3-tier-marketplace-image-multi-sid-db-md/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-3-tier-marketplace-image-multi-sid-db-md/azuredeploy.parameters.json b/sap-3-tier-marketplace-image-multi-sid-db-md/azuredeploy.parameters.json index b1d7ab7ea7b2..d6dd4e1c3f0b 100644 --- a/sap-3-tier-marketplace-image-multi-sid-db-md/azuredeploy.parameters.json +++ b/sap-3-tier-marketplace-image-multi-sid-db-md/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/sap-3-tier-marketplace-image-multi-sid-xscs-md/azuredeploy.json b/sap-3-tier-marketplace-image-multi-sid-xscs-md/azuredeploy.json index d0f7c7233d3a..f4cd16a1274b 100644 --- a/sap-3-tier-marketplace-image-multi-sid-xscs-md/azuredeploy.json +++ b/sap-3-tier-marketplace-image-multi-sid-xscs-md/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "resourcePrefix": { diff --git a/sap-3-tier-marketplace-image-multi-sid-xscs-md/azuredeploy.parameters.json b/sap-3-tier-marketplace-image-multi-sid-xscs-md/azuredeploy.parameters.json index b1d7ab7ea7b2..d6dd4e1c3f0b 100644 --- a/sap-3-tier-marketplace-image-multi-sid-xscs-md/azuredeploy.parameters.json +++ b/sap-3-tier-marketplace-image-multi-sid-xscs-md/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/sap-3-tier-marketplace-image-multi-sid-xscs-md/nestedtemplates/lb-ERS.json b/sap-3-tier-marketplace-image-multi-sid-xscs-md/nestedtemplates/lb-ERS.json index 39e100ffabad..12f807b6ea16 100644 --- a/sap-3-tier-marketplace-image-multi-sid-xscs-md/nestedtemplates/lb-ERS.json +++ b/sap-3-tier-marketplace-image-multi-sid-xscs-md/nestedtemplates/lb-ERS.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-marketplace-image-multi-sid-xscs-md/nestedtemplates/lb-SCS.json b/sap-3-tier-marketplace-image-multi-sid-xscs-md/nestedtemplates/lb-SCS.json index 276e38e64c58..1467046b3ff1 100644 --- a/sap-3-tier-marketplace-image-multi-sid-xscs-md/nestedtemplates/lb-SCS.json +++ b/sap-3-tier-marketplace-image-multi-sid-xscs-md/nestedtemplates/lb-SCS.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-marketplace-image-multi-sid-xscs-md/nestedtemplates/loadbalancer.json b/sap-3-tier-marketplace-image-multi-sid-xscs-md/nestedtemplates/loadbalancer.json index bd4cd92928ca..cc00513966d9 100644 --- a/sap-3-tier-marketplace-image-multi-sid-xscs-md/nestedtemplates/loadbalancer.json +++ b/sap-3-tier-marketplace-image-multi-sid-xscs-md/nestedtemplates/loadbalancer.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-converged-md/azuredeploy.json b/sap-3-tier-user-image-converged-md/azuredeploy.json index ab64c3fed488..d91a7725ea42 100644 --- a/sap-3-tier-user-image-converged-md/azuredeploy.json +++ b/sap-3-tier-user-image-converged-md/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-3-tier-user-image-converged-md/azuredeploy.parameters.json b/sap-3-tier-user-image-converged-md/azuredeploy.parameters.json index d6cddc53d411..cf4764981765 100644 --- a/sap-3-tier-user-image-converged-md/azuredeploy.parameters.json +++ b/sap-3-tier-user-image-converged-md/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-3-tier-user-image-converged-md/shared/lb-DB-HANA.json b/sap-3-tier-user-image-converged-md/shared/lb-DB-HANA.json index a57c5a6f769d..18371c44c11f 100644 --- a/sap-3-tier-user-image-converged-md/shared/lb-DB-HANA.json +++ b/sap-3-tier-user-image-converged-md/shared/lb-DB-HANA.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-converged-md/shared/lb-DB-SQL.json b/sap-3-tier-user-image-converged-md/shared/lb-DB-SQL.json index 8cabfc983f64..957d2110db17 100644 --- a/sap-3-tier-user-image-converged-md/shared/lb-DB-SQL.json +++ b/sap-3-tier-user-image-converged-md/shared/lb-DB-SQL.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-converged-md/shared/lb-DB0.json b/sap-3-tier-user-image-converged-md/shared/lb-DB0.json index 4c44e52542b6..71a8e74d3eef 100644 --- a/sap-3-tier-user-image-converged-md/shared/lb-DB0.json +++ b/sap-3-tier-user-image-converged-md/shared/lb-DB0.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-converged-md/shared/lb-ERS-Linux.json b/sap-3-tier-user-image-converged-md/shared/lb-ERS-Linux.json index 310d42bfddc9..8c240f38a027 100644 --- a/sap-3-tier-user-image-converged-md/shared/lb-ERS-Linux.json +++ b/sap-3-tier-user-image-converged-md/shared/lb-ERS-Linux.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-converged-md/shared/lb-ERS-Windows.json b/sap-3-tier-user-image-converged-md/shared/lb-ERS-Windows.json index 2ff354045b0a..e7232c8374f4 100644 --- a/sap-3-tier-user-image-converged-md/shared/lb-ERS-Windows.json +++ b/sap-3-tier-user-image-converged-md/shared/lb-ERS-Windows.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-converged-md/shared/lb-ERS0.json b/sap-3-tier-user-image-converged-md/shared/lb-ERS0.json index aa8a93e20eb5..d9962575b3a1 100644 --- a/sap-3-tier-user-image-converged-md/shared/lb-ERS0.json +++ b/sap-3-tier-user-image-converged-md/shared/lb-ERS0.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-converged-md/shared/lb-SCS.json b/sap-3-tier-user-image-converged-md/shared/lb-SCS.json index a3acfd5a9802..e1e1e989a88a 100644 --- a/sap-3-tier-user-image-converged-md/shared/lb-SCS.json +++ b/sap-3-tier-user-image-converged-md/shared/lb-SCS.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-converged-md/shared/lb-SCS0.json b/sap-3-tier-user-image-converged-md/shared/lb-SCS0.json index be872832bb12..00723ecfac8c 100644 --- a/sap-3-tier-user-image-converged-md/shared/lb-SCS0.json +++ b/sap-3-tier-user-image-converged-md/shared/lb-SCS0.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-converged-md/shared/loadbalancer.json b/sap-3-tier-user-image-converged-md/shared/loadbalancer.json index 8b87b6c92dbb..20309cda3013 100644 --- a/sap-3-tier-user-image-converged-md/shared/loadbalancer.json +++ b/sap-3-tier-user-image-converged-md/shared/loadbalancer.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-converged-md/shared/newnsg.json b/sap-3-tier-user-image-converged-md/shared/newnsg.json index a4dc17d062e5..e69b4bb64a5e 100644 --- a/sap-3-tier-user-image-converged-md/shared/newnsg.json +++ b/sap-3-tier-user-image-converged-md/shared/newnsg.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nsgName": { diff --git a/sap-3-tier-user-image-converged-md/shared/newpip.json b/sap-3-tier-user-image-converged-md/shared/newpip.json index 07cd7b3f655f..6289cb08bc54 100644 --- a/sap-3-tier-user-image-converged-md/shared/newpip.json +++ b/sap-3-tier-user-image-converged-md/shared/newpip.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publicIpName": { diff --git a/sap-3-tier-user-image-converged-md/shared/newvnetnsg.json b/sap-3-tier-user-image-converged-md/shared/newvnetnsg.json index 1003d60a3611..d64c2f8319ba 100644 --- a/sap-3-tier-user-image-converged-md/shared/newvnetnsg.json +++ b/sap-3-tier-user-image-converged-md/shared/newvnetnsg.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/sap-3-tier-user-image-converged-md/shared/nic-config.json b/sap-3-tier-user-image-converged-md/shared/nic-config.json index fd5a0c945ad8..d7b41b71caba 100644 --- a/sap-3-tier-user-image-converged-md/shared/nic-config.json +++ b/sap-3-tier-user-image-converged-md/shared/nic-config.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/sap-3-tier-user-image-converged-md/shared/os-disk-parts-md.json b/sap-3-tier-user-image-converged-md/shared/os-disk-parts-md.json index 7c40cc9b7ef1..0e6104536309 100644 --- a/sap-3-tier-user-image-converged-md/shared/os-disk-parts-md.json +++ b/sap-3-tier-user-image-converged-md/shared/os-disk-parts-md.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageSku": { diff --git a/sap-3-tier-user-image-converged-md/shared/server-md.json b/sap-3-tier-user-image-converged-md/shared/server-md.json index 9eccbad557e6..8e7e576dfbfa 100644 --- a/sap-3-tier-user-image-converged-md/shared/server-md.json +++ b/sap-3-tier-user-image-converged-md/shared/server-md.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-3-tier-user-image-md/azuredeploy.json b/sap-3-tier-user-image-md/azuredeploy.json index ea6cb49a1f8a..2803e0891e9c 100644 --- a/sap-3-tier-user-image-md/azuredeploy.json +++ b/sap-3-tier-user-image-md/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-3-tier-user-image-md/azuredeploy.parameters.json b/sap-3-tier-user-image-md/azuredeploy.parameters.json index 56ffab8fc838..75624f2a19d7 100644 --- a/sap-3-tier-user-image-md/azuredeploy.parameters.json +++ b/sap-3-tier-user-image-md/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-3-tier-user-image-md/shared/lb-DB-HANA.json b/sap-3-tier-user-image-md/shared/lb-DB-HANA.json index a57c5a6f769d..18371c44c11f 100644 --- a/sap-3-tier-user-image-md/shared/lb-DB-HANA.json +++ b/sap-3-tier-user-image-md/shared/lb-DB-HANA.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-md/shared/lb-DB-SQL.json b/sap-3-tier-user-image-md/shared/lb-DB-SQL.json index 8cabfc983f64..957d2110db17 100644 --- a/sap-3-tier-user-image-md/shared/lb-DB-SQL.json +++ b/sap-3-tier-user-image-md/shared/lb-DB-SQL.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-md/shared/lb-DB0.json b/sap-3-tier-user-image-md/shared/lb-DB0.json index 4c44e52542b6..71a8e74d3eef 100644 --- a/sap-3-tier-user-image-md/shared/lb-DB0.json +++ b/sap-3-tier-user-image-md/shared/lb-DB0.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-md/shared/lb-ERS-Linux.json b/sap-3-tier-user-image-md/shared/lb-ERS-Linux.json index 310d42bfddc9..8c240f38a027 100644 --- a/sap-3-tier-user-image-md/shared/lb-ERS-Linux.json +++ b/sap-3-tier-user-image-md/shared/lb-ERS-Linux.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-md/shared/lb-ERS-Windows.json b/sap-3-tier-user-image-md/shared/lb-ERS-Windows.json index 2ff354045b0a..e7232c8374f4 100644 --- a/sap-3-tier-user-image-md/shared/lb-ERS-Windows.json +++ b/sap-3-tier-user-image-md/shared/lb-ERS-Windows.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-md/shared/lb-ERS0.json b/sap-3-tier-user-image-md/shared/lb-ERS0.json index aa8a93e20eb5..d9962575b3a1 100644 --- a/sap-3-tier-user-image-md/shared/lb-ERS0.json +++ b/sap-3-tier-user-image-md/shared/lb-ERS0.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-md/shared/lb-SCS.json b/sap-3-tier-user-image-md/shared/lb-SCS.json index a3acfd5a9802..e1e1e989a88a 100644 --- a/sap-3-tier-user-image-md/shared/lb-SCS.json +++ b/sap-3-tier-user-image-md/shared/lb-SCS.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-md/shared/lb-SCS0.json b/sap-3-tier-user-image-md/shared/lb-SCS0.json index be872832bb12..00723ecfac8c 100644 --- a/sap-3-tier-user-image-md/shared/lb-SCS0.json +++ b/sap-3-tier-user-image-md/shared/lb-SCS0.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-md/shared/loadbalancer.json b/sap-3-tier-user-image-md/shared/loadbalancer.json index 8b87b6c92dbb..20309cda3013 100644 --- a/sap-3-tier-user-image-md/shared/loadbalancer.json +++ b/sap-3-tier-user-image-md/shared/loadbalancer.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "loadBalancerName": { diff --git a/sap-3-tier-user-image-md/shared/newnsg.json b/sap-3-tier-user-image-md/shared/newnsg.json index a4dc17d062e5..e69b4bb64a5e 100644 --- a/sap-3-tier-user-image-md/shared/newnsg.json +++ b/sap-3-tier-user-image-md/shared/newnsg.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "nsgName": { diff --git a/sap-3-tier-user-image-md/shared/newpip.json b/sap-3-tier-user-image-md/shared/newpip.json index 07cd7b3f655f..6289cb08bc54 100644 --- a/sap-3-tier-user-image-md/shared/newpip.json +++ b/sap-3-tier-user-image-md/shared/newpip.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "publicIpName": { diff --git a/sap-3-tier-user-image-md/shared/newvnetnsg.json b/sap-3-tier-user-image-md/shared/newvnetnsg.json index 1003d60a3611..d64c2f8319ba 100644 --- a/sap-3-tier-user-image-md/shared/newvnetnsg.json +++ b/sap-3-tier-user-image-md/shared/newvnetnsg.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/sap-3-tier-user-image-md/shared/nic-config.json b/sap-3-tier-user-image-md/shared/nic-config.json index 0a66cebe78ce..2b8679d9a79a 100644 --- a/sap-3-tier-user-image-md/shared/nic-config.json +++ b/sap-3-tier-user-image-md/shared/nic-config.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vnetName": { diff --git a/sap-3-tier-user-image-md/shared/os-disk-parts-md.json b/sap-3-tier-user-image-md/shared/os-disk-parts-md.json index 7c40cc9b7ef1..0e6104536309 100644 --- a/sap-3-tier-user-image-md/shared/os-disk-parts-md.json +++ b/sap-3-tier-user-image-md/shared/os-disk-parts-md.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageSku": { diff --git a/sap-3-tier-user-image-md/shared/server-md.json b/sap-3-tier-user-image-md/shared/server-md.json index 9eccbad557e6..8e7e576dfbfa 100644 --- a/sap-3-tier-user-image-md/shared/server-md.json +++ b/sap-3-tier-user-image-md/shared/server-md.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "imageReference": { diff --git a/sap-file-server-md/azuredeploy.json b/sap-file-server-md/azuredeploy.json index 11bd5fc5232e..82b6ea698a06 100644 --- a/sap-file-server-md/azuredeploy.json +++ b/sap-file-server-md/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "resourcePrefix": { diff --git a/sap-file-server-md/azuredeploy.parameters.json b/sap-file-server-md/azuredeploy.parameters.json index 571a16f72697..b59ed9a6c221 100644 --- a/sap-file-server-md/azuredeploy.parameters.json +++ b/sap-file-server-md/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/sap-lama-apps/azuredeploy.json b/sap-lama-apps/azuredeploy.json index a7a9eff9d6e4..6babf741e184 100644 --- a/sap-lama-apps/azuredeploy.json +++ b/sap-lama-apps/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-lama-apps/azuredeploy.parameters.json b/sap-lama-apps/azuredeploy.parameters.json index 82e23610a675..fe8280d03d5d 100644 --- a/sap-lama-apps/azuredeploy.parameters.json +++ b/sap-lama-apps/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/sap-lama-apps/nestedtemplates/installHostAgent.json b/sap-lama-apps/nestedtemplates/installHostAgent.json index def3245f6b46..63a0a9fe0ce9 100644 --- a/sap-lama-apps/nestedtemplates/installHostAgent.json +++ b/sap-lama-apps/nestedtemplates/installHostAgent.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/sap-lama-apps/nestedtemplates/runCommand.json b/sap-lama-apps/nestedtemplates/runCommand.json index 8b245c7d77bc..afee3e83b353 100644 --- a/sap-lama-apps/nestedtemplates/runCommand.json +++ b/sap-lama-apps/nestedtemplates/runCommand.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/sap-lama-ascs/azuredeploy.json b/sap-lama-ascs/azuredeploy.json index f14e95d731cc..5ca7024d9987 100644 --- a/sap-lama-ascs/azuredeploy.json +++ b/sap-lama-ascs/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-lama-ascs/azuredeploy.parameters.json b/sap-lama-ascs/azuredeploy.parameters.json index 26d045eccb96..092a3ea8f090 100644 --- a/sap-lama-ascs/azuredeploy.parameters.json +++ b/sap-lama-ascs/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/sap-lama-ascs/nestedtemplates/installHostAgent.json b/sap-lama-ascs/nestedtemplates/installHostAgent.json index def3245f6b46..63a0a9fe0ce9 100644 --- a/sap-lama-ascs/nestedtemplates/installHostAgent.json +++ b/sap-lama-ascs/nestedtemplates/installHostAgent.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/sap-lama-database/azuredeploy.json b/sap-lama-database/azuredeploy.json index 6b4dfacc0c99..bfbf469d7a4a 100644 --- a/sap-lama-database/azuredeploy.json +++ b/sap-lama-database/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sapSystemId": { diff --git a/sap-lama-database/azuredeploy.parameters.json b/sap-lama-database/azuredeploy.parameters.json index 26d045eccb96..092a3ea8f090 100644 --- a/sap-lama-database/azuredeploy.parameters.json +++ b/sap-lama-database/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/sap-lama-database/nestedtemplates/installHostAgent.json b/sap-lama-database/nestedtemplates/installHostAgent.json index def3245f6b46..63a0a9fe0ce9 100644 --- a/sap-lama-database/nestedtemplates/installHostAgent.json +++ b/sap-lama-database/nestedtemplates/installHostAgent.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { diff --git a/sas-viya/azuredeploy.json b/sas-viya/azuredeploy.json index c22e76b44e68..ef08ddbc774a 100644 --- a/sas-viya/azuredeploy.json +++ b/sas-viya/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "0.1.0.0", "parameters": { "DeploymentDataLocation": { diff --git a/sas-viya/azuredeploy.parameters.json b/sas-viya/azuredeploy.parameters.json index 253aa30bd2a0..05b3cc23d28b 100644 --- a/sas-viya/azuredeploy.parameters.json +++ b/sas-viya/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "DeploymentDataLocation": { diff --git a/sas-viya/nestedtemplates/createNetworkSubtemplate.json b/sas-viya/nestedtemplates/createNetworkSubtemplate.json index 23f805aaee88..45c003b40602 100644 --- a/sas-viya/nestedtemplates/createNetworkSubtemplate.json +++ b/sas-viya/nestedtemplates/createNetworkSubtemplate.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/sas-viya/nestedtemplates/run_ansible_script.json b/sas-viya/nestedtemplates/run_ansible_script.json index f2cb34aa668c..879950be5fd0 100644 --- a/sas-viya/nestedtemplates/run_ansible_script.json +++ b/sas-viya/nestedtemplates/run_ansible_script.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sccm-currentbranch/azuredeploy.json b/sccm-currentbranch/azuredeploy.json index 4d415e8215a0..d5a641b8a4b2 100644 --- a/sccm-currentbranch/azuredeploy.json +++ b/sccm-currentbranch/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "prefix": { diff --git a/sccm-currentbranch/azuredeploy.parameters.json b/sccm-currentbranch/azuredeploy.parameters.json index de43902380a2..8e6a19fcfdd5 100644 --- a/sccm-currentbranch/azuredeploy.parameters.json +++ b/sccm-currentbranch/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "prefix": { diff --git a/sccm-technicalpreview/azuredeploy.json b/sccm-technicalpreview/azuredeploy.json index 73c3ac1e624f..9ac0c10de417 100644 --- a/sccm-technicalpreview/azuredeploy.json +++ b/sccm-technicalpreview/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "prefix": { diff --git a/sccm-technicalpreview/azuredeploy.parameters.json b/sccm-technicalpreview/azuredeploy.parameters.json index de43902380a2..8e6a19fcfdd5 100644 --- a/sccm-technicalpreview/azuredeploy.parameters.json +++ b/sccm-technicalpreview/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "prefix": { diff --git a/scrapy-on-ubuntu/azuredeploy.json b/scrapy-on-ubuntu/azuredeploy.json index 5db7c29f8db9..54b0e4d64404 100644 --- a/scrapy-on-ubuntu/azuredeploy.json +++ b/scrapy-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/scrapy-on-ubuntu/azuredeploy.parameters.json b/scrapy-on-ubuntu/azuredeploy.parameters.json index e99773d9417b..f18bb4bdff0d 100644 --- a/scrapy-on-ubuntu/azuredeploy.parameters.json +++ b/scrapy-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "newStorageAccountName": { diff --git a/service-fabric-secure-cluster-5-node-1-nodetype/azuredeploy.json b/service-fabric-secure-cluster-5-node-1-nodetype/azuredeploy.json index ad45d32dc74a..89dd3cef5a98 100644 --- a/service-fabric-secure-cluster-5-node-1-nodetype/azuredeploy.json +++ b/service-fabric-secure-cluster-5-node-1-nodetype/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/service-fabric-secure-cluster-5-node-1-nodetype/azuredeploy.parameters.json b/service-fabric-secure-cluster-5-node-1-nodetype/azuredeploy.parameters.json index 88deba85f55d..bb49f394d21e 100644 --- a/service-fabric-secure-cluster-5-node-1-nodetype/azuredeploy.parameters.json +++ b/service-fabric-secure-cluster-5-node-1-nodetype/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/service-fabric-secure-nsg-cluster-65-node-3-nodetype/azuredeploy.json b/service-fabric-secure-nsg-cluster-65-node-3-nodetype/azuredeploy.json index d7a2c84f68a9..6963c739d26e 100644 --- a/service-fabric-secure-nsg-cluster-65-node-3-nodetype/azuredeploy.json +++ b/service-fabric-secure-nsg-cluster-65-node-3-nodetype/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/service-fabric-secure-nsg-cluster-65-node-3-nodetype/azuredeploy.parameters.json b/service-fabric-secure-nsg-cluster-65-node-3-nodetype/azuredeploy.parameters.json index 1b4e2f1a1c83..17a1d7f2386d 100644 --- a/service-fabric-secure-nsg-cluster-65-node-3-nodetype/azuredeploy.parameters.json +++ b/service-fabric-secure-nsg-cluster-65-node-3-nodetype/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "clusterName": { diff --git a/sharepoint-adfs/azuredeploy.parameters.json b/sharepoint-adfs/azuredeploy.parameters.json index 75bac182847c..d43020c5e1be 100644 --- a/sharepoint-adfs/azuredeploy.parameters.json +++ b/sharepoint-adfs/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelPrefix": { diff --git a/sharepoint-adfs/dsc/ConfigureDCVM.ps1 b/sharepoint-adfs/dsc/ConfigureDCVM.ps1 index eeaaa3bd4eb7..f8559c6fd93a 100644 --- a/sharepoint-adfs/dsc/ConfigureDCVM.ps1 +++ b/sharepoint-adfs/dsc/ConfigureDCVM.ps1 @@ -280,14 +280,14 @@ ClaimsProviderName = @("Active Directory") WsFederationEndpoint = "https://$SPTrustedSitesName.$DomainFQDN/_trust/" AdditionalWSFedEndpoint = @("https://*.$DomainFQDN/") - IssuanceAuthorizationRules = '=> issue(Type = "http://schemas.microsoft.com/authorization/claims/permit", value = "true");' + IssuanceAuthorizationRules = '=> issue(Type = "https://schemas.microsoft.com/authorization/claims/permit", value = "true");' IssuanceTransformRules = @" @RuleTemplate = "LdapClaims" @RuleName = "AD" -c:[Type == "http://schemas.microsoft.com/ws/2008/06/identity/claims/windowsaccountname", Issuer == "AD AUTHORITY"] +c:[Type == "https://schemas.microsoft.com/ws/2008/06/identity/claims/windowsaccountname", Issuer == "AD AUTHORITY"] => issue( store = "Active Directory", -types = ("http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress", "http://schemas.microsoft.com/ws/2008/06/identity/claims/role"), +types = ("https://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress", "https://schemas.microsoft.com/ws/2008/06/identity/claims/role"), query = ";mail,tokenGroups(longDomainQualifiedName);{0}", param = c.Value); "@ diff --git a/sharepoint-adfs/dsc/ConfigureSPVM.ps1 b/sharepoint-adfs/dsc/ConfigureSPVM.ps1 index a6879b199d08..bc29d16e9b63 100644 --- a/sharepoint-adfs/dsc/ConfigureSPVM.ps1 +++ b/sharepoint-adfs/dsc/ConfigureSPVM.ps1 @@ -508,15 +508,15 @@ configuration ConfigureSPVM Description = "Federation with $DomainFQDN" Realm = "https://$SPTrustedSitesName.$DomainFQDN" SignInUrl = "https://adfs.$DomainFQDN/adfs/ls/" - IdentifierClaim = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress" + IdentifierClaim = "https://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress" ClaimsMappings = @( MSFT_SPClaimTypeMapping{ Name = "Email" - IncomingClaimType = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress" + IncomingClaimType = "https://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress" } MSFT_SPClaimTypeMapping{ Name = "Role" - IncomingClaimType = "http://schemas.microsoft.com/ws/2008/06/identity/claims/role" + IncomingClaimType = "https://schemas.microsoft.com/ws/2008/06/identity/claims/role" } ) SigningCertificateFilePath = "$SetupPath\Certificates\ADFS Signing.cer" @@ -538,13 +538,13 @@ configuration ConfigureSPVM $config = [ldapcp.LDAPCPConfig]::CreateConfiguration([ldapcp.ClaimsProviderConstants]::CONFIG_ID, [ldapcp.ClaimsProviderConstants]::CONFIG_NAME, $using:DomainFQDN); # Remove unused claim types - $config.ClaimTypes.Remove("http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn") - $config.ClaimTypes.Remove("http://schemas.microsoft.com/ws/2008/06/identity/claims/windowsaccountname") - $config.ClaimTypes.Remove("http://schemas.microsoft.com/ws/2008/06/identity/claims/primarygroupsid") + $config.ClaimTypes.Remove("https://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn") + $config.ClaimTypes.Remove("https://schemas.microsoft.com/ws/2008/06/identity/claims/windowsaccountname") + $config.ClaimTypes.Remove("https://schemas.microsoft.com/ws/2008/06/identity/claims/primarygroupsid") # Configure augmentation $config.EnableAugmentation = $true - $config.MainGroupClaimType = "http://schemas.microsoft.com/ws/2008/06/identity/claims/role" + $config.MainGroupClaimType = "https://schemas.microsoft.com/ws/2008/06/identity/claims/role" foreach ($connection in $config.LDAPConnectionsProp) { $connection.EnableAugmentation = $true } diff --git a/sharepoint-server-farm-ha/azuredeploy.json b/sharepoint-server-farm-ha/azuredeploy.json index e9965abcff47..584247bbbe8c 100644 --- a/sharepoint-server-farm-ha/azuredeploy.json +++ b/sharepoint-server-farm-ha/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sharepointFarmName": { diff --git a/sharepoint-server-farm-ha/azuredeploy.parameters.json b/sharepoint-server-farm-ha/azuredeploy.parameters.json index 3d2c525210df..c6ef8972388e 100644 --- a/sharepoint-server-farm-ha/azuredeploy.parameters.json +++ b/sharepoint-server-farm-ha/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/sharepoint-server-farm-ha/mainTemplate.json b/sharepoint-server-farm-ha/mainTemplate.json index 90167f6717f9..305b3e0a3096 100644 --- a/sharepoint-server-farm-ha/mainTemplate.json +++ b/sharepoint-server-farm-ha/mainTemplate.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/availabilitySets.json b/sharepoint-server-farm-ha/nestedtemplates/availabilitySets.json index e250bbb66b52..aa0097939f67 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/availabilitySets.json +++ b/sharepoint-server-farm-ha/nestedtemplates/availabilitySets.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adAvailabilitySetName": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/configuringBackupDomainController.json b/sharepoint-server-farm-ha/nestedtemplates/configuringBackupDomainController.json index cd32358e1cc4..aa451998d918 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/configuringBackupDomainController.json +++ b/sharepoint-server-farm-ha/nestedtemplates/configuringBackupDomainController.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adBDCVMName": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/configuringSQLAlwaysOnCluster.json b/sharepoint-server-farm-ha/nestedtemplates/configuringSQLAlwaysOnCluster.json index 943ef81a9327..2390817a7862 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/configuringSQLAlwaysOnCluster.json +++ b/sharepoint-server-farm-ha/nestedtemplates/configuringSQLAlwaysOnCluster.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlVMName": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/configuringSharePoint.json b/sharepoint-server-farm-ha/nestedtemplates/configuringSharePoint.json index 63e2b514bc53..0a4c376680eb 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/configuringSharePoint.json +++ b/sharepoint-server-farm-ha/nestedtemplates/configuringSharePoint.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "spappVMName": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/creatingNICS.json b/sharepoint-server-farm-ha/nestedtemplates/creatingNICS.json index c1a323fda9cb..ceaf2081e988 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/creatingNICS.json +++ b/sharepoint-server-farm-ha/nestedtemplates/creatingNICS.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/creatingStorageAccounts.json b/sharepoint-server-farm-ha/nestedtemplates/creatingStorageAccounts.json index dce319d21fe4..17aee4926f67 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/creatingStorageAccounts.json +++ b/sharepoint-server-farm-ha/nestedtemplates/creatingStorageAccounts.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountNamePrefix": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/nic.json b/sharepoint-server-farm-ha/nestedtemplates/nic.json index 0712385f0817..60c7dd04891d 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/nic.json +++ b/sharepoint-server-farm-ha/nestedtemplates/nic.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/provisioningBackupDomainController.json b/sharepoint-server-farm-ha/nestedtemplates/provisioningBackupDomainController.json index f0f013264a2b..9e41016b6567 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/provisioningBackupDomainController.json +++ b/sharepoint-server-farm-ha/nestedtemplates/provisioningBackupDomainController.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adBDCVMName": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/provisioningPrimaryDomainController.json b/sharepoint-server-farm-ha/nestedtemplates/provisioningPrimaryDomainController.json index bdf8c0872bdf..1206892189d5 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/provisioningPrimaryDomainController.json +++ b/sharepoint-server-farm-ha/nestedtemplates/provisioningPrimaryDomainController.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adPDCVMName": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/provisioningSQLVMs.json b/sharepoint-server-farm-ha/nestedtemplates/provisioningSQLVMs.json index 7ab93c6e142f..6fc8a41f5d1a 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/provisioningSQLVMs.json +++ b/sharepoint-server-farm-ha/nestedtemplates/provisioningSQLVMs.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlVMName": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/provisioningSharepointVMs.json b/sharepoint-server-farm-ha/nestedtemplates/provisioningSharepointVMs.json index 39553ff2d461..9778c67441cc 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/provisioningSharepointVMs.json +++ b/sharepoint-server-farm-ha/nestedtemplates/provisioningSharepointVMs.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "spappVMName": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/publicip-existing.json b/sharepoint-server-farm-ha/nestedtemplates/publicip-existing.json index fcf8dcd505c6..9b9e83fb4096 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/publicip-existing.json +++ b/sharepoint-server-farm-ha/nestedtemplates/publicip-existing.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/publicip-new.json b/sharepoint-server-farm-ha/nestedtemplates/publicip-new.json index 41d460abc53c..466ecbd4e252 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/publicip-new.json +++ b/sharepoint-server-farm-ha/nestedtemplates/publicip-new.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/publicip-rdp.json b/sharepoint-server-farm-ha/nestedtemplates/publicip-rdp.json index c42f88773a53..f8a5a9485b5c 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/publicip-rdp.json +++ b/sharepoint-server-farm-ha/nestedtemplates/publicip-rdp.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/setupLBs.json b/sharepoint-server-farm-ha/nestedtemplates/setupLBs.json index de7954610b31..1a865908d811 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/setupLBs.json +++ b/sharepoint-server-farm-ha/nestedtemplates/setupLBs.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/vnet-new.json b/sharepoint-server-farm-ha/nestedtemplates/vnet-new.json index 350ec2dc6dd5..dfcfa9e80614 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/vnet-new.json +++ b/sharepoint-server-farm-ha/nestedtemplates/vnet-new.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-server-farm-ha/nestedtemplates/vnet-with-dns-server.json b/sharepoint-server-farm-ha/nestedtemplates/vnet-with-dns-server.json index 5a500321d524..1ef92852d18a 100644 --- a/sharepoint-server-farm-ha/nestedtemplates/vnet-with-dns-server.json +++ b/sharepoint-server-farm-ha/nestedtemplates/vnet-with-dns-server.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-three-vm/availabilitySets.json b/sharepoint-three-vm/availabilitySets.json index 0b70b601a1e5..ec3818380db1 100644 --- a/sharepoint-three-vm/availabilitySets.json +++ b/sharepoint-three-vm/availabilitySets.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-three-vm/azuredeploy.json b/sharepoint-three-vm/azuredeploy.json index 6ba823c9923d..fc865bb826bc 100644 --- a/sharepoint-three-vm/azuredeploy.json +++ b/sharepoint-three-vm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sharepointFarmName": { diff --git a/sharepoint-three-vm/azuredeploy.parameters.json b/sharepoint-three-vm/azuredeploy.parameters.json index e6cdac4c396c..ae5b4ffff214 100644 --- a/sharepoint-three-vm/azuredeploy.parameters.json +++ b/sharepoint-three-vm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/sharepoint-three-vm/configuringSQL.json b/sharepoint-three-vm/configuringSQL.json index fb3e4571795b..2dd912666b8e 100644 --- a/sharepoint-three-vm/configuringSQL.json +++ b/sharepoint-three-vm/configuringSQL.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-three-vm/configuringSharepoint.json b/sharepoint-three-vm/configuringSharepoint.json index a2a7bffbb290..208e4fdf2fa6 100644 --- a/sharepoint-three-vm/configuringSharepoint.json +++ b/sharepoint-three-vm/configuringSharepoint.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "spVMName": { diff --git a/sharepoint-three-vm/creatingNICS.json b/sharepoint-three-vm/creatingNICS.json index 2bcc70b5911d..082aecc82fe8 100644 --- a/sharepoint-three-vm/creatingNICS.json +++ b/sharepoint-three-vm/creatingNICS.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-three-vm/creatingPublicIPs.json b/sharepoint-three-vm/creatingPublicIPs.json index 5fa5762195d2..d682423640be 100644 --- a/sharepoint-three-vm/creatingPublicIPs.json +++ b/sharepoint-three-vm/creatingPublicIPs.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-three-vm/loadBalancers.json b/sharepoint-three-vm/loadBalancers.json index 8075efc634d1..b38701aa9a0a 100644 --- a/sharepoint-three-vm/loadBalancers.json +++ b/sharepoint-three-vm/loadBalancers.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-three-vm/mainTemplate.json b/sharepoint-three-vm/mainTemplate.json index 6ba823c9923d..fc865bb826bc 100644 --- a/sharepoint-three-vm/mainTemplate.json +++ b/sharepoint-three-vm/mainTemplate.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sharepointFarmName": { diff --git a/sharepoint-three-vm/provisioningDomainController.json b/sharepoint-three-vm/provisioningDomainController.json index 684f3c012bea..3bfecef65233 100644 --- a/sharepoint-three-vm/provisioningDomainController.json +++ b/sharepoint-three-vm/provisioningDomainController.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-three-vm/provisioningSQL.json b/sharepoint-three-vm/provisioningSQL.json index 00bbbc2e643b..0d65bae37692 100644 --- a/sharepoint-three-vm/provisioningSQL.json +++ b/sharepoint-three-vm/provisioningSQL.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-three-vm/provisioningSharepoint.json b/sharepoint-three-vm/provisioningSharepoint.json index 46d2ff68e403..2530c757503c 100644 --- a/sharepoint-three-vm/provisioningSharepoint.json +++ b/sharepoint-three-vm/provisioningSharepoint.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "spVMName": { diff --git a/sharepoint-three-vm/publicip-existing.json b/sharepoint-three-vm/publicip-existing.json index 22bea7c547db..3b950122273c 100644 --- a/sharepoint-three-vm/publicip-existing.json +++ b/sharepoint-three-vm/publicip-existing.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-three-vm/publicip-new.json b/sharepoint-three-vm/publicip-new.json index 414998b68f0a..c9b6283f7ae8 100644 --- a/sharepoint-three-vm/publicip-new.json +++ b/sharepoint-three-vm/publicip-new.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-three-vm/storageAccount.json b/sharepoint-three-vm/storageAccount.json index 53213d34e18c..cd31711e4d94 100644 --- a/sharepoint-three-vm/storageAccount.json +++ b/sharepoint-three-vm/storageAccount.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-three-vm/vnet-new.json b/sharepoint-three-vm/vnet-new.json index 6e2b45727bc6..d239f71d41ca 100644 --- a/sharepoint-three-vm/vnet-new.json +++ b/sharepoint-three-vm/vnet-new.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sharepoint-three-vm/vnet-with-dns-server.json b/sharepoint-three-vm/vnet-with-dns-server.json index 243b1e59e09a..e52ae429d2e5 100644 --- a/sharepoint-three-vm/vnet-with-dns-server.json +++ b/sharepoint-three-vm/vnet-with-dns-server.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/shibboleth-cluster-ubuntu/azuredeploy.json b/shibboleth-cluster-ubuntu/azuredeploy.json index e5e2c75ed513..9187e7f5d36d 100644 --- a/shibboleth-cluster-ubuntu/azuredeploy.json +++ b/shibboleth-cluster-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/shibboleth-cluster-ubuntu/azuredeploy.parameters.json b/shibboleth-cluster-ubuntu/azuredeploy.parameters.json index 2c1666d22baa..477f9fc5b273 100644 --- a/shibboleth-cluster-ubuntu/azuredeploy.parameters.json +++ b/shibboleth-cluster-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/shibboleth-cluster-windows/azuredeploy.json b/shibboleth-cluster-windows/azuredeploy.json index fb734126ccb4..d34dfb249482 100644 --- a/shibboleth-cluster-windows/azuredeploy.json +++ b/shibboleth-cluster-windows/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/shibboleth-cluster-windows/azuredeploy.parameters.json b/shibboleth-cluster-windows/azuredeploy.parameters.json index 55b3ab641688..c142aab135ad 100644 --- a/shibboleth-cluster-windows/azuredeploy.parameters.json +++ b/shibboleth-cluster-windows/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/shibboleth-singlevm-ubuntu/azuredeploy.json b/shibboleth-singlevm-ubuntu/azuredeploy.json index 7dcd3e52de1a..79f902b66ed3 100644 --- a/shibboleth-singlevm-ubuntu/azuredeploy.json +++ b/shibboleth-singlevm-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/shibboleth-singlevm-ubuntu/azuredeploy.parameters.json b/shibboleth-singlevm-ubuntu/azuredeploy.parameters.json index 802f3fe2a3ee..1ae02220b3b0 100644 --- a/shibboleth-singlevm-ubuntu/azuredeploy.parameters.json +++ b/shibboleth-singlevm-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/shibboleth-singlevm-windows/azuredeploy.json b/shibboleth-singlevm-windows/azuredeploy.json index 9d01a3e08ced..82453d8a593d 100644 --- a/shibboleth-singlevm-windows/azuredeploy.json +++ b/shibboleth-singlevm-windows/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/shibboleth-singlevm-windows/azuredeploy.parameters.json b/shibboleth-singlevm-windows/azuredeploy.parameters.json index 4bf9167e093e..7b8f53bd1659 100644 --- a/shibboleth-singlevm-windows/azuredeploy.parameters.json +++ b/shibboleth-singlevm-windows/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/slurm-on-sles12-hpc/azuredeploy.json b/slurm-on-sles12-hpc/azuredeploy.json index 6f5ef4d20292..b8e2079bbe2d 100644 --- a/slurm-on-sles12-hpc/azuredeploy.json +++ b/slurm-on-sles12-hpc/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsPrefix": { diff --git a/slurm-on-sles12-hpc/azuredeploy.parameters.json b/slurm-on-sles12-hpc/azuredeploy.parameters.json index 68053cb2ca39..a6045927036d 100644 --- a/slurm-on-sles12-hpc/azuredeploy.parameters.json +++ b/slurm-on-sles12-hpc/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsPrefix": { diff --git a/slurm/azuredeploy.json b/slurm/azuredeploy.json index 91f8b4933f26..2dfb69430bbf 100644 --- a/slurm/azuredeploy.json +++ b/slurm/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/slurm/azuredeploy.parameters.json b/slurm/azuredeploy.parameters.json index f9b8ed4a107c..db78c08fb5b9 100644 --- a/slurm/azuredeploy.parameters.json +++ b/slurm/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/solace-message-router/azuredeploy.json b/solace-message-router/azuredeploy.json index 14d336622664..3f8c7077bd99 100644 --- a/solace-message-router/azuredeploy.json +++ b/solace-message-router/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/solace-message-router/azuredeploy.parameters.json b/solace-message-router/azuredeploy.parameters.json index 4f26094bb613..222535d48235 100644 --- a/solace-message-router/azuredeploy.parameters.json +++ b/solace-message-router/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/solace-message-router/nestedtemplates/loadbalancer-shared-resources.json b/solace-message-router/nestedtemplates/loadbalancer-shared-resources.json index a16efacb7c4e..a0b3c4aafeca 100644 --- a/solace-message-router/nestedtemplates/loadbalancer-shared-resources.json +++ b/solace-message-router/nestedtemplates/loadbalancer-shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "dnsLabelForLbIp": { diff --git a/solace-message-router/nestedtemplates/security-shared-resources.json b/solace-message-router/nestedtemplates/security-shared-resources.json index 180f65d8b26a..64ae9fa137ea 100644 --- a/solace-message-router/nestedtemplates/security-shared-resources.json +++ b/solace-message-router/nestedtemplates/security-shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "securityGroupName": { diff --git a/solace-message-router/nestedtemplates/update-subnet-shared-resources.json b/solace-message-router/nestedtemplates/update-subnet-shared-resources.json index 95758a651339..73e8ee24915d 100644 --- a/solace-message-router/nestedtemplates/update-subnet-shared-resources.json +++ b/solace-message-router/nestedtemplates/update-subnet-shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/solace-message-router/nestedtemplates/workspace-enabled-shared-resources.json b/solace-message-router/nestedtemplates/workspace-enabled-shared-resources.json index 77f0fb60f997..e136118f4ef6 100644 --- a/solace-message-router/nestedtemplates/workspace-enabled-shared-resources.json +++ b/solace-message-router/nestedtemplates/workspace-enabled-shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "workspaceName": { diff --git a/sonarqube-azuresql/azuredeploy.json b/sonarqube-azuresql/azuredeploy.json index 1e529c17bd2e..cdf4cf88516d 100644 --- a/sonarqube-azuresql/azuredeploy.json +++ b/sonarqube-azuresql/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.1.0.0", "parameters": { "sqVM_AppName": { diff --git a/sonarqube-azuresql/azuredeploy.parameters.json b/sonarqube-azuresql/azuredeploy.parameters.json index 99466531c5ac..94da5b9ce74b 100644 --- a/sonarqube-azuresql/azuredeploy.parameters.json +++ b/sonarqube-azuresql/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.1.0.0", "parameters": { "sqVM_AppName": { diff --git a/sonarqube-azuresql/nested/azureDBDeploy.json b/sonarqube-azuresql/nested/azureDBDeploy.json index f08976d504b6..4bf921259038 100644 --- a/sonarqube-azuresql/nested/azureDBDeploy.json +++ b/sonarqube-azuresql/nested/azureDBDeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminLogin": { diff --git a/spark-2.0-on-suse/azuredeploy.json b/spark-2.0-on-suse/azuredeploy.json index f0bd92436488..b64da0036b5e 100644 --- a/spark-2.0-on-suse/azuredeploy.json +++ b/spark-2.0-on-suse/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/spark-2.0-on-suse/azuredeploy.parameters.json b/spark-2.0-on-suse/azuredeploy.parameters.json index dacaacf0784f..72dd4c33f3d6 100644 --- a/spark-2.0-on-suse/azuredeploy.parameters.json +++ b/spark-2.0-on-suse/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/spark-and-cassandra-on-centos/azuredeploy.json b/spark-and-cassandra-on-centos/azuredeploy.json index 23c1f70a92d3..2ed08ffac0a4 100644 --- a/spark-and-cassandra-on-centos/azuredeploy.json +++ b/spark-and-cassandra-on-centos/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageMasterType": { diff --git a/spark-and-cassandra-on-centos/azuredeploy.parameters.json b/spark-and-cassandra-on-centos/azuredeploy.parameters.json index a0c15fa14451..29921e42d599 100644 --- a/spark-and-cassandra-on-centos/azuredeploy.parameters.json +++ b/spark-and-cassandra-on-centos/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "vmNumberOfSlaves": { diff --git a/spark-on-ubuntu/azuredeploy.json b/spark-on-ubuntu/azuredeploy.json index 3eb2501847f4..1e61fc2a4aac 100644 --- a/spark-on-ubuntu/azuredeploy.json +++ b/spark-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/spark-on-ubuntu/azuredeploy.parameters.json b/spark-on-ubuntu/azuredeploy.parameters.json index ce34b5487811..12be08276d70 100644 --- a/spark-on-ubuntu/azuredeploy.parameters.json +++ b/spark-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { diff --git a/spark-on-ubuntu/jumpbox-resources-disabled.json b/spark-on-ubuntu/jumpbox-resources-disabled.json index 9a5abc3d716f..bdd1ad5a5da5 100644 --- a/spark-on-ubuntu/jumpbox-resources-disabled.json +++ b/spark-on-ubuntu/jumpbox-resources-disabled.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/spark-on-ubuntu/jumpbox-resources-enabled.json b/spark-on-ubuntu/jumpbox-resources-enabled.json index c0e996514855..569ad4098d3a 100644 --- a/spark-on-ubuntu/jumpbox-resources-enabled.json +++ b/spark-on-ubuntu/jumpbox-resources-enabled.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/spark-on-ubuntu/shared-resources.json b/spark-on-ubuntu/shared-resources.json index 9c578557edff..3d116e43f380 100644 --- a/spark-on-ubuntu/shared-resources.json +++ b/spark-on-ubuntu/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "virtualNetworkName": { diff --git a/spark-ubuntu-multidisks/azuredeploy.json b/spark-ubuntu-multidisks/azuredeploy.json index 8fc12b14ef29..7b6c126d4b12 100644 --- a/spark-ubuntu-multidisks/azuredeploy.json +++ b/spark-ubuntu-multidisks/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountNamePrefix": { diff --git a/spark-ubuntu-multidisks/azuredeploy.parameters.json b/spark-ubuntu-multidisks/azuredeploy.parameters.json index 8315ca20ba90..3601786e8285 100644 --- a/spark-ubuntu-multidisks/azuredeploy.parameters.json +++ b/spark-ubuntu-multidisks/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountNamePrefix": { diff --git a/spark-ubuntu-multidisks/datastore-16disk-resources.json b/spark-ubuntu-multidisks/datastore-16disk-resources.json index cc85582d530f..923d1f0cef71 100644 --- a/spark-ubuntu-multidisks/datastore-16disk-resources.json +++ b/spark-ubuntu-multidisks/datastore-16disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/spark-ubuntu-multidisks/datastore-2disk-resources.json b/spark-ubuntu-multidisks/datastore-2disk-resources.json index 1fa7e0cfacf7..41257a4c3632 100644 --- a/spark-ubuntu-multidisks/datastore-2disk-resources.json +++ b/spark-ubuntu-multidisks/datastore-2disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/spark-ubuntu-multidisks/datastore-8disk-resources.json b/spark-ubuntu-multidisks/datastore-8disk-resources.json index 83e30fde0291..766fcf0563b4 100644 --- a/spark-ubuntu-multidisks/datastore-8disk-resources.json +++ b/spark-ubuntu-multidisks/datastore-8disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/spark-ubuntu-multidisks/empty-resources.json b/spark-ubuntu-multidisks/empty-resources.json index 4fb1278b07e1..c46ac05ee11b 100644 --- a/spark-ubuntu-multidisks/empty-resources.json +++ b/spark-ubuntu-multidisks/empty-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/spark-ubuntu-multidisks/jumpbox-resources.json b/spark-ubuntu-multidisks/jumpbox-resources.json index 02776680a910..00a5ba7ad942 100644 --- a/spark-ubuntu-multidisks/jumpbox-resources.json +++ b/spark-ubuntu-multidisks/jumpbox-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "commonSettings": { diff --git a/spark-ubuntu-multidisks/shared-resources.json b/spark-ubuntu-multidisks/shared-resources.json index 5abb93f49459..2ec3bea4e994 100644 --- a/spark-ubuntu-multidisks/shared-resources.json +++ b/spark-ubuntu-multidisks/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageSettings": { diff --git a/splunk-on-ubuntu/azuredeploy-gov.json b/splunk-on-ubuntu/azuredeploy-gov.json index 3a4e530040f4..583b93a8e7b2 100644 --- a/splunk-on-ubuntu/azuredeploy-gov.json +++ b/splunk-on-ubuntu/azuredeploy-gov.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.2.2.0", "parameters": { "location": { diff --git a/splunk-on-ubuntu/azuredeploy-gov.parameters.json b/splunk-on-ubuntu/azuredeploy-gov.parameters.json index e600627b43c5..3b8ce61f8a6a 100644 --- a/splunk-on-ubuntu/azuredeploy-gov.parameters.json +++ b/splunk-on-ubuntu/azuredeploy-gov.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/splunk-on-ubuntu/azuredeploy.json b/splunk-on-ubuntu/azuredeploy.json index 47296e2c04ee..af12f9591a00 100644 --- a/splunk-on-ubuntu/azuredeploy.json +++ b/splunk-on-ubuntu/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.2.5.0", "parameters": { "location": { diff --git a/splunk-on-ubuntu/azuredeploy.parameters.json b/splunk-on-ubuntu/azuredeploy.parameters.json index f3a6e08d3f30..8e3f25d0e263 100644 --- a/splunk-on-ubuntu/azuredeploy.parameters.json +++ b/splunk-on-ubuntu/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/splunk-on-ubuntu/nested/clustermaster-resources.json b/splunk-on-ubuntu/nested/clustermaster-resources.json index deb8740e393d..b9f9a71e8415 100644 --- a/splunk-on-ubuntu/nested/clustermaster-resources.json +++ b/splunk-on-ubuntu/nested/clustermaster-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/splunk-on-ubuntu/nested/clusterpeers-resources.json b/splunk-on-ubuntu/nested/clusterpeers-resources.json index 57d9a682dd09..c88f32df1e9e 100644 --- a/splunk-on-ubuntu/nested/clusterpeers-resources.json +++ b/splunk-on-ubuntu/nested/clusterpeers-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/splunk-on-ubuntu/nested/clustersearchhead-resources.json b/splunk-on-ubuntu/nested/clustersearchhead-resources.json index d76a774e6de3..0ab43aeb568b 100644 --- a/splunk-on-ubuntu/nested/clustersearchhead-resources.json +++ b/splunk-on-ubuntu/nested/clustersearchhead-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/splunk-on-ubuntu/nested/empty-resources.json b/splunk-on-ubuntu/nested/empty-resources.json index 32c8f5753552..f5ebef77f17d 100644 --- a/splunk-on-ubuntu/nested/empty-resources.json +++ b/splunk-on-ubuntu/nested/empty-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/splunk-on-ubuntu/nested/shared-resources.json b/splunk-on-ubuntu/nested/shared-resources.json index 77f6dc2d8a36..c74ee0f3c670 100644 --- a/splunk-on-ubuntu/nested/shared-resources.json +++ b/splunk-on-ubuntu/nested/shared-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/splunk-on-ubuntu/nested/splunk-2disk-resources-loop.json b/splunk-on-ubuntu/nested/splunk-2disk-resources-loop.json index fc2e7807f535..4f4d32fdec46 100644 --- a/splunk-on-ubuntu/nested/splunk-2disk-resources-loop.json +++ b/splunk-on-ubuntu/nested/splunk-2disk-resources-loop.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/splunk-on-ubuntu/nested/splunk-2disk-resources.json b/splunk-on-ubuntu/nested/splunk-2disk-resources.json index 25c4fe22b5b9..31d6b0c94da4 100644 --- a/splunk-on-ubuntu/nested/splunk-2disk-resources.json +++ b/splunk-on-ubuntu/nested/splunk-2disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/splunk-on-ubuntu/nested/splunk-8disk-resources-loop.json b/splunk-on-ubuntu/nested/splunk-8disk-resources-loop.json index 6b1a2fead465..46ed25209378 100644 --- a/splunk-on-ubuntu/nested/splunk-8disk-resources-loop.json +++ b/splunk-on-ubuntu/nested/splunk-8disk-resources-loop.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/splunk-on-ubuntu/nested/splunk-8disk-resources.json b/splunk-on-ubuntu/nested/splunk-8disk-resources.json index 270036888483..ccc08cca8242 100644 --- a/splunk-on-ubuntu/nested/splunk-8disk-resources.json +++ b/splunk-on-ubuntu/nested/splunk-8disk-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/splunk-on-ubuntu/nested/standalone-instance-resources.json b/splunk-on-ubuntu/nested/standalone-instance-resources.json index 30eec4be0d89..b78cb392916f 100644 --- a/splunk-on-ubuntu/nested/standalone-instance-resources.json +++ b/splunk-on-ubuntu/nested/standalone-instance-resources.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/splunk-on-ubuntu/nested/vnet-existing.json b/splunk-on-ubuntu/nested/vnet-existing.json index 671d232fe0ed..340e3d3f606f 100644 --- a/splunk-on-ubuntu/nested/vnet-existing.json +++ b/splunk-on-ubuntu/nested/vnet-existing.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/splunk-on-ubuntu/nested/vnet-new.json b/splunk-on-ubuntu/nested/vnet-new.json index bb9214d419a0..1988ee3df54c 100644 --- a/splunk-on-ubuntu/nested/vnet-new.json +++ b/splunk-on-ubuntu/nested/vnet-new.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { diff --git a/sql-encryption-protector-byok/azuredeploy.json b/sql-encryption-protector-byok/azuredeploy.json index b249926547dd..fdd9a8b1b08e 100644 --- a/sql-encryption-protector-byok/azuredeploy.json +++ b/sql-encryption-protector-byok/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerName": { @@ -82,7 +82,7 @@ "properties": { "mode": "Incremental", "template": { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "resources": [ { diff --git a/sql-encryption-protector-byok/azuredeploy.parameters.json b/sql-encryption-protector-byok/azuredeploy.parameters.json index 447e273669d1..d34be4195e80 100644 --- a/sql-encryption-protector-byok/azuredeploy.parameters.json +++ b/sql-encryption-protector-byok/azuredeploy.parameters.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", "contentVersion": "1.0.0.0", "parameters": { "sqlServerName": { diff --git a/sql-reporting-services-sql-server/azuredeploy.json b/sql-reporting-services-sql-server/azuredeploy.json index 3fcfda44cae8..3514df5ecc65 100644 --- a/sql-reporting-services-sql-server/azuredeploy.json +++ b/sql-reporting-services-sql-server/azuredeploy.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "adminUsername": { @@ -115,7 +115,7 @@ "diagnosticsStorageAccountName": "[concat(uniqueString(resourceGroup().id),'diag')]", "diagnosticsStorageAccountResourceGroup": "[resourceGroup().name]", "accountid": "[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/', variables('diagnosticsStorageAccountResourceGroup'), '/providers/', 'Microsoft.Storage/storageAccounts/', variables('diagnosticsStorageAccountName'))]", - "wadlogs": " ", + "wadlogs": " ", "wadperfcounters1": "", "wadperfcounters2": "", "wadcfgxstart": "[concat(variables('wadlogs'), variables('wadperfcounters1'), variables('wadperfcounters2'), '