Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Cross referenced and added ARG queries #385

Merged
merged 36 commits into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
e5cb011
Updates set 2
humblejay Mar 15, 2024
a51773d
Merge remote-tracking branch 'origin/main' into wip-kkp2
humblejay Mar 15, 2024
56b1b5f
Merge pull request #1 from humblejay/wip-kkp2
humblejay Mar 15, 2024
b89ee18
Corrected address link space
humblejay Mar 15, 2024
c1bfa93
Code link and minor corrections
humblejay Mar 15, 2024
3a0ef2f
Merge branch 'Azure:main' into main
humblejay Mar 18, 2024
b8a56ee
Updated recommendations and corrections
humblejay Mar 18, 2024
11d56c5
corrections and link corrections
humblejay Mar 18, 2024
ffae3a5
Apply suggestions from code review
ejhenry Mar 18, 2024
debba1a
Merge branch 'main' into main
Dost2010 Mar 18, 2024
43a1b3e
Merge branch 'main' into main
ejhenry Mar 18, 2024
0bb86ed
Merge branch 'Azure:main' into main
humblejay Mar 18, 2024
aa5972c
Merge branch 'Azure:main' into main
humblejay Mar 22, 2024
35d61a8
Cross referenced and added queries
humblejay Mar 22, 2024
3ce4666
update SAP-9
humblejay Mar 22, 2024
366cc0c
Merge branch 'main' into main
humblejay Mar 22, 2024
ca3d900
Renumbering and set 3 changes
humblejay Mar 26, 2024
223d2df
Updated title description
humblejay Mar 26, 2024
1969d90
Merge branch 'Azure:main' into main
humblejay Mar 28, 2024
5b8f16d
Corrected SAP-5 query
humblejay Mar 28, 2024
defef40
SAP-5 text change
humblejay Mar 28, 2024
fc8d562
Merge branch 'Azure:main' into main
humblejay Mar 29, 2024
9378294
update set 4
humblejay Mar 30, 2024
a305815
Merge branch 'main' into main
humblejay Apr 3, 2024
32ee5de
Merge branch 'Azure:main' into main
humblejay Apr 3, 2024
6287ca8
Merge remote-tracking branch 'upstream/main'
humblejay Apr 3, 2024
774fa64
Merge branch 'main' of https://github.com/humblejay/Azure-Proactive-R…
humblejay Apr 3, 2024
0bf348b
Reverted renumbering
humblejay Apr 3, 2024
5111683
link corrected
humblejay Apr 3, 2024
b22d3bc
Merge branch 'main' into main
humblejay Apr 4, 2024
e3f1141
Code file renumbering
humblejay Apr 4, 2024
91af241
Merge branch 'main' into main
humblejay Apr 4, 2024
4ec52bc
Merge branch 'main' into main
humblejay Apr 4, 2024
f0a4fb3
Merge branch 'main' into main
humblejay Apr 4, 2024
0051ced
Merge branch 'Azure:main' into main
humblejay Apr 5, 2024
9c3de2a
Updated SAP-1 and 9
humblejay Apr 5, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
405 changes: 148 additions & 257 deletions docs/content/services/specialized-workloads/sap-on-azure/_index.md

Large diffs are not rendered by default.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

humblejay marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Azure Resource Graph Query
// Find availabilitysets where Fault or Update Domains < 3
Resources
| where type == "microsoft.compute/availabilitysets"
| extend faultDomainsCount = properties.platformFaultDomainCount, updateDomainsCount = properties.platformUpdateDomainCount
| where updateDomainsCount < 3 or faultDomainsCount < 3
| project ['id'], AvailabilitySetName = name, updateDomainsCount, faultDomainsCount, recommendationid='SAP-5'
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
// under-development

Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
// under-development

Loading