runbooks 0.7.5__py3-none-any.whl → 0.7.7__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. runbooks/__init__.py +1 -1
  2. runbooks/base.py +5 -1
  3. runbooks/cfat/__init__.py +2 -2
  4. runbooks/cfat/assessment/compliance.py +847 -0
  5. runbooks/finops/__init__.py +1 -1
  6. runbooks/finops/cli.py +63 -1
  7. runbooks/finops/dashboard_runner.py +632 -161
  8. runbooks/finops/helpers.py +492 -61
  9. runbooks/finops/optimizer.py +822 -0
  10. runbooks/inventory/collectors/aws_comprehensive.py +435 -0
  11. runbooks/inventory/discovery.md +1 -1
  12. runbooks/main.py +158 -12
  13. runbooks/operate/__init__.py +2 -2
  14. runbooks/remediation/__init__.py +2 -2
  15. runbooks/remediation/acm_remediation.py +1 -1
  16. runbooks/remediation/base.py +1 -1
  17. runbooks/remediation/cloudtrail_remediation.py +1 -1
  18. runbooks/remediation/cognito_remediation.py +1 -1
  19. runbooks/remediation/dynamodb_remediation.py +1 -1
  20. runbooks/remediation/ec2_remediation.py +1 -1
  21. runbooks/remediation/ec2_unattached_ebs_volumes.py +1 -1
  22. runbooks/remediation/kms_enable_key_rotation.py +1 -1
  23. runbooks/remediation/kms_remediation.py +1 -1
  24. runbooks/remediation/lambda_remediation.py +1 -1
  25. runbooks/remediation/multi_account.py +1 -1
  26. runbooks/remediation/rds_remediation.py +1 -1
  27. runbooks/remediation/requirements.txt +2 -2
  28. runbooks/remediation/s3_block_public_access.py +1 -1
  29. runbooks/remediation/s3_enable_access_logging.py +1 -1
  30. runbooks/remediation/s3_encryption.py +1 -1
  31. runbooks/remediation/s3_remediation.py +1 -1
  32. runbooks/security/__init__.py +1 -1
  33. {runbooks-0.7.5.dist-info → runbooks-0.7.7.dist-info}/METADATA +4 -2
  34. {runbooks-0.7.5.dist-info → runbooks-0.7.7.dist-info}/RECORD +50 -67
  35. {runbooks-0.7.5.dist-info → runbooks-0.7.7.dist-info}/top_level.txt +0 -1
  36. jupyter-agent/.env +0 -2
  37. jupyter-agent/.env.template +0 -2
  38. jupyter-agent/.gitattributes +0 -35
  39. jupyter-agent/.gradio/certificate.pem +0 -31
  40. jupyter-agent/README.md +0 -16
  41. jupyter-agent/__main__.log +0 -8
  42. jupyter-agent/app.py +0 -256
  43. jupyter-agent/cloudops-agent.png +0 -0
  44. jupyter-agent/ds-system-prompt.txt +0 -154
  45. jupyter-agent/jupyter-agent.png +0 -0
  46. jupyter-agent/llama3_template.jinja +0 -123
  47. jupyter-agent/requirements.txt +0 -9
  48. jupyter-agent/tmp/4ojbs8a02ir/jupyter-agent.ipynb +0 -68
  49. jupyter-agent/tmp/cm5iasgpm3p/jupyter-agent.ipynb +0 -91
  50. jupyter-agent/tmp/crqbsseag5/jupyter-agent.ipynb +0 -91
  51. jupyter-agent/tmp/hohanq1u097/jupyter-agent.ipynb +0 -57
  52. jupyter-agent/tmp/jns1sam29wm/jupyter-agent.ipynb +0 -53
  53. jupyter-agent/tmp/jupyter-agent.ipynb +0 -27
  54. jupyter-agent/utils.py +0 -409
  55. runbooks/inventory/aws_organization.png +0 -0
  56. /runbooks/inventory/{tests → Tests}/common_test_data.py +0 -0
  57. /runbooks/inventory/{tests → Tests}/common_test_functions.py +0 -0
  58. /runbooks/inventory/{tests → Tests}/script_test_data.py +0 -0
  59. /runbooks/inventory/{tests → Tests}/setup.py +0 -0
  60. /runbooks/inventory/{tests → Tests}/src.py +0 -0
  61. /runbooks/inventory/{tests/test_inventory_modules.py → Tests/test_Inventory_Modules.py} +0 -0
  62. /runbooks/inventory/{tests → Tests}/test_cfn_describe_stacks.py +0 -0
  63. /runbooks/inventory/{tests → Tests}/test_ec2_describe_instances.py +0 -0
  64. /runbooks/inventory/{tests → Tests}/test_lambda_list_functions.py +0 -0
  65. /runbooks/inventory/{tests → Tests}/test_moto_integration_example.py +0 -0
  66. /runbooks/inventory/{tests → Tests}/test_org_list_accounts.py +0 -0
  67. /runbooks/inventory/{Inventory_Modules.py → inventory_modules.py} +0 -0
  68. {runbooks-0.7.5.dist-info → runbooks-0.7.7.dist-info}/WHEEL +0 -0
  69. {runbooks-0.7.5.dist-info → runbooks-0.7.7.dist-info}/entry_points.txt +0 -0
  70. {runbooks-0.7.5.dist-info → runbooks-0.7.7.dist-info}/licenses/LICENSE +0 -0
@@ -68,7 +68,7 @@ results = acm_remediation.cleanup_expired_certificates(
68
68
  )
69
69
  ```
70
70
 
71
- Version: 0.7.5 - Enterprise Production Ready with CRITICAL SAFETY FEATURES
71
+ Version: 0.7.6 - Enterprise Production Ready with CRITICAL SAFETY FEATURES
72
72
  """
73
73
 
74
74
  import json
@@ -60,7 +60,7 @@ Each remediation operation includes compliance framework mapping:
60
60
  - **AWS Well-Architected Framework**: Pillar and principle mapping
61
61
  - **CheckPoint CloudGuard/Dome9**: Rule-by-rule remediation mapping
62
62
 
63
- Version: 0.7.5 - Enterprise Production Ready
63
+ Version: 0.7.6 - Enterprise Production Ready
64
64
  Compatibility: AWS SDK v3, Python 3.8+, Multi-deployment ready
65
65
  """
66
66
 
@@ -71,7 +71,7 @@ results = cloudtrail_remediation.analyze_s3_policy_changes(
71
71
  )
72
72
  ```
73
73
 
74
- Version: 0.7.5 - Enterprise Production Ready with CRITICAL SAFETY FEATURES
74
+ Version: 0.7.6 - Enterprise Production Ready with CRITICAL SAFETY FEATURES
75
75
  """
76
76
 
77
77
  import json
@@ -73,7 +73,7 @@ results = cognito_remediation.reset_user_password(
73
73
  )
74
74
  ```
75
75
 
76
- Version: 0.7.5 - Enterprise Production Ready with CRITICAL SAFETY FEATURES
76
+ Version: 0.7.6 - Enterprise Production Ready with CRITICAL SAFETY FEATURES
77
77
  """
78
78
 
79
79
  import getpass
@@ -54,7 +54,7 @@ results = dynamodb_remediation.comprehensive_dynamodb_security(
54
54
  )
