Last active
September 9, 2020 06:42
-
-
Save Cyb3rWard0g/af7f5d99190321721799e2d0f16f72eb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
resource workspace 'Microsoft.OperationalInsights/workspaces@2020-03-01-preview' = { | |
name: 'UniqueWorkspaceName' // must be globally unique | |
location: 'eastus' | |
properties: { | |
sku: { | |
name: 'PerGB2018' | |
} | |
retentionInDays: 30 | |
features: { | |
immediatePurgeDataOn30Days: true | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment