Skip to content

Commit

Permalink
Merge branch 'main' into DEV-396
Browse files Browse the repository at this point in the history
  • Loading branch information
daroczig authored Dec 9, 2024
2 parents b5664b5 + f148743 commit f13934a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/sc_crawler/vendors/azure.py
Original file line number Diff line number Diff line change
Expand Up @@ -916,6 +916,10 @@ def inventory_servers(vendor):
if name.endswith("Promo"):
vendor.log(f"Excluding nonsense pricing: {name}")
servers.pop(i)
# servers probably not intended for our eyes
if "Internal" in name:
vendor.log(f"Excluding internal server: {name}")
servers.pop(i)
# servers randomly switching between active/inactive status
# TODO review from time to time
if name in ["Standard_M896ixds_32_v3", "Standard_M64-32bds_1_v3"]:
Expand Down

0 comments on commit f13934a

Please sign in to comment.