55
55
  ```
56
56
 
57
- Version: 0.7.5 - Enterprise Production Ready
57
+ Version: 0.7.6 - Enterprise Production Ready
58
58
  """
59
59
 
60
60
  import json
@@ -55,7 +55,7 @@ results = ec2_remediation.cleanup_unused_resources(
55
55
  )
56
56
  ```
57
57
 
58
- Version: 0.7.5 - Enterprise Production Ready
58
+ Version: 0.7.6 - Enterprise Production Ready
59
59
  """
60
60
 
61
61
  import datetime
@@ -31,7 +31,7 @@ python ec2_unattached_ebs_volumes.py
31
31
  ⚠️ **DATA LOSS**: Deleted volumes cannot be recovered
32
32
  ⚠️ **COST IMPACT**: Verify volumes are truly unused before deletion
33
33
 
34
- Version: 0.7.5 - Enterprise Production Ready
34
+ Version: 0.7.6 - Enterprise Production Ready
35
35
  Compliance: CIS AWS Foundations, Cost Optimization Best Practices
36
36
  """
37
37
 
@@ -43,7 +43,7 @@ python kms_enable_key_rotation.py --rotation-days 365
43
43
  ⚠️ **COST IMPACT**: Key rotation may impact application performance
44
44
  ⚠️ **TESTING**: Verify applications handle key rotation gracefully
45
45
 
46
- Version: 0.7.5 - Enterprise Production Ready
46
+ Version: 0.7.6 - Enterprise Production Ready
47
47
  Compliance: CIS AWS Foundations 3.8, NIST SP 800-57
48
48
  """
49
49
 
@@ -53,7 +53,7 @@ results = kms_remediation.enable_key_rotation_bulk(
53
53
  )
54
54
  ```
55
55
 
56
- Version: 0.7.5 - Enterprise Production Ready
56
+ Version: 0.7.6 - Enterprise Production Ready
57
57
  """
58
58
 
59
59
  import json
@@ -59,7 +59,7 @@ results = lambda_remediation.comprehensive_lambda_security(
59
59
  )
60
60
  ```
61
61
 
62
- Version: 0.7.5 - Enterprise Production Ready
62
+ Version: 0.7.6 - Enterprise Production Ready
63
63
  """
64
64
 
65
65
  import copy
@@ -55,7 +55,7 @@ results = remediator.bulk_s3_security(
55
55
  )
56
56
  ```
57
57
 
58
- Version: 0.7.5 - Enterprise Production Ready
58
+ Version: 0.7.6 - Enterprise Production Ready
59
59
  """
60
60
 
61
61
  import concurrent.futures
@@ -59,7 +59,7 @@ results = rds_remediation.comprehensive_rds_security(
59
59
  )
60
60
  ```
61
61
 
62
- Version: 0.7.5 - Enterprise Production Ready
62
+ Version: 0.7.6 - Enterprise Production Ready
63
63
  """
64
64
 
65
65
  import json
@@ -24,7 +24,7 @@ contourpy==1.2.0
24
24
  cryptography==42.0.4
25
25
  debugpy==1.8.1
26
26
  decorator==5.1.1
27
- defusedxml==0.7.5
27
+ defusedxml==0.7.6
28
28
  executing==2.0.1
29
29
  fastjsonschema==2.19.1
30
30
  fqdn==1.5.1
@@ -74,7 +74,7 @@ platformdirs==4.2.0
74
74
  prompt-toolkit==3.0.43
75
75
  protobuf==4.25.3
76
76
  psutil==5.9.8
77
- ptyprocess==0.7.5
77
+ ptyprocess==0.7.6
78
78
  publicsuffix2==2.20191221
79
79
  pure-eval==0.2.2
80
80
  pyasn1==0.5.1
@@ -47,7 +47,7 @@ python s3_block_public_access.py --block
47
47
  ⚠️ **WEBSITE HOSTING**: Will disable S3 static website hosting features
48
48
  ⚠️ **CDN INTEGRATION**: May affect CloudFront and other CDN configurations
49
49
 
50
- Version: 0.7.5 - Enterprise Production Ready
50
+ Version: 0.7.6 - Enterprise Production Ready
51
51
  Compliance: CIS AWS Foundations 2.1.5, NIST SP 800-53
52
52
  """
53
53
 
@@ -53,7 +53,7 @@ python s3_enable_access_logging.py --log-bucket audit-logs --log-prefix access-l
53
53
  ⚠️ **COST IMPACT**: Access logging incurs additional storage costs
54
54
  ⚠️ **RETENTION**: Consider lifecycle policies for log management
55
55
 
56
- Version: 0.7.5 - Enterprise Production Ready
56
+ Version: 0.7.6 - Enterprise Production Ready
57
57
  Compliance: CIS AWS Foundations 3.1, SOC2 A1.1, PCI DSS 10.2
58
58
  """
59
59
 
@@ -53,7 +53,7 @@ python s3_encryption.py --encryption-type sse-kms --create-kms-key
53
53
  ⚠️ **KEY MANAGEMENT**: Customer-managed keys require proper lifecycle management
54
54
  ⚠️ **COMPLIANCE**: Some regulations require specific encryption types
55
55
 
56
- Version: 0.7.5 - Enterprise Production Ready
56
+ Version: 0.7.6 - Enterprise Production Ready
57
57
  Compliance: CIS AWS Foundations 2.1.1, SOC2 A1.2, PCI DSS 3.4
58
58
  """
59
59
 
@@ -46,7 +46,7 @@ Migrated and enhanced from these original remediation scripts:
46
46
  - **D9.AWS.S3.02**: S3 bucket public access prevention
47
47
  - **D9.AWS.S3.03**: S3 bucket encryption enforcement
48
48
 
49
- Version: 0.7.5 - Enterprise Production Ready
49
+ Version: 0.7.6 - Enterprise Production Ready
50
50
  """
51
51
 
52
52
  import json
@@ -52,7 +52,7 @@ from .run_script import parse_arguments
52
52
  from .security_baseline_tester import SecurityBaselineTester
53
53
 
54
54
  # Version info
55
- __version__ = "0.7.5"
55
+ __version__ = "0.7.6"
56
56
  __author__ = "CloudOps Runbooks Team"
57
57
 
58
58
  # Public API
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: runbooks
3
- Version: 0.7.5
3
+ Version: 0.7.7
4
4
  Summary: CloudOps Automation Toolkit with Enhanced Cloud Foundations Assessment for DevOps and SRE teams.
5
5
  Author-email: Maintainers <nnthanh101@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -34,8 +34,9 @@ Requires-Dist: markdown>=3.7.0
34
34
  Requires-Dist: prettytable>=3.16.0
35
35
  Requires-Dist: simplejson>=3.20.1
36
36
  Requires-Dist: python-dateutil>=2.9.0
37
- Requires-Dist: loguru>=0.7.5
37
+ Requires-Dist: loguru>=0.7.3
38
38
  Requires-Dist: tqdm>=4.67.1
39
+ Requires-Dist: graphviz>=0.20.1
39
40
  Requires-Dist: rich>=14.0.0
40
41
  Requires-Dist: reportlab>=3.6.1
41
42
  Requires-Dist: requests>=2.32.0
