feat: added aws-cloudwatch.py

This commit is contained in:
KenF
2026-01-29 13:23:19 +08:00
parent 855de24897
commit 67774d64db
16 changed files with 65 additions and 15 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ def main() -> None:
with concurrent.futures.ThreadPoolExecutor(max_workers=8) as executor:
results = executor.map(getResources, projectlib.aws.getRegions())
for region_rows in results:
# append to worksheet only if resoruces are found in the region
# append to worksheet only if resources are found in the region
if region_rows:
for row in region_rows:
ws.append(row)