Skip to content

Commit

Permalink
Update storage-account.bicep
Browse files Browse the repository at this point in the history
  • Loading branch information
rrichley authored Dec 30, 2024
1 parent dfed39f commit 2bf214f
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions bicep/storage-account.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ param containerName string
@description('The IP address allowed to access the storage account.')
param allowedIP string

@description('The name of the Log Analytics workspace.')
param logAnalyticsWorkspaceName string

resource storageAccount 'Microsoft.Storage/storageAccounts@2022-09-01' = {
name: storageAccountName
location: location
Expand Down Expand Up @@ -48,14 +45,3 @@ resource container 'Microsoft.Storage/storageAccounts/blobServices/containers@20
publicAccess: 'Blob'
}
}

resource logAnalyticsWorkspace 'Microsoft.OperationalInsights/workspaces@2022-10-01' = {
name: logAnalyticsWorkspaceName
location: location
properties: {
sku: {
name: 'PerGB2018'
}
retentionInDays: 30
}
}

0 comments on commit 2bf214f

Please sign in to comment.