@@ -43,6 +44,7 @@ Requires-Dist: packaging>=21.0
43
44
  Requires-Dist: pyyaml>=6.0.2
44
45
  Requires-Dist: jmespath>=1.0.1
45
46
  Requires-Dist: urllib3<1.27,>=1.26.18
47
+ Requires-Dist: mcp>=1.12.3
46
48
  Dynamic: license-file
47
49
 
48
50
  # 🚀 CloudOps Runbooks - Enterprise AWS Automation Toolkit
@@ -1,30 +1,11 @@
1
1
  conftest.py,sha256=HTnQMw9wxefkvX5q4yG8EUH2qVLJBnC9QCt3UCltw7I,586
2
- jupyter-agent/.env,sha256=ZyIap7kKkg5_JwRCJqtoDpixqPkHU3Y2cJxYadKlO-c,103
3
- jupyter-agent/.env.template,sha256=xU2MQ80zvx2mYr_n3alar7oop9mdhonU6xNVEQGlzwY,71
4
- jupyter-agent/.gitattributes,sha256=Ea1--iSXXuSww8OjjtGHN_Blil91oKlnh7V2p4oCM2E,1519
5
- jupyter-agent/README.md,sha256=WJ7zUhaFaDl26cH6mcWimqkpN04TJhIH4TKiyd6MDI0,370
6
- jupyter-agent/__main__.log,sha256=TDRITkba40x0Lby7EkWncbIs4i8g1sztDD_heSj62aI,710
7
- jupyter-agent/app.py,sha256=8UR8AzqrJYHWr2bpj-mOSuPHLYzd8AWVJbxnM43h5Q8,8727
8
- jupyter-agent/cloudops-agent.png,sha256=A4e0WfpihWVHFtz0Yj09Y9uci-IWF4gdpnZifACzdT8,408376
9
- jupyter-agent/ds-system-prompt.txt,sha256=YZydzHqxaHgXVPORiltlWDg3rK-c-a2Dlx0BAj2dfsg,5034
10
- jupyter-agent/jupyter-agent.png,sha256=KJjLvoWAnuhSaEsWBW8PHwouzk2sVC84PTtSuMDEg3o,438042
11
- jupyter-agent/llama3_template.jinja,sha256=gywY7mJ14M-VeCSs0LLFO-Nt3S7XEJaQQ-KuzorzuEs,5198
12
- jupyter-agent/requirements.txt,sha256=OrwjCjWcVo8lp82yY6Sor2r46mxhqMfkFiH6PBphtA0,173
13
- jupyter-agent/utils.py,sha256=MGsDPI6a2OYc39wwSeg8oAM69U_k8mMSzegwT1cyp_0,13067
14
- jupyter-agent/.gradio/certificate.pem,sha256=IrVXonBVszYGtlWfN3A5KNPkrXnxELQH0EmG4YQ1Q9E,1939
15
- jupyter-agent/tmp/jupyter-agent.ipynb,sha256=jrqDAZIRUDqcCLyrV_Jb435WIipb7OB5FjxULP0mynI,612
16
- jupyter-agent/tmp/4ojbs8a02ir/jupyter-agent.ipynb,sha256=hDZB4yLCsQcTMXMNZhNCVAmuXugTXJlXlDu-5BnNZDM,70481
17
- jupyter-agent/tmp/cm5iasgpm3p/jupyter-agent.ipynb,sha256=KQ8slJljjsUjsE-COrh-jZFoaEg5jwP6ukk6VX6-C0I,89492
18
- jupyter-agent/tmp/crqbsseag5/jupyter-agent.ipynb,sha256=XUM3BR1BJ8qp37rKDft-f9rXCGiG6V7_WOoF6TbBUNw,110860
19
- jupyter-agent/tmp/hohanq1u097/jupyter-agent.ipynb,sha256=tPE_Uwx8ZQscqVaM0gfnSgsxNc9RkrcisJKICW1ah38,9686
20
- jupyter-agent/tmp/jns1sam29wm/jupyter-agent.ipynb,sha256=7tibJV-03sU3Xn4oRjt6E2QOQIt57E0xxY0hcoNctqg,75815
21
- runbooks/__init__.py,sha256=tjccXsn7a6V-Y3q6jaXqiQ2q8-sMdbgB1Zt4ILd6cFI,4600
2
+ runbooks/__init__.py,sha256=v10iKXkuZf8wdK5VgNSnVyR4uwNjKHInhbNRHK0YvS0,4600
22
3
  runbooks/__main__.py,sha256=0hTPUA9KkLm_H_COqaIpNzXvC4Lv5b_XYYBV6fUFDrM,241
23
- runbooks/base.py,sha256=SE31vwKB_CW2C0w2Onb7QfjU2xJXcUbiYTSHBDWT7KE,11593
4
+ runbooks/base.py,sha256=wVxf-j6g2RgnZB8byX_PXUMF75UWaVJPcdeWiPGffK0,11750
24
5
  runbooks/config.py,sha256=63Bct1jASQG3mjPTNnzfJwTMgXzG8aQqVsaku6ugZR0,7839
25
- runbooks/main.py,sha256=YOG-bPNiDYtL4XCZozGEkjyVP61GPwCZ1IbMq8mLlY4,148252
6
+ runbooks/main.py,sha256=Wh1U4Ab7BlkL_ZO5YW8IpeUMHlZXbNRf6LaZXEx05Qw,153655
26
7
  runbooks/cfat/README.md,sha256=rP_FNuKB8xKfj89dPKf43_s_-ScqrmlQ_ZPXj6h0pfo,11089
27
- runbooks/cfat/__init__.py,sha256=Ivsd0lEZvnt0ctaRYXQSli3ZveAqrCLZNqRDOoQbr7Y,1922
8
+ runbooks/cfat/__init__.py,sha256=aAiIi6bCx0G3QbZfc5jxLDNpCixnl78eyIi9awCCKPI,1922
28
9
  runbooks/cfat/app.ts,sha256=EwpA9bQzkoH1qqTJ_Tco47PwVG2zTv4g8ZmEGYpWYlU,27785
29
10
  runbooks/cfat/cli.py,sha256=37KUY-ObzMcB7xYs2R8Q40djLFnBgLhBnUXujvn2M7s,3483
30
11
  runbooks/cfat/models.py,sha256=gh-7XmqEH9PvqrmxtmIhWoKGpGcFTWr1pah_9iNrLxM,37960
@@ -40,6 +21,7 @@ runbooks/cfat/assessment/asana-import.csv,sha256=oPGO9FJaUwqfYVFPkj04i-O_CKcW-0l
40
21
  runbooks/cfat/assessment/cfat-checks.csv,sha256=1C1zV058esQbSSzycATb22lAdRSwr4hzo4J09VzkzYk,6446
41
22
  runbooks/cfat/assessment/cfat.txt,sha256=tS23zcYBwScNTEorQ__9KD4fnVaK0b_B2YONYwpGbaM,31890
42
23
  runbooks/cfat/assessment/collectors.py,sha256=8nGKFtn4_niw48chZDj2aj4g21FqdWe2pgsyRmYlXd4,5419
