Skip to content

Commit

Permalink
TEOC - Release 3.0 (#170)
Browse files Browse the repository at this point in the history
* Release 3.0
  • Loading branch information
v-saikirang committed Feb 23, 2024
1 parent 0b4a071 commit 3914753
Show file tree
Hide file tree
Showing 95 changed files with 70,555 additions and 56,965 deletions.
2 changes: 1 addition & 1 deletion Deployment/appPackage/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.11/MicrosoftTeams.schema.json",
"manifestVersion": "1.11",
"version": "2.0",
"version": "3.0.0",
"id": "bef61400-db9b-41d4-a617-403deb7bbe77",
"packageName": "com.microsoft.teams.extension",
"developer": {
Expand Down
31 changes: 24 additions & 7 deletions Deployment/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@
"Shared"
],
"isSharedPlan": "[contains(variables('sharedSkus'), parameters('hostingPlanSku'))]",
"skuFamily": "[if(equals(parameters('hostingPlanSku'), 'Shared'), 'D', take(parameters('hostingPlanSku'), 1))]"
"skuFamily": "[if(equals(parameters('hostingPlanSku'), 'Shared'), 'D', take(parameters('hostingPlanSku'), 1))]",
"workspaceAnalyticsName": "[concat(parameters('baseResourceName'), '-log-analytics')]",
"workspaceAnalyticsSku": "pergb2018"
},
"resources": [
{
Expand Down Expand Up @@ -313,8 +315,8 @@
"SharePointSiteName": {
"value": "[parameters('SharePointSiteName')]"
},
"GraphBaseUrl":{
"value": "[parameters('GraphBaseUrl')]"
"GraphBaseUrl": {
"value": "[parameters('GraphBaseUrl')]"
}
},
"template": {
Expand Down Expand Up @@ -370,7 +372,7 @@
"description": "Provide name for the sharepoint site that will be provisioned."
}
},
"GraphBaseUrl":{
"GraphBaseUrl": {
"type": "string",
"minLength": 1,
"metadata": {
Expand Down Expand Up @@ -508,16 +510,31 @@
]
},
{
"apiVersion": "2015-05-01",
"type": "Microsoft.OperationalInsights/workspaces",
"apiVersion": "2017-03-15-preview",
"name": "[variables('workspaceAnalyticsName')]",
"location": "[parameters('location')]",
"properties": {
"sku": {
"name": "[variables('workspaceAnalyticsSku')]"
}
}
},
{
"apiVersion": "2020-02-02-preview",
"name": "[variables('appInsightsName')]",
"type": "Microsoft.Insights/components",
"location": "[parameters('location')]",
"dependsOn": [
"[resourceId('Microsoft.OperationalInsights/workspaces', variables('workspaceAnalyticsName'))]"
],
"tags": {
"[concat('hidden-link:', resourceGroup().id, '/providers/Microsoft.Web/sites/', variables('siteName'))]": "Resource"
},
"properties": {
"Application_Type": "web",
"Request_Source": "rest"
"Request_Source": "rest",
"WorkspaceResourceId": "[resourceId('Microsoft.OperationalInsights/workspaces', variables('workspaceAnalyticsName'))]"
}
}
],
Expand All @@ -540,4 +557,4 @@
}
}
}
}
}
Loading

0 comments on commit 3914753

Please sign in to comment.