Skip to content

Commit

Permalink
Add missing json file
Browse files Browse the repository at this point in the history
  • Loading branch information
MCKLMT committed Dec 13, 2020
1 parent c787cc5 commit 6879b65
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions docs/examples/101/azure-spring-cloud/activedeployment.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
]
}

0 comments on commit 6879b65

Please sign in to comment.