From cdf6eac0c3245b639d2d72964483bfa28c7663f3 Mon Sep 17 00:00:00 2001 From: Sheila Sanchez Date: Wed, 15 Jun 2022 12:10:59 -0700 Subject: [PATCH] update the tutorial templates api versions --- get-started-with-templates/add-location/azuredeploy.json | 2 +- get-started-with-templates/add-name/azuredeploy.json | 2 +- get-started-with-templates/add-outputs/azuredeploy.json | 2 +- get-started-with-templates/add-sku/azuredeploy.json | 2 +- get-started-with-templates/add-storage/azuredeploy.json | 2 +- get-started-with-templates/add-tags/azuredeploy.json | 6 +++--- get-started-with-templates/add-variable/azuredeploy.json | 2 +- get-started-with-templates/export-template/azuredeploy.json | 4 ++-- .../quickstart-template/azuredeploy.json | 6 +++--- 9 files changed, 14 insertions(+), 14 deletions(-) diff --git a/get-started-with-templates/add-location/azuredeploy.json b/get-started-with-templates/add-location/azuredeploy.json index 6059677..cb4b169 100644 --- a/get-started-with-templates/add-location/azuredeploy.json +++ b/get-started-with-templates/add-location/azuredeploy.json @@ -29,7 +29,7 @@ "resources": [ { "type": "Microsoft.Storage/storageAccounts", - "apiVersion": "2021-04-01", + "apiVersion": "2021-09-01", "name": "[parameters('storageName')]", "location": "[parameters('location')]", "sku": { diff --git a/get-started-with-templates/add-name/azuredeploy.json b/get-started-with-templates/add-name/azuredeploy.json index 28d433a..b1f84b7 100644 --- a/get-started-with-templates/add-name/azuredeploy.json +++ b/get-started-with-templates/add-name/azuredeploy.json @@ -11,7 +11,7 @@ "resources": [ { "type": "Microsoft.Storage/storageAccounts", - "apiVersion": "2021-04-01", + "apiVersion": "2021-09-01", "name": "[parameters('storageName')]", "location": "eastus", "sku": { diff --git a/get-started-with-templates/add-outputs/azuredeploy.json b/get-started-with-templates/add-outputs/azuredeploy.json index 61f8f97..0151ddc 100644 --- a/get-started-with-templates/add-outputs/azuredeploy.json +++ b/get-started-with-templates/add-outputs/azuredeploy.json @@ -32,7 +32,7 @@ "resources": [ { "type": "Microsoft.Storage/storageAccounts", - "apiVersion": "2021-04-01", + "apiVersion": "2021-09-01", "name": "[variables('uniqueStorageName')]", "location": "[parameters('location')]", "sku": { diff --git a/get-started-with-templates/add-sku/azuredeploy.json b/get-started-with-templates/add-sku/azuredeploy.json index 915e524..8fd39f0 100644 --- a/get-started-with-templates/add-sku/azuredeploy.json +++ b/get-started-with-templates/add-sku/azuredeploy.json @@ -25,7 +25,7 @@ "resources": [ { "type": "Microsoft.Storage/storageAccounts", - "apiVersion": "2021-04-01", + "apiVersion": "2021-09-01", "name": "[parameters('storageName')]", "location": "eastus", "sku": { diff --git a/get-started-with-templates/add-storage/azuredeploy.json b/get-started-with-templates/add-storage/azuredeploy.json index 46687eb..d17462d 100644 --- a/get-started-with-templates/add-storage/azuredeploy.json +++ b/get-started-with-templates/add-storage/azuredeploy.json @@ -4,7 +4,7 @@ "resources": [ { "type": "Microsoft.Storage/storageAccounts", - "apiVersion": "2021-04-01", + "apiVersion": "2021-09-01", "name": "{provide-unique-name}", "location": "eastus", "sku": { diff --git a/get-started-with-templates/add-tags/azuredeploy.json b/get-started-with-templates/add-tags/azuredeploy.json index 720b522..0a35989 100644 --- a/get-started-with-templates/add-tags/azuredeploy.json +++ b/get-started-with-templates/add-tags/azuredeploy.json @@ -58,7 +58,7 @@ "resources": [ { "type": "Microsoft.Storage/storageAccounts", - "apiVersion": "2021-04-01", + "apiVersion": "2021-09-01", "name": "[variables('uniqueStorageName')]", "location": "[parameters('location')]", "tags": "[parameters('resourceTags')]", @@ -72,7 +72,7 @@ }, { "type": "Microsoft.Web/serverfarms", - "apiVersion": "2020-12-01", + "apiVersion": "2021-03-01", "name": "[parameters('appServicePlanName')]", "location": "[parameters('location')]", "tags": "[parameters('resourceTags')]", @@ -93,7 +93,7 @@ }, { "type": "Microsoft.Web/sites", - "apiVersion": "2020-12-01", + "apiVersion": "2021-03-01", "name": "[variables('webAppPortalName')]", "location": "[parameters('location')]", "dependsOn": [ diff --git a/get-started-with-templates/add-variable/azuredeploy.json b/get-started-with-templates/add-variable/azuredeploy.json index 5e1bd12..56a782d 100644 --- a/get-started-with-templates/add-variable/azuredeploy.json +++ b/get-started-with-templates/add-variable/azuredeploy.json @@ -32,7 +32,7 @@ "resources": [ { "type": "Microsoft.Storage/storageAccounts", - "apiVersion": "2021-04-01", + "apiVersion": "2021-09-01", "name": "[variables('uniqueStorageName')]", "location": "[parameters('location')]", "sku": { diff --git a/get-started-with-templates/export-template/azuredeploy.json b/get-started-with-templates/export-template/azuredeploy.json index 320d4a4..dfadc03 100644 --- a/get-started-with-templates/export-template/azuredeploy.json +++ b/get-started-with-templates/export-template/azuredeploy.json @@ -36,7 +36,7 @@ "resources": [ { "type": "Microsoft.Storage/storageAccounts", - "apiVersion": "2021-04-01", + "apiVersion": "2021-09-01", "name": "[variables('uniqueStorageName')]", "location": "[parameters('location')]", "sku": { @@ -49,7 +49,7 @@ }, { "type": "Microsoft.Web/serverfarms", - "apiVersion": "2020-12-01", + "apiVersion": "2021-03-01", "name": "[parameters('appServicePlanName')]", "location": "[parameters('location')]", "sku": { diff --git a/get-started-with-templates/quickstart-template/azuredeploy.json b/get-started-with-templates/quickstart-template/azuredeploy.json index b6ee989..8c1e30c 100644 --- a/get-started-with-templates/quickstart-template/azuredeploy.json +++ b/get-started-with-templates/quickstart-template/azuredeploy.json @@ -51,7 +51,7 @@ "resources": [ { "type": "Microsoft.Storage/storageAccounts", - "apiVersion": "2021-04-01", + "apiVersion": "2021-09-01", "name": "[variables('uniqueStorageName')]", "location": "[parameters('location')]", "sku": { @@ -64,7 +64,7 @@ }, { "type": "Microsoft.Web/serverfarms", - "apiVersion": "2020-12-01", + "apiVersion": "2021-03-01", "name": "[parameters('appServicePlanName')]", "location": "[parameters('location')]", "sku": { @@ -84,7 +84,7 @@ }, { "type": "Microsoft.Web/sites", - "apiVersion": "2020-12-01", + "apiVersion": "2021-03-01", "name": "[variables('webAppPortalName')]", "location": "[parameters('location')]", "dependsOn": [