File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
articles/azure-monitor/essentials Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -1675,7 +1675,8 @@ resource diagnosticSetting 'Microsoft.Insights/diagnosticSettings@2021-05-01-pre
1675
1675
}
1676
1676
1677
1677
resource blob 'Microsoft.Storage/storageAccounts/blobServices@2021-09-01' existing = {
1678
- name:storageAccountName
1678
+ name:'default'
1679
+ parent:storageAccount
1679
1680
}
1680
1681
1681
1682
resource blobSetting 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview' = if (hasblob) {
@@ -1708,7 +1709,8 @@ resource blobSetting 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview'
1708
1709
}
1709
1710
1710
1711
resource table 'Microsoft.Storage/storageAccounts/tableServices@2021-09-01' existing = {
1711
- name:storageAccountName
1712
+ name:'default'
1713
+ parent:storageAccount
1712
1714
}
1713
1715
1714
1716
resource tableSetting 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview' = if (hastable) {
@@ -1741,7 +1743,8 @@ resource tableSetting 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview'
1741
1743
}
1742
1744
1743
1745
resource file 'Microsoft.Storage/storageAccounts/fileServices@2021-09-01' existing = {
1744
- name:storageAccountName
1746
+ name:'default'
1747
+ parent:storageAccount
1745
1748
}
1746
1749
1747
1750
resource fileSetting 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview' = if (hasfile) {
@@ -1774,7 +1777,8 @@ resource fileSetting 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview'
1774
1777
}
1775
1778
1776
1779
resource queue 'Microsoft.Storage/storageAccounts/queueServices@2021-09-01' existing = {
1777
- name:storageAccountName
1780
+ name:'default'
1781
+ parent:storageAccount
1778
1782
}
1779
1783
1780
1784
You can’t perform that action at this time.
0 commit comments