forked from microsoft/BotBuilder-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add samples missing ARM Templates with both new and preexisting resou…
…rce group (microsoft#3470)
- Loading branch information
1 parent
c4fb58a
commit 1a63c52
Showing
8 changed files
with
1,482 additions
and
0 deletions.
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
samples/csharp_webapi/13.core-bot/DeploymentTemplates/new-rg-parameters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"groupLocation": { | ||
"value": "" | ||
}, | ||
"groupName": { | ||
"value": "" | ||
}, | ||
"appId": { | ||
"value": "" | ||
}, | ||
"appSecret": { | ||
"value": "" | ||
}, | ||
"botId": { | ||
"value": "" | ||
}, | ||
"botSku": { | ||
"value": "" | ||
}, | ||
"newAppServicePlanName": { | ||
"value": "" | ||
}, | ||
"newAppServicePlanSku": { | ||
"value": { | ||
"name": "S1", | ||
"tier": "Standard", | ||
"size": "S1", | ||
"family": "S", | ||
"capacity": 1 | ||
} | ||
}, | ||
"newAppServicePlanLocation": { | ||
"value": "" | ||
}, | ||
"newWebAppName": { | ||
"value": "" | ||
} | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
samples/csharp_webapi/13.core-bot/DeploymentTemplates/preexisting-rg-parameters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"appId": { | ||
"value": "" | ||
}, | ||
"appSecret": { | ||
"value": "" | ||
}, | ||
"botId": { | ||
"value": "" | ||
}, | ||
"botSku": { | ||
"value": "" | ||
}, | ||
"newAppServicePlanName": { | ||
"value": "" | ||
}, | ||
"newAppServicePlanSku": { | ||
"value": { | ||
"name": "S1", | ||
"tier": "Standard", | ||
"size": "S1", | ||
"family": "S", | ||
"capacity": 1 | ||
} | ||
}, | ||
"appServicePlanLocation": { | ||
"value": "" | ||
}, | ||
"existingAppServicePlan": { | ||
"value": "" | ||
}, | ||
"newWebAppName": { | ||
"value": "" | ||
} | ||
} | ||
} |
185 changes: 185 additions & 0 deletions
185
samples/csharp_webapi/13.core-bot/DeploymentTemplates/template-with-new-rg.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,185 @@ | ||
{ | ||
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"groupLocation": { | ||
"type": "string", | ||
"metadata": { | ||
"description": "Specifies the location of the Resource Group." | ||
} | ||
}, | ||
"groupName": { | ||
"type": "string", | ||
"metadata": { | ||
"description": "Specifies the name of the Resource Group." | ||
} | ||
}, | ||
"appId": { | ||
"type": "string", | ||
"metadata": { | ||
"description": "Active Directory App ID, set as MicrosoftAppId in the Web App's Application Settings." | ||
} | ||
}, | ||
"appSecret": { | ||
"type": "string", | ||
"metadata": { | ||
"description": "Active Directory App Password, set as MicrosoftAppPassword in the Web App's Application Settings." | ||
} | ||
}, | ||
"botId": { | ||
"type": "string", | ||
"metadata": { | ||
"description": "The globally unique and immutable bot ID. Also used to configure the displayName of the bot, which is mutable." | ||
} | ||
}, | ||
"botSku": { | ||
"type": "string", | ||
"metadata": { | ||
"description": "The pricing tier of the Bot Service Registration. Acceptable values are F0 and S1." | ||
} | ||
}, | ||
"newAppServicePlanName": { | ||
"type": "string", | ||
"metadata": { | ||
"description": "The name of the App Service Plan." | ||
} | ||
}, | ||
"newAppServicePlanSku": { | ||
"type": "object", | ||
"defaultValue": { | ||
"name": "S1", | ||
"tier": "Standard", | ||
"size": "S1", | ||
"family": "S", | ||
"capacity": 1 | ||
}, | ||
"metadata": { | ||
"description": "The SKU of the App Service Plan. Defaults to Standard values." | ||
} | ||
}, | ||
"newAppServicePlanLocation": { | ||
"type": "string", | ||
"metadata": { | ||
"description": "The location of the App Service Plan. Defaults to \"westus\"." | ||
} | ||
}, | ||
"newWebAppName": { | ||
"type": "string", | ||
"defaultValue": "", | ||
"metadata": { | ||
"description": "The globally unique name of the Web App. Defaults to the value passed in for \"botId\"." | ||
} | ||
} | ||
}, | ||
"variables": { | ||
"appServicePlanName": "[parameters('newAppServicePlanName')]", | ||
"resourcesLocation": "[parameters('newAppServicePlanLocation')]", | ||
"webAppName": "[if(empty(parameters('newWebAppName')), parameters('botId'), parameters('newWebAppName'))]", | ||
"siteHost": "[concat(variables('webAppName'), '.azurewebsites.net')]", | ||
"botEndpoint": "[concat('https://', variables('siteHost'), '/api/messages')]", | ||
"resourceGroupId": "[concat(subscription().id, '/resourceGroups/', parameters('groupName'))]" | ||
}, | ||
"resources": [ | ||
{ | ||
"name": "[parameters('groupName')]", | ||
"type": "Microsoft.Resources/resourceGroups", | ||
"apiVersion": "2018-05-01", | ||
"location": "[parameters('groupLocation')]", | ||
"properties": {} | ||
}, | ||
{ | ||
"type": "Microsoft.Resources/deployments", | ||
"apiVersion": "2018-05-01", | ||
"name": "storageDeployment", | ||
"resourceGroup": "[parameters('groupName')]", | ||
"dependsOn": [ | ||
"[resourceId('Microsoft.Resources/resourceGroups/', parameters('groupName'))]" | ||
], | ||
"properties": { | ||
"mode": "Incremental", | ||
"template": { | ||
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": {}, | ||
"variables": {}, | ||
"resources": [ | ||
{ | ||
"comments": "Create a new App Service Plan", | ||
"type": "Microsoft.Web/serverfarms", | ||
"name": "[variables('appServicePlanName')]", | ||
"apiVersion": "2018-02-01", | ||
"location": "[variables('resourcesLocation')]", | ||
"sku": "[parameters('newAppServicePlanSku')]", | ||
"properties": { | ||
"name": "[variables('appServicePlanName')]" | ||
} | ||
}, | ||
{ | ||
"comments": "Create a Web App using the new App Service Plan", | ||
"type": "Microsoft.Web/sites", | ||
"apiVersion": "2015-08-01", | ||
"location": "[variables('resourcesLocation')]", | ||
"kind": "app", | ||
"dependsOn": [ | ||
"[concat(variables('resourceGroupId'), '/providers/Microsoft.Web/serverfarms/', variables('appServicePlanName'))]" | ||
], | ||
"name": "[variables('webAppName')]", | ||
"properties": { | ||
"name": "[variables('webAppName')]", | ||
"serverFarmId": "[variables('appServicePlanName')]", | ||
"siteConfig": { | ||
"appSettings": [ | ||
{ | ||
"name": "WEBSITE_NODE_DEFAULT_VERSION", | ||
"value": "10.14.1" | ||
}, | ||
{ | ||
"name": "MicrosoftAppId", | ||
"value": "[parameters('appId')]" | ||
}, | ||
{ | ||
"name": "MicrosoftAppPassword", | ||
"value": "[parameters('appSecret')]" | ||
} | ||
], | ||
"cors": { | ||
"allowedOrigins": [ | ||
"https://botservice.hosting.portal.azure.net", | ||
"https://hosting.onecloud.azure-test.net/" | ||
] | ||
}, | ||
"webSocketsEnabled": true | ||
} | ||
} | ||
}, | ||
{ | ||
"apiVersion": "2021-03-01", | ||
"type": "Microsoft.BotService/botServices", | ||
"name": "[parameters('botId')]", | ||
"location": "global", | ||
"kind": "azurebot", | ||
"sku": { | ||
"name": "[parameters('botSku')]" | ||
}, | ||
"properties": { | ||
"name": "[parameters('botId')]", | ||
"displayName": "[parameters('botId')]", | ||
"iconUrl": "https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png", | ||
"endpoint": "[variables('botEndpoint')]", | ||
"msaAppId": "[parameters('appId')]", | ||
"luisAppIds": [], | ||
"schemaTransformationVersion": "1.3", | ||
"isCmekEnabled": false, | ||
"isIsolated": false | ||
}, | ||
"dependsOn": [ | ||
"[concat(variables('resourceGroupId'), '/providers/Microsoft.Web/sites/', variables('webAppName'))]" | ||
] | ||
} | ||
], | ||
"outputs": {} | ||
} | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.