24
+ runbooks/cfat/assessment/compliance.py,sha256=KTJf5NBn5DlKqecpk4nXOrAqh9tkJ7t_Eq3Uy823WhE,35038
43
25
  runbooks/cfat/assessment/jira-import.csv,sha256=N3ydOtRPLB7NQ263FgFsGLnyJQ_9oSpnMRrfouwipIY,4887
44
26
  runbooks/cfat/assessment/runner.py,sha256=nQik7cDLh_AEPgFJoePgUBzp4yQmVAfufxD_XqYhtQ8,14838
45
27
  runbooks/cfat/assessment/validators.py,sha256=NhD_xuq9mdqR8q9KbChTLE05N8MssKpUI9bfvx9JET8,9628
@@ -87,30 +69,29 @@ runbooks/cfat/tests/test_integration.py,sha256=L4kkWW41Jsuzn4Tv-z_a5cY6xOo_aHzCA
87
69
  runbooks/cfat/tests/test_models.py,sha256=16Dcdty82_yotJ2ngBbgydCy9BDamxtMZrs4a1t-mVM,18267
88
70
  runbooks/cfat/tests/test_reporting.py,sha256=ysPZSAFgCQ7oIkOdBxUrlCiyZBhWDpcnp0I2cv3k9_Q,12631
89
71
  runbooks/finops/README.md,sha256=Fm9dpPujttPLJ2ES2d_zDUZ-YrVqVkeaAM1gjlcQxCw,12983
90
- runbooks/finops/__init__.py,sha256=5yilBFwen9iRqrV0xVZCKr9WO_LjFt1lBSIJPdPvaho,2265
72
+ runbooks/finops/__init__.py,sha256=X5nVDeHNHIV2_9NrGQHulepYKh_V5r5jBj46R_Gc8dg,2265
91
73
  runbooks/finops/aws_client.py,sha256=o9ShoAH_V1QKBlq2Li4VTrjnXNj3ezgGvenJAiPUbjY,9379
92
- runbooks/finops/cli.py,sha256=M1sH4RjDShMqLJDpYxnGh7CJ5fKHCApsGJ_VpWQAcMo,5227
74
+ runbooks/finops/cli.py,sha256=-y2nqsMgNLrGGGyloF4WwZc2msb-mi_K0d_uKzQ3BIU,7508
93
75
  runbooks/finops/cost_processor.py,sha256=BNyG9HpkAI27UFcoRurP3Tz1Q4BV9u_fVk6wVzf0ysU,15042
94
- runbooks/finops/dashboard_runner.py,sha256=JDNx-MqmDuGEZXPhRTDaxlAcjzmvMpjXhOEwIkj8n2A,18281
95
- runbooks/finops/helpers.py,sha256=TlFXLZ7oJViYlKWk7MpbWDVlG71jM8C61dM8r5yjNMw,12805
76
+ runbooks/finops/dashboard_runner.py,sha256=afhOYtYVuKSN-c4wwIrwU-_KIsWd8nKVEXN1aCe2jg4,39423
77
+ runbooks/finops/helpers.py,sha256=5ZRg8D_wrDfxKFNYixqdsoAyl69Uoq6nl-b-dskeQRg,30606
96
78
  runbooks/finops/main.py,sha256=W0Lnr3GJN7Tp4QL0x09GROOc7fnttpdRmd3N3T5eULo,288
79
+ runbooks/finops/optimizer.py,sha256=jta7v9M2iP38_H4F8JpXFytTebJPavkNtu-GLoEOmrc,37694
97
80
  runbooks/finops/profile_processor.py,sha256=r39GYdO-v-iio13D3_yFv2Itjq-hbaiL56VXeyfU6yo,6189
98
81
  runbooks/finops/types.py,sha256=Tk7sMVh-9LXxrU6IKDa6RMlxK7H3HkWUKvs1yctD_yQ,1592
99
82
  runbooks/finops/visualisations.py,sha256=BI6cBsKSNUcjqnEukMzHxZzqyv12w3TRj2zvN53-Rbk,2737
100
83
  runbooks/inventory/.gitignore,sha256=qqVQodfb6iNuPRM7fsl7lvqxrJaatKNQqQmX7s1_PPg,5563
101
84
  runbooks/inventory/ArgumentsClass.py,sha256=BwquO-iYZNS_fVxgASrksanzoAN_NPCzRpTAyohRLX0,8621
102
- runbooks/inventory/Inventory_Modules.py,sha256=4bBfezmCtsT-r0YU7Rhfv94rxhfPfStrUkPF4q009uI,285209
103
85
  runbooks/inventory/README.md,sha256=gCubMJ8mp09hwPccr2GDbUgiFr8CoCsakp1kHHAApTU,43221
104
86
  runbooks/inventory/__init__.py,sha256=J-MoV_B5ScwlqfLEZv7ZRF7iTai5Hsya0c4tiNrrVE4,2039
105
87
  runbooks/inventory/account_class.py,sha256=wvYNeiXHq6tk8Pqa95Aa91zAtuBXcnE51NonzDueuaM,26361
106
88
  runbooks/inventory/all_my_instances_wrapper.py,sha256=B_nHnXOFle6_LU1YnZd38uMZNV6pIONh4EvCyO-lwzw,5723
107
89
  runbooks/inventory/aws_decorators.py,sha256=_3QWqih_J6tgs7_dnJwp7Al7OI0qImZpFMyO4E-bMZE,8605
108
- runbooks/inventory/aws_organization.png,sha256=-LUsSMk9L-sPF6K3Z__FOnHIP7u4nQW9Q1rcTw1EzX8,1140649
109
90
  runbooks/inventory/check_cloudtrail_compliance.py,sha256=rQGKuJefqBa1LCfTsVgKJ_GiP3HKqgpYX77iclOV2ko,33652
110
91
  runbooks/inventory/check_controltower_readiness.py,sha256=2elNsYY_PYhcQeyjcnB4NTbZVUrHnXU70OjrzwOpwVI,56076
111
92
  runbooks/inventory/check_landingzone_readiness.py,sha256=K7UayaO7QRIhNa0ewZk-Ks4iRAjUPVgMFfjkbgHVOYw,35934
112
93
  runbooks/inventory/cloudtrail.md,sha256=wMgU8ki4fWjoiO9SdDGxRADtdVUVEmD6KD4tjyFtLQk,21929
113
- runbooks/inventory/discovery.md,sha256=cKfHx4EFMLnH3R0VIaQ3_ygx9rvAA96tC2mWqQNxowA,6079
94
+ runbooks/inventory/discovery.md,sha256=LdYLf6dm4YWf1TIhfHrRmuG4avmvWGE3pKamP1s5ZoI,6081
114
95
  runbooks/inventory/draw_org_structure.py,sha256=gMrXIs0FQkUCPgTRbTRwgTqLWBNzbcHZ6FFQ5L9hy0k,29769
115
96
  runbooks/inventory/ec2_vpc_utils.py,sha256=bQWvEhe6hqxfj-hgpwu_ZZ9YJbfKiEbgJcAFWhwih-M,16627
116
97
  runbooks/inventory/find_cfn_drift_detection.py,sha256=4kHHu4I6jBHqM9L6lFabMDVTiafaDmhA1UnXsxzgwiw,13169
@@ -120,6 +101,7 @@ runbooks/inventory/find_ec2_security_groups.py,sha256=f-I5Xp4e3A36za4sKEwYm_Wkle
120
101
  runbooks/inventory/find_landingzone_versions.py,sha256=4oYfgmH4fJ40F3YuQKAhCcBuLHRgie4fTLCftPaQXhE,10277
121
102
  runbooks/inventory/find_vpc_flow_logs.py,sha256=BRwjqb4BD0K97uv8cabpn5nN1iL0DmVkClmX01hAfoA,65119
122
103
  runbooks/inventory/inventory.sh,sha256=WXmBEpi9OpTu24US9LhW5PC-z6jSwTN0jdwlt-p3aok,23939
104
+ runbooks/inventory/inventory_modules.py,sha256=4bBfezmCtsT-r0YU7Rhfv94rxhfPfStrUkPF4q009uI,285209
123
105
  runbooks/inventory/list_cfn_stacks.py,sha256=Drgi_7RUaIZA-Z4L-eMEvmmT6nqlj-oGvwBOGOmRKlw,22399
124
106
  runbooks/inventory/list_cfn_stackset_operation_results.py,sha256=1kjuv5uL-ioIWa7Dkx45XAEw3aFRClFTG8Qx1r44pSQ,12847
125
107
  runbooks/inventory/list_cfn_stackset_operations.py,sha256=lYsrZ44xiHkmjKdDQLaVzm7zcabGG91N-7EWtzmWcVU,38317
@@ -151,7 +133,19 @@ runbooks/inventory/requirements.txt,sha256=W8mvfeKf86CfTIeRJyqa978xJ77Cjfh4mlQ3G
151
133
  runbooks/inventory/run_on_multi_accounts.py,sha256=ecyzqffcHAoWovjoUlT643duC3sCdpCAz6z-S8vEIwU,8586
152
134
  runbooks/inventory/verify_ec2_security_groups.py,sha256=iFX5AlRJWaU0DP-gwdOrsXc3zNwsRZbjZeyjcn0YMUA,68221
153
135
  runbooks/inventory/LandingZone/delete_lz.py,sha256=hMwv-T8RTjQQdx9oLelABibFHGD9TFR0xkI_Hgfabw0,48920
136
+ runbooks/inventory/Tests/common_test_data.py,sha256=M4qRXxYu-WphsJnnumG0P7ENK3OX1Gh2AoCxFN71U4s,180677
137
+ runbooks/inventory/Tests/common_test_functions.py,sha256=WKeLHuAclroH1Jhc2RyDU9L7d9L4nH6fIFS2NjNtokE,8710
138
+ runbooks/inventory/Tests/script_test_data.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
+ runbooks/inventory/Tests/setup.py,sha256=hig677ZZWySuWa5nlL1McAjLR3JMaFP1w6ysS9fISeg,698
140
+ runbooks/inventory/Tests/src.py,sha256=5JhsRWGkrukMa8vGXbei64z_0j9K7c7uNmHk-TK8ZXE,641
141
+ runbooks/inventory/Tests/test_Inventory_Modules.py,sha256=OcGqt_Za3Se2hRbDidbcd-WZQfR3IOhsLBnAOsNhz14,2164
142
+ runbooks/inventory/Tests/test_cfn_describe_stacks.py,sha256=0Lt9pU8rlhnDo1-AnQLlSYSIzr3jl-NB6NUjj8QnRmI,7793
143
+ runbooks/inventory/Tests/test_ec2_describe_instances.py,sha256=TPwK-sW3H3da30s1e-toJRpKJDhAZqE7l9sbh99buKc,8314
144
+ runbooks/inventory/Tests/test_lambda_list_functions.py,sha256=4sABlsEVTxGzGtFVT5k4K5bYzK9YsX828_2_RkeHQas,3163
145
+ runbooks/inventory/Tests/test_moto_integration_example.py,sha256=mBS6Tnr5Wd2EfzhhnbCqZxMEsPdjNPtu8PDrzsMT3JA,9357
146
+ runbooks/inventory/Tests/test_org_list_accounts.py,sha256=otlaEcVED1bJEkwxWu0zrmMDM9JX5fvw72V0kD17j38,2233
154
147
  runbooks/inventory/collectors/__init__.py,sha256=gmRyAeXqZt-0KgBD4eh77zQs-dcxpKVci0470yZInMg,1101
148
+ runbooks/inventory/collectors/aws_comprehensive.py,sha256=GgZx7DX6OeM06kXpinKoFAmtFtDIN3w_AOunZBdEnHU,17128
155
149
  runbooks/inventory/collectors/aws_compute.py,sha256=MzxNqE1YWRdTVtLyJNNXgWabyvLU1kKoiKpe9Cn0RdU,21018
156
150
  runbooks/inventory/collectors/aws_management.py,sha256=kRB3mxCGXq3TfXlINzdhxIb0sB6CzGoO698JeuyKLWc,32932
157
151
  runbooks/inventory/collectors/aws_networking.py,sha256=8PbLVWrg_wls5a7NJm59e09WSglPwVGpL5wL48TeDDs,11425
@@ -163,22 +157,11 @@ runbooks/inventory/models/__init__.py,sha256=LjW8NAHcDeBFvjXjAZwoo73xwQHid8f1-Fi
163
157
  runbooks/inventory/models/account.py,sha256=G-7NtoRi8VRX6B0VoMF4qirwTNU_3ukMRGThylQKEbA,7109
164
158
  runbooks/inventory/models/inventory.py,sha256=zNaQLvpshWeljbnbaTAeQ_6rJZ4HDPpwPovY7LfwrFY,11434
165
159
  runbooks/inventory/models/resource.py,sha256=mSTpOv0EE5t-jZtLofsovXb1bpG9EE2HTU_0KjeE8Jo,8539
166
- runbooks/inventory/tests/common_test_data.py,sha256=M4qRXxYu-WphsJnnumG0P7ENK3OX1Gh2AoCxFN71U4s,180677
167
- runbooks/inventory/tests/common_test_functions.py,sha256=WKeLHuAclroH1Jhc2RyDU9L7d9L4nH6fIFS2NjNtokE,8710
168
- runbooks/inventory/tests/script_test_data.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
- runbooks/inventory/tests/setup.py,sha256=hig677ZZWySuWa5nlL1McAjLR3JMaFP1w6ysS9fISeg,698
170
- runbooks/inventory/tests/src.py,sha256=5JhsRWGkrukMa8vGXbei64z_0j9K7c7uNmHk-TK8ZXE,641
171
- runbooks/inventory/tests/test_cfn_describe_stacks.py,sha256=0Lt9pU8rlhnDo1-AnQLlSYSIzr3jl-NB6NUjj8QnRmI,7793
172
- runbooks/inventory/tests/test_ec2_describe_instances.py,sha256=TPwK-sW3H3da30s1e-toJRpKJDhAZqE7l9sbh99buKc,8314
173
- runbooks/inventory/tests/test_inventory_modules.py,sha256=OcGqt_Za3Se2hRbDidbcd-WZQfR3IOhsLBnAOsNhz14,2164
174
- runbooks/inventory/tests/test_lambda_list_functions.py,sha256=4sABlsEVTxGzGtFVT5k4K5bYzK9YsX828_2_RkeHQas,3163
175
- runbooks/inventory/tests/test_moto_integration_example.py,sha256=mBS6Tnr5Wd2EfzhhnbCqZxMEsPdjNPtu8PDrzsMT3JA,9357
176
- runbooks/inventory/tests/test_org_list_accounts.py,sha256=otlaEcVED1bJEkwxWu0zrmMDM9JX5fvw72V0kD17j38,2233
177
160
  runbooks/inventory/utils/__init__.py,sha256=c6bQD-Foq3U8tw-JK8PYR-o8K5MwJ3mJWkKi2UbDLtg,830
178
161
  runbooks/inventory/utils/aws_helpers.py,sha256=rg1L69An3PLVWrTTiHGjL29Z8N51rOVYLostN8CCcwk,17124
179
162
  runbooks/inventory/utils/threading_utils.py,sha256=ckizvb0QSWx1xkDanvaoUOCHaXOm2E6Abg1VQFxfJrU,16067
180
163
  runbooks/inventory/utils/validation.py,sha256=HoQmEr9CSEfS1yF0uyCAW5TKlG-u9-t-YRouThSBxeA,19803
181
- runbooks/operate/__init__.py,sha256=ENzoZHKqyMf67UAoRUW2furRH-AmJBfHmmAsDZG0vXU,7258
164
+ runbooks/operate/__init__.py,sha256=fqFgURzM0H13TaIfycJlMQHIk78mVfHFCzvJkhcTTp0,7258
182
165
  runbooks/operate/base.py,sha256=-pgIOqCzCH-0nNiZWVvp4efy26g7K4l2KgDMcpJRhng,10154
183
166
  runbooks/operate/cloudformation_operations.py,sha256=U6zDeDnnGUiOu1GXCYtC_5g2LJMqzic6RX61VsYejfw,24481
184
167
  runbooks/operate/cloudwatch_operations.py,sha256=CHqJ-vf9dh_AhnEZ6lrr9BYM4QKiMGYnSa7Qc4lwXPo,19071
@@ -191,50 +174,50 @@ runbooks/operate/tags.json,sha256=-Y77SDvrvn0sCdsxgdRwu0sl0mih2Ib_N6nGi-UtE5U,51
191
174
  runbooks/remediation/CLAUDE.md,sha256=E7u7DX4nso7yN4suoV7HS1T52058zdUNfiExZkEVd1o,3999
192
175
  runbooks/remediation/DOME9.md,sha256=g2qMJmkoMdfUZWoGufo-tNXPLFV9utDlsWatAKsflnY,43743
193
176
  runbooks/remediation/README.md,sha256=qoO6D8qaF5o5K-yBoGfslu8ChaijWnWJaqh_AveqLV8,386
194
- runbooks/remediation/__init__.py,sha256=SXEBVUfyhLG-0Tv_xzxK7m0WZuZcuZqWr_XderTAPPc,3422
177
+ runbooks/remediation/__init__.py,sha256=xtmVEgarrkYU66tp_jT0rM-pMxpOQq69nOfFI-qsAx0,3422
195
178
  runbooks/remediation/acm_cert_expired_unused.py,sha256=_SfttBHKMBfXNtI1006Ci1dCYDgqhCEGGI5Ua3RvQGk,3541
196
- runbooks/remediation/acm_remediation.py,sha256=ypazDHcwn9UeC3S3Lx9e7ML1E--ogyoJUhvrmCxZSdo,38824
179
+ runbooks/remediation/acm_remediation.py,sha256=0A3-aOBo1A5CkusTs77136m93TzPWRkFjN6-xXYUNrI,38824
197
180
  runbooks/remediation/api_gateway_list.py,sha256=7RyTSmmhQaezNt9Ksh_BktSAPaQ7DGKQeBviqbkEdS0,7180
198
- runbooks/remediation/base.py,sha256=X9HoL9hluT13yRctOq4WQTPCX1Y1gxQImBpMjZgpPcM,24480
199
- runbooks/remediation/cloudtrail_remediation.py,sha256=ZL58kNB_bQJRooZDH8HYF7FgTiLP0lSIfyYLqhMWTcc,38390
181
+ runbooks/remediation/base.py,sha256=7GjQr80Ce7FqftFCuXGiib_YdYQJaKUJQR4z_jgCdaE,24480
182
+ runbooks/remediation/cloudtrail_remediation.py,sha256=eumUem5lCuY7Hcm0w7rJhnAX7xrWBRoNShxmGJih074,38390
200
183
  runbooks/remediation/cloudtrail_s3_modifications.py,sha256=DaN6DmvTgZk4D2QlxXEJ4yUc1m1oi7U1myNX7krA00Q,13147
201
184
  runbooks/remediation/cognito_active_users.py,sha256=ZKtludgCL0ufWiWpiodfD8DNRKSiIMWcQeBBBANH4o8,2973
202
- runbooks/remediation/cognito_remediation.py,sha256=7H2J_q_xdKY44wXfQG3gNm60rcAhOED2M7SA73r2T3k,36966
185
+ runbooks/remediation/cognito_remediation.py,sha256=2uWiNo0LSo3lCA4UOmeuvCSsAPVqVuoLkiru67LrW5k,36966
203
186
  runbooks/remediation/cognito_user_password_reset.py,sha256=1pBLS9Ccdu8ohflGcbsBI-HLKLbNYsU39sijielAcQk,6902
204
187
  runbooks/remediation/commons.py,sha256=f3QcUHyZ0fRHWYvh3NNVJoittoS8eEeVZ7cUiGWFseQ,15348
205
188
  runbooks/remediation/dynamodb_optimize.py,sha256=CKezH6osJlW44kpu47STN0K6Q9EbL69FYr2SmwjcHmw,5987
206
- runbooks/remediation/dynamodb_remediation.py,sha256=IZNjvXaXrHaZmwqnS_Fqc2Oe7ALHPt7CzWQl6p6vqSU,30872
189
+ runbooks/remediation/dynamodb_remediation.py,sha256=o9zwjjbgkMkXxtUe3Qq4NAOBYaNXd3KbaioRrZQdLx8,30872
207
190
  runbooks/remediation/dynamodb_server_side_encryption.py,sha256=wnXwRcXzR3dFpcsA-5CjyCvPBixOiflN2H8Rfdp8Wao,3802
208
191
  runbooks/remediation/ec2_public_ips.py,sha256=BcTi7QGihyy5brPa2zJSiqk0fcFYok5YO96B6GrEf68,5331
209
- runbooks/remediation/ec2_remediation.py,sha256=8LT5mMwG3wz2XcOtKk0wyd3RAJi4lxwJkJh33uB4Xoo,37035
192
+ runbooks/remediation/ec2_remediation.py,sha256=mzQVZJeSzYsfH1co-V96oW-fkqPAzS3-Odq-qi0JNzg,37035
210
193
  runbooks/remediation/ec2_subnet_disable_auto_ip_assignment.py,sha256=UeXqp2qTCj2oXwGKXH_6H1PcBQANjMAXXIKADH1kOd4,2723
211
- runbooks/remediation/ec2_unattached_ebs_volumes.py,sha256=ijQh4yEqpGsBMNA4UkRUVvXVQIdYY6sxRBLtGcNxeM8,18987
194
+ runbooks/remediation/ec2_unattached_ebs_volumes.py,sha256=x8vgSFOzQo5mfN-tOKLaBt1IzHqWmuhSv5gEFR2_fYk,18987
212
195
  runbooks/remediation/ec2_unused_security_groups.py,sha256=YKG4-UBipJEdoMvy1Pt5-j3CdK-4LlmdXSJ3wyxZdNA,8512
213
- runbooks/remediation/kms_enable_key_rotation.py,sha256=oOgiRXHE2j59bGCNoWq-JUs2-okTLqB48G2Vk86VbzA,27587
214
- runbooks/remediation/kms_remediation.py,sha256=Gfb3Yi98gerN_0UaEcw6b6MFkGSvbvWrZq5r-SSYfFE,29381
196
+ runbooks/remediation/kms_enable_key_rotation.py,sha256=Ulpltvh-n_PHLxKE2rI5UsEHr-L3edjkTdv9-mIDurw,27587
197
+ runbooks/remediation/kms_remediation.py,sha256=YxscKTGWEh7ViPYmDFzeORjS6Qds04iZKC6dHZfAvnY,29381
215
198
  runbooks/remediation/lambda_list.py,sha256=B5dQzg_nWXbuC-h0TuCE1hH26Rsm5jeNkmRZrbYGekM,10925
216
- runbooks/remediation/lambda_remediation.py,sha256=SF_vPM9qgUwg514g1eFqnU90RcJKHvkl4LQYNJ8JZh4,42553
217
- runbooks/remediation/multi_account.py,sha256=fjlQsRCKUw3QRRsoUGBy0zCtVyzMJyCUfHdqY-oNRHo,22062
199
+ runbooks/remediation/lambda_remediation.py,sha256=MKOqWDpRQ41xSa9J4GdmABvK7_LiNAs-hp5zPkFdxZ4,42553
200
+ runbooks/remediation/multi_account.py,sha256=DBC2abhQAjIx7nbPqTZjIQGcUL0farQgZt6cIV7sYp4,22062
218
201
  runbooks/remediation/rds_instance_list.py,sha256=Nl1Pe1DDBZBl3SDjnY2i51IrcErELgCh2W1EXQyu_Dc,8476
219
- runbooks/remediation/rds_remediation.py,sha256=a2FAL19uDPng1n3_gfW75VyRfLf3hkTKz-7yqsqNpW0,37069
202
+ runbooks/remediation/rds_remediation.py,sha256=KVgo9ermkR0f19-0Jq-e0_c8ImfsB_XAGIYyeWC4EfM,37069
220
203
  runbooks/remediation/rds_snapshot_list.py,sha256=7ImBYvHScpP_TxnccE2pWbwuiYlblZKtXZ1YzsSVLiY,7933
221
- runbooks/remediation/requirements.txt,sha256=wXKN9AHGCJlvGWbOrqpfPNIhnPU6CnV2reRGnG13Ims,2091
222
- runbooks/remediation/s3_block_public_access.py,sha256=DTQZwPpw8el8KWGPKDTZggRGi_tZZtUMA7-r5cQesS0,6331
204
+ runbooks/remediation/requirements.txt,sha256=xwrVRq4cK8GbX9cwt_8TLLj8kCJHQ06tqBrH_wukMzE,2091
205
+ runbooks/remediation/s3_block_public_access.py,sha256=mTBIxaiBnyjyAOMFxzhFhlRwBDYFl9tXbkoFTBDLy4o,6331
223
206
  runbooks/remediation/s3_bucket_public_access.py,sha256=eejdaWik_QpWHIMAZSdHWVckJBHL3VkXRBCIDFcVVVI,5533
224
207
  runbooks/remediation/s3_disable_static_website_hosting.py,sha256=08CeFqDfGpLRAwGVJQDiEyA2ct_pHSXiSh9Wt0_iIOI,2749
225
208
  runbooks/remediation/s3_downloader.py,sha256=WteUk1xMiiUdnUOeC_O3RhbAVSEfKB4XyYbWSW29lT4,8777
226
- runbooks/remediation/s3_enable_access_logging.py,sha256=TusrVRPw3s4e8lHiz2q9-teqFCjA4ZtE7eBEV_x9cN0,24672
227
- runbooks/remediation/s3_encryption.py,sha256=h87qHjwRosUZwqbN4a1n26dncANcwESbSK2h0cZ_dSw,21064
209
+ runbooks/remediation/s3_enable_access_logging.py,sha256=jUxMy7Dy0EweuCxW-YQ43nHSSmptmL6cYfxZuniHGyc,24672
210
+ runbooks/remediation/s3_encryption.py,sha256=K94Xn7yd9SZ3IgFjubEw87_NzWyIPeX4lgZKLoFOGPM,21064
228
211
  runbooks/remediation/s3_force_ssl_secure_policy.py,sha256=j-p0T5xjk8l4wIgtW07yYuoWIYhcDyVL_UgdrdNGPDY,5219
229
212
  runbooks/remediation/s3_list.py,sha256=PB7MqI13GYR6-PhYtqf3MIdURWbd1dVKdSSDUoubmVE,6313
230
213
  runbooks/remediation/s3_object_search.py,sha256=8MnbwVwz2qZ0IK_C_uzMwNCfMnkB24d8JgrIN03lqSo,7904
231
- runbooks/remediation/s3_remediation.py,sha256=8YHanqrYPDbr4LQQXwcukY_p68f3fs26ZtHIg-WepL8,33014
214
+ runbooks/remediation/s3_remediation.py,sha256=ix-WoeND_galxEhV901T3E__bNovqvcE_Z6bWToLbC0,33014
232
215
  runbooks/remediation/scan_for_phrase.py,sha256=FgTpDXnLg1tdnU6aYTmvOZu9CMjZMsfrZCNOSLqL4P4,18958
233
216
  runbooks/remediation/workspaces_list.py,sha256=M6UGSmHT_IfTD2Dk58fO0b38wAp3Rb7IXvuI0S46Inw,9426
234
217
  runbooks/remediation/Tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
235
218
  runbooks/remediation/Tests/update_policy.py,sha256=7jb5hMR6jVbCUwzl5MHVqxrIGFN9_2-trIMUV-R7Kls,2999
236
219
  runbooks/security/README.md,sha256=NiOHsV8Kal5LHh3mJtEjw30rCjx-9JjnMzPjXe4_Hzo,17850
237
- runbooks/security/__init__.py,sha256=jKxqHN-gusuxgMwUIGewrP8endsyXwBxTFTSurId1cA,1844
220
+ runbooks/security/__init__.py,sha256=tVfoTO03gnk0BB7vI_XuDsBCmGfd7_c-BNg4Rc9GBLo,1844
238
221
  runbooks/security/config-origin.json,sha256=3mijAIymVtkf1V_BzDJPnQSBSFjrYyL-wrPBH3t8gXQ,1009
239
222
  runbooks/security/config.json,sha256=3mijAIymVtkf1V_BzDJPnQSBSFjrYyL-wrPBH3t8gXQ,1009
240
223
  runbooks/security/permission.json,sha256=3p9xDYEKLfOT171GE8gV2dAjgw2TFNoggGB65w2q-L8,1261
@@ -269,9 +252,9 @@ runbooks/security/utils/level_const.py,sha256=l8uYBmgEMjIQTGVVuXPAfDd_Psl6jNfTQw
269
252
  runbooks/security/utils/permission_list.py,sha256=nq06vlILHp9rfnCpJauCmFCOEGdgFMF-XO3uBFrrd-o,767
270
253
  runbooks/utils/__init__.py,sha256=3K-CwUA_NEN9R7RT5PeELs-VLSgVKUfkV-4NJkbCg90,5770
271
254
  runbooks/utils/logger.py,sha256=ifxqLjDlZoDaG8rtAGVKLZ5dAwcMn16rB4YgMfeUC3E,972
272
- runbooks-0.7.5.dist-info/licenses/LICENSE,sha256=WAQUYGIkLJh6CPrlZgr0IsbRODa0EZ6fboBXGjfWggs,11375
273
- runbooks-0.7.5.dist-info/METADATA,sha256=hQazW_8ifwWJTCGSQKpt5hPo3Q1NmQKgKPU5nvQwidM,26214
274
- runbooks-0.7.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
275
- runbooks-0.7.5.dist-info/entry_points.txt,sha256=OUdFCP5rg5Q1bS1lqyZ8z1NjdGMyIj3t1M7eHd6CRuM,223
276
- runbooks-0.7.5.dist-info/top_level.txt,sha256=dC5G9UiKrI_9_0dBLWwpGi1JFPRp_Qspi23URlD5WyU,32
277
- runbooks-0.7.5.dist-info/RECORD,,
255
+ runbooks-0.7.7.dist-info/licenses/LICENSE,sha256=WAQUYGIkLJh6CPrlZgr0IsbRODa0EZ6fboBXGjfWggs,11375
256
+ runbooks-0.7.7.dist-info/METADATA,sha256=106T-4jFUGlJR39abYM8XbMn-HFSG9BLnyqBJ1mCAQw,26273
257
+ runbooks-0.7.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
258
+ runbooks-0.7.7.dist-info/entry_points.txt,sha256=OUdFCP5rg5Q1bS1lqyZ8z1NjdGMyIj3t1M7eHd6CRuM,223
259
+ runbooks-0.7.7.dist-info/top_level.txt,sha256=A0zTBjuF7THC6vnJU7StN7ihtUoh31lZSfwyWpWP2YE,18
260
+ runbooks-0.7.7.dist-info/RECORD,,
@@ -1,3 +1,2 @@
1
1
  conftest
2
- jupyter-agent
3
2
  runbooks
jupyter-agent/.env DELETED
@@ -1,2 +0,0 @@
1
- E2B_API_KEY=e2b_5a55ac409ab539d392e74a9c2aa8c5421eaeec91
2
- HF_TOKEN=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
@@ -1,2 +0,0 @@
1
- E2B_API_KEY=your_e2b_api_key_here
2
- HF_TOKEN=your_huggingface_token_here
@@ -1,35 +0,0 @@
1
- *.7z filter=lfs diff=lfs merge=lfs -text
2
- *.arrow filter=lfs diff=lfs merge=lfs -text
3
- *.bin filter=lfs diff=lfs merge=lfs -text
4
- *.bz2 filter=lfs diff=lfs merge=lfs -text
5
- *.ckpt filter=lfs diff=lfs merge=lfs -text
6
- *.ftz filter=lfs diff=lfs merge=lfs -text
7
- *.gz filter=lfs diff=lfs merge=lfs -text
8
- *.h5 filter=lfs diff=lfs merge=lfs -text
9
- *.joblib filter=lfs diff=lfs merge=lfs -text
10
- *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
- *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
- *.model filter=lfs diff=lfs merge=lfs -text
13
- *.msgpack filter=lfs diff=lfs merge=lfs -text
14
- *.npy filter=lfs diff=lfs merge=lfs -text
15
- *.npz filter=lfs diff=lfs merge=lfs -text
16
- *.onnx filter=lfs diff=lfs merge=lfs -text
17
- *.ot filter=lfs diff=lfs merge=lfs -text
18
- *.parquet filter=lfs diff=lfs merge=lfs -text
19
- *.pb filter=lfs diff=lfs merge=lfs -text
20
- *.pickle filter=lfs diff=lfs merge=lfs -text
21
- *.pkl filter=lfs diff=lfs merge=lfs -text
22
- *.pt filter=lfs diff=lfs merge=lfs -text
23
- *.pth filter=lfs diff=lfs merge=lfs -text
24
- *.rar filter=lfs diff=lfs merge=lfs -text
25
- *.safetensors filter=lfs diff=lfs merge=lfs -text
26
- saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
- *.tar.* filter=lfs diff=lfs merge=lfs -text
28
- *.tar filter=lfs diff=lfs merge=lfs -text
29
- *.tflite filter=lfs diff=lfs merge=lfs -text
30
- *.tgz filter=lfs diff=lfs merge=lfs -text
31
- *.wasm filter=lfs diff=lfs merge=lfs -text
32
- *.xz filter=lfs diff=lfs merge=lfs -text
33
- *.zip filter=lfs diff=lfs merge=lfs -text
34
- *.zst filter=lfs diff=lfs merge=lfs -text
35
- *tfevents* filter=lfs diff=lfs merge=lfs -text
@@ -1,31 +0,0 @@
1
- -----BEGIN CERTIFICATE-----
2
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv
14
- 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
- OlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTn
16
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
31
- -----END CERTIFICATE-----
jupyter-agent/README.md DELETED
@@ -1,16 +0,0 @@
1
- ---
2
- title: Jupyter Agent
3
- emoji: 🏃
4
- colorFrom: red
5
- colorTo: purple
6
- sdk: gradio
7
- sdk_version: 5.8.0
8
- app_file: app.py
9
- pinned: false
10
- thumbnail: cloudops-agent.png
11
- ---
12
-
13
-
14
- # Task-Specialized Agents for automation, by focusing on well-defined problems with clear success metrics
15
-
16
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
@@ -1,8 +0,0 @@
1
- 2025-02-07 08:59:31,890 - INFO - Notebook saved to ./tmp/hohanq1u097/jupyter-agent.ipynb
2
- 2025-02-07 09:08:58,989 - INFO - Notebook saved to ./tmp/4ojbs8a02ir/jupyter-agent.ipynb
3
- 2025-02-07 09:16:22,801 - INFO - Notebook saved to ./tmp/4ojbs8a02ir/jupyter-agent.ipynb
4
- 2025-02-07 10:27:19,698 - INFO - Notebook saved to ./tmp/crqbsseag5/jupyter-agent.ipynb
5
- 2025-02-07 10:29:00,714 - INFO - Notebook saved to ./tmp/crqbsseag5/jupyter-agent.ipynb
6
- 2025-02-07 10:44:22,894 - INFO - Notebook saved to ./tmp/jns1sam29wm/jupyter-agent.ipynb
7
- 2025-02-07 11:56:07,281 - INFO - Notebook saved to ./tmp/cm5iasgpm3p/jupyter-agent.ipynb
8
- 2025-02-07 11:57:38,936 - INFO - Notebook saved to ./tmp/cm5iasgpm3p/jupyter-agent.ipynb