Skip to content

Commit 218e21a

Browse files
Merge pull request #212991 from SwathiDhanwada-MSFT/patch-48
(AzureCXP) fixes MicrosoftDocs/azure-docs#98783
2 parents e082fa2 + 1c285db commit 218e21a

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

articles/azure-monitor/essentials/resource-manager-diagnostic-settings.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1675,7 +1675,8 @@ resource diagnosticSetting 'Microsoft.Insights/diagnosticSettings@2021-05-01-pre
16751675
}
16761676
16771677
resource blob 'Microsoft.Storage/storageAccounts/blobServices@2021-09-01' existing = {
1678-
name:storageAccountName
1678+
name:'default'
1679+
parent:storageAccount
16791680
}
16801681
16811682
resource blobSetting 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview' = if (hasblob) {
@@ -1708,7 +1709,8 @@ resource blobSetting 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview'
17081709
}
17091710
17101711
resource table 'Microsoft.Storage/storageAccounts/tableServices@2021-09-01' existing = {
1711-
name:storageAccountName
1712+
name:'default'
1713+
parent:storageAccount
17121714
}
17131715
17141716
resource tableSetting 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview' = if (hastable) {
@@ -1741,7 +1743,8 @@ resource tableSetting 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview'
17411743
}
17421744
17431745
resource file 'Microsoft.Storage/storageAccounts/fileServices@2021-09-01' existing = {
1744-
name:storageAccountName
1746+
name:'default'
1747+
parent:storageAccount
17451748
}
17461749
17471750
resource fileSetting 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview' = if (hasfile) {
@@ -1774,7 +1777,8 @@ resource fileSetting 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview'
17741777
}
17751778
17761779
resource queue 'Microsoft.Storage/storageAccounts/queueServices@2021-09-01' existing = {
1777-
name:storageAccountName
1780+
name:'default'
1781+
parent:storageAccount
17781782
}
17791783
17801784

0 commit comments

Comments
 (0)