Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
660277b
Update createSharedResources.yml
ryanisgrig Jun 7, 2021
377e0c7
Move /tests/functional/build/templates to /build/templates
rlgmsftx Jun 7, 2021
37d981b
Set up CI with Azure Pipelines
ryanisgrig Jun 7, 2021
2e3c7b8
Remove DotnetComposer, JS, Python bots
ryanisgrig Jun 8, 2021
857584c
Remove all DotNet bots except for Simple Host Bot
ryanisgrig Jun 8, 2021
c31b9b5
Remove additional other language references and rename variables to b…
rlgmsftx Jun 8, 2021
b873d71
Replace bffn with bfcfn
rlgmsftx Jun 9, 2021
bfbe09e
Update directory of SimpleHostBot
rlgmsftx Jun 9, 2021
e04bfb1
Rename bot vars to empty bot
rlgmsftx Jun 9, 2021
cb0786a
rename additional refs
rlgmsftx Jun 9, 2021
6f12d25
remove duplicate app in variables
rlgmsftx Jun 10, 2021
d9ec217
add functions to dotnet
rlgmsftx Jun 10, 2021
4fd4983
add JS parameters and template for empty bot in webapp/functions
rlgmsftx Jun 10, 2021
8640874
add prepare_jsgroup step
rlgmsftx Jun 10, 2021
90d21e0
fix location to js simple host bot
rlgmsftx Jun 10, 2021
1ba018d
Remove python refs
rlgmsftx Jun 10, 2021
b5d7a43
Add InternalAppSerivcePlanJSName var
ryanisgrig Jun 10, 2021
5eadf9e
Remove additional Python steps in shared resource creation, bot resou…
rlgmsftx Jun 11, 2021
1b90ae8
Change default value of appinsights resource
rlgmsftx Jun 11, 2021
aa167fa
Add blog storage deployment to shared resource creation
rlgmsftx Jun 11, 2021
28a0a01
add parameter to cli call to deploy storage
rlgmsftx Jun 11, 2021
55f84fe
fix casing
rlgmsftx Jun 11, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"parameters": {
"appInsightsName": {
"type": "string",
"defaultValue": "bffnappinsights",
"defaultValue": "bfcfnappinsights",
"metadata": {
"description": "The name of the Application Insights instance."
}
Expand Down
70 changes: 70 additions & 0 deletions build/templates/template-storage-resources.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"storageAccountsName": {
"defaultValue": "bfcfnstorage",
"type": "String"
},
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]",
"metadata": {
"description": "Specifies the Azure location where the storage account should be created."
}
}
},
"variables": {},
"resources": [
{
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2021-04-01",
"name": "[parameters('storageAccountsName')]",
"location": "[parameters('location')]",
"sku": {
"name": "Standard_LRS",
"tier": "Standard"
},
"kind": "StorageV2",
"properties": {
"networkAcls": {
"bypass": "AzureServices",
"virtualNetworkRules": [],
"ipRules": [],
"defaultAction": "Allow"
},
"supportsHttpsTrafficOnly": true,
"encryption": {
"services": {
"blob": {
"keyType": "Account",
"enabled": true
}
},
"keySource": "Microsoft.Storage"
},
"accessTier": "Hot"
}
},
{
"type": "Microsoft.Storage/storageAccounts/blobServices",
"apiVersion": "2021-04-01",
"name": "[concat(parameters('storageAccountsName'), '/default')]",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts', parameters('storageAccountsName'))]"
],
"sku": {
"name": "Standard_LRS",
"tier": "Standard"
},
"properties": {
"cors": {
"corsRules": []
},
"deleteRetentionPolicy": {
"enabled": false
}
}
}
]
}
3 changes: 0 additions & 3 deletions tests/functional/Bots/Python/.gitignore

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading