From 6879b652757bf07e176f9f661bd2c41a30946822 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Mottet?= Date: Sun, 13 Dec 2020 18:36:52 +0100 Subject: [PATCH] Add missing json file --- .../azure-spring-cloud/activedeployment.json | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 docs/examples/101/azure-spring-cloud/activedeployment.json diff --git a/docs/examples/101/azure-spring-cloud/activedeployment.json b/docs/examples/101/azure-spring-cloud/activedeployment.json new file mode 100644 index 00000000000..2c4d2d5f2a6 --- /dev/null +++ b/docs/examples/101/azure-spring-cloud/activedeployment.json @@ -0,0 +1,45 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "app1Name": { + "type": "string" + }, + "app2Name": { + "type": "string" + }, + "app3Name": { + "type": "string" + } + }, + "functions": [], + "resources": [ + { + "type": "Microsoft.AppPlatform/Spring/apps", + "apiVersion": "2020-07-01", + "name": "[parameters('app1Name')]", + "properties": { + "public": true, + "activeDeploymentName": "default" + } + }, + { + "type": "Microsoft.AppPlatform/Spring/apps", + "apiVersion": "2020-07-01", + "name": "[parameters('app2Name')]", + "properties": { + "public": false, + "activeDeploymentName": "default" + } + }, + { + "type": "Microsoft.AppPlatform/Spring/apps", + "apiVersion": "2020-07-01", + "name": "[parameters('app3Name')]", + "properties": { + "public": false, + "activeDeploymentName": "default" + } + } + ] +} \ No newline at end of file