move bicep to corresponding example
This commit is contained in:
44
GrafanaBlazor/.bicep/modules/monitoring2.bicep
Normal file
44
GrafanaBlazor/.bicep/modules/monitoring2.bicep
Normal file
@@ -0,0 +1,44 @@
|
||||
@description('The location for all resources')
|
||||
param location string
|
||||
|
||||
@description('The name of the Application Insights instance')
|
||||
param appInsightsName string
|
||||
|
||||
@description('The name of the Log Analytics Workspace')
|
||||
param logAnalyticsWorkspaceName string
|
||||
|
||||
// Create Log Analytics Workspace
|
||||
resource logAnalyticsWorkspace 'Microsoft.OperationalInsights/workspaces@2022-10-01' = {
|
||||
name: logAnalyticsWorkspaceName
|
||||
location: location
|
||||
properties: {
|
||||
sku: {
|
||||
name: 'PerGB2018'
|
||||
}
|
||||
retentionInDays: 30
|
||||
features: {
|
||||
enableLogAccessUsingOnlyResourcePermissions: true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Create Application Insights
|
||||
resource applicationInsights 'Microsoft.Insights/components@2020-02-02' = {
|
||||
name: appInsightsName
|
||||
location: location
|
||||
kind: 'web'
|
||||
properties: {
|
||||
Application_Type: 'web'
|
||||
WorkspaceResourceId: logAnalyticsWorkspace.id
|
||||
IngestionMode: 'LogAnalytics'
|
||||
publicNetworkAccessForIngestion: 'Enabled'
|
||||
publicNetworkAccessForQuery: 'Enabled'
|
||||
}
|
||||
}
|
||||
|
||||
// Outputs
|
||||
output appInsightsName string = applicationInsights.name
|
||||
output instrumentationKey string = applicationInsights.properties.InstrumentationKey
|
||||
output connectionString string = applicationInsights.properties.ConnectionString
|
||||
output workspaceId string = logAnalyticsWorkspace.id
|
||||
output workspaceName string = logAnalyticsWorkspace.name
|
||||
Reference in New Issue
Block a user