runbooks 1.1.7__py3-none-any.whl → 1.1.10__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.
- runbooks/__init__.py +1 -1
- runbooks/__init___optimized.py +2 -1
- runbooks/_platform/__init__.py +1 -1
- runbooks/cfat/cli.py +4 -3
- runbooks/cfat/cloud_foundations_assessment.py +1 -2
- runbooks/cfat/tests/test_cli.py +4 -1
- runbooks/cli/commands/finops.py +68 -19
- runbooks/cli/commands/inventory.py +838 -14
- runbooks/cli/commands/operate.py +65 -4
- runbooks/cli/commands/vpc.py +1 -1
- runbooks/cloudops/cost_optimizer.py +1 -3
- runbooks/common/cli_decorators.py +6 -4
- runbooks/common/config_loader.py +787 -0
- runbooks/common/config_schema.py +280 -0
- runbooks/common/dry_run_framework.py +14 -2
- runbooks/common/mcp_integration.py +238 -0
- runbooks/finops/ebs_cost_optimizer.py +7 -4
- runbooks/finops/elastic_ip_optimizer.py +7 -4
- runbooks/finops/infrastructure/__init__.py +3 -2
- runbooks/finops/infrastructure/commands.py +7 -4
- runbooks/finops/infrastructure/load_balancer_optimizer.py +7 -4
- runbooks/finops/infrastructure/vpc_endpoint_optimizer.py +7 -4
- runbooks/finops/nat_gateway_optimizer.py +7 -4
- runbooks/finops/tests/run_tests.py +1 -1
- runbooks/inventory/ArgumentsClass.py +2 -1
- runbooks/inventory/CLAUDE.md +41 -0
- runbooks/inventory/README.md +210 -2
- runbooks/inventory/Tests/test_Inventory_Modules.py +27 -10
- runbooks/inventory/Tests/test_cfn_describe_stacks.py +18 -7
- runbooks/inventory/Tests/test_ec2_describe_instances.py +30 -15
- runbooks/inventory/Tests/test_lambda_list_functions.py +17 -3
- runbooks/inventory/Tests/test_org_list_accounts.py +17 -4
- runbooks/inventory/account_class.py +0 -1
- runbooks/inventory/all_my_instances_wrapper.py +4 -8
- runbooks/inventory/aws_organization.png +0 -0
- runbooks/inventory/check_cloudtrail_compliance.py +4 -4
- runbooks/inventory/check_controltower_readiness.py +50 -47
- runbooks/inventory/check_landingzone_readiness.py +35 -31
- runbooks/inventory/cloud_foundations_integration.py +8 -3
- runbooks/inventory/collectors/aws_compute.py +59 -11
- runbooks/inventory/collectors/aws_management.py +39 -5
- runbooks/inventory/core/collector.py +1655 -159
- runbooks/inventory/core/concurrent_paginator.py +511 -0
- runbooks/inventory/discovery.md +15 -6
- runbooks/inventory/{draw_org_structure.py → draw_org.py} +55 -9
- runbooks/inventory/drift_detection_cli.py +8 -68
- runbooks/inventory/find_cfn_drift_detection.py +14 -4
- runbooks/inventory/find_cfn_orphaned_stacks.py +7 -5
- runbooks/inventory/find_cfn_stackset_drift.py +5 -5
- runbooks/inventory/find_ec2_security_groups.py +6 -3
- runbooks/inventory/find_landingzone_versions.py +5 -5
- runbooks/inventory/find_vpc_flow_logs.py +5 -5
- runbooks/inventory/inventory.sh +20 -7
- runbooks/inventory/inventory_mcp_cli.py +4 -0
- runbooks/inventory/inventory_modules.py +9 -7
- runbooks/inventory/list_cfn_stacks.py +18 -8
- runbooks/inventory/list_cfn_stackset_operation_results.py +2 -2
- runbooks/inventory/list_cfn_stackset_operations.py +32 -20
- runbooks/inventory/list_cfn_stacksets.py +7 -4
- runbooks/inventory/list_config_recorders_delivery_channels.py +4 -4
- runbooks/inventory/list_ds_directories.py +3 -3
- runbooks/inventory/list_ec2_availability_zones.py +7 -3
- runbooks/inventory/list_ec2_ebs_volumes.py +3 -3
- runbooks/inventory/list_ec2_instances.py +1 -1
- runbooks/inventory/list_ecs_clusters_and_tasks.py +8 -4
- runbooks/inventory/list_elbs_load_balancers.py +7 -3
- runbooks/inventory/list_enis_network_interfaces.py +3 -3
- runbooks/inventory/list_guardduty_detectors.py +9 -5
- runbooks/inventory/list_iam_policies.py +7 -3
- runbooks/inventory/list_iam_roles.py +3 -3
- runbooks/inventory/list_iam_saml_providers.py +8 -4
- runbooks/inventory/list_lambda_functions.py +8 -4
- runbooks/inventory/list_org_accounts.py +306 -276
- runbooks/inventory/list_org_accounts_users.py +45 -9
- runbooks/inventory/list_rds_db_instances.py +4 -4
- runbooks/inventory/list_route53_hosted_zones.py +3 -3
- runbooks/inventory/list_servicecatalog_provisioned_products.py +5 -5
- runbooks/inventory/list_sns_topics.py +4 -4
- runbooks/inventory/list_ssm_parameters.py +6 -3
- runbooks/inventory/list_vpc_subnets.py +8 -4
- runbooks/inventory/list_vpcs.py +15 -4
- runbooks/inventory/mcp_inventory_validator.py +771 -134
- runbooks/inventory/mcp_vpc_validator.py +6 -0
- runbooks/inventory/organizations_discovery.py +17 -3
- runbooks/inventory/organizations_utils.py +553 -0
- runbooks/inventory/output_formatters.py +422 -0
- runbooks/inventory/recover_cfn_stack_ids.py +5 -5
- runbooks/inventory/run_on_multi_accounts.py +3 -3
- runbooks/inventory/tag_coverage.py +481 -0
- runbooks/inventory/validation_utils.py +358 -0
- runbooks/inventory/verify_ec2_security_groups.py +18 -5
- runbooks/inventory/vpc_architecture_validator.py +7 -1
- runbooks/inventory/vpc_dependency_analyzer.py +6 -0
- runbooks/main_final.py +2 -2
- runbooks/main_ultra_minimal.py +2 -2
- runbooks/mcp/integration.py +6 -4
- runbooks/remediation/acm_remediation.py +2 -2
- runbooks/remediation/cloudtrail_remediation.py +2 -2
- runbooks/remediation/cognito_remediation.py +2 -2
- runbooks/remediation/dynamodb_remediation.py +2 -2
- runbooks/remediation/ec2_remediation.py +2 -2
- runbooks/remediation/kms_remediation.py +2 -2
- runbooks/remediation/lambda_remediation.py +2 -2
- runbooks/remediation/rds_remediation.py +2 -2
- runbooks/remediation/s3_remediation.py +1 -1
- runbooks/vpc/cloudtrail_audit_integration.py +1 -1
- {runbooks-1.1.7.dist-info → runbooks-1.1.10.dist-info}/METADATA +74 -4
- {runbooks-1.1.7.dist-info → runbooks-1.1.10.dist-info}/RECORD +112 -105
- runbooks/__init__.py.backup +0 -134
- {runbooks-1.1.7.dist-info → runbooks-1.1.10.dist-info}/WHEEL +0 -0
- {runbooks-1.1.7.dist-info → runbooks-1.1.10.dist-info}/entry_points.txt +0 -0
- {runbooks-1.1.7.dist-info → runbooks-1.1.10.dist-info}/licenses/LICENSE +0 -0
- {runbooks-1.1.7.dist-info → runbooks-1.1.10.dist-info}/top_level.txt +0 -0
@@ -46,9 +46,9 @@ from runbooks.remediation import RDSSecurityRemediation, RemediationContext
|
|
46
46
|
|
47
47
|
# Initialize with enterprise configuration
|
48
48
|
rds_remediation = RDSSecurityRemediation(
|
49
|
-
profile="production",
|
50
49
|
encryption_required=True,
|
51
50
|
backup_retention_days=30
|
51
|
+
# Profile managed via AWS_PROFILE environment variable or default profile
|
52
52
|
)
|
53
53
|
|
54
54
|
# Execute comprehensive RDS security hardening
|
@@ -104,9 +104,9 @@ class RDSSecurityRemediation(BaseRemediation):
|
|
104
104
|
|
105
105
|
# Initialize with enterprise configuration
|
106
106
|
rds_remediation = RDSSecurityRemediation(
|
107
|
-
profile="production",
|
108
107
|
encryption_required=True,
|
109
108
|
backup_retention_days=30
|
109
|
+
# Profile managed via AWS_PROFILE environment variable or default profile
|
110
110
|
)
|
111
111
|
|
112
112
|
# Execute instance encryption
|
@@ -90,9 +90,9 @@ class S3SecurityRemediation(BaseRemediation):
|
|
90
90
|
|
91
91
|
# Initialize with enterprise configuration
|
92
92
|
s3_remediation = S3SecurityRemediation(
|
93
|
-
profile="production",
|
94
93
|
backup_enabled=True,
|
95
94
|
notification_enabled=True
|
95
|
+
# Profile managed via AWS_PROFILE environment variable or default profile
|
96
96
|
)
|
97
97
|
|
98
98
|
# Create remediation context
|
@@ -6,7 +6,7 @@ Enterprise-grade CloudTrail integration for comprehensive deleted resources trac
|
|
6
6
|
and audit trail compliance. Integrates with existing VPC cleanup framework.
|
7
7
|
|
8
8
|
Author: devops-security-engineer [5] + python-runbooks-engineer [1]
|
9
|
-
Architecture:
|
9
|
+
Architecture: cloud-architect [2]
|
10
10
|
Strategic Alignment: enterprise-product-owner [0]
|
11
11
|
"""
|
12
12
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: runbooks
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.10
|
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
|
@@ -65,7 +65,7 @@ Dynamic: license-file
|
|
65
65
|
[](https://cloudops.oceansoft.io/runbooks/)
|
66
66
|
[](https://pypi.org/project/runbooks/)
|
67
67
|
|
68
|
-
> **Enterprise-
|
68
|
+
> **Enterprise-Grade Production-Ready AWS automation toolkit for DevOps and SRE teams managing Multi-Account Hybrid-Cloud environments at Scale** 🏢⚡
|
69
69
|
|
70
70
|
**Quick Value**: Discover, analyze, and optimize AWS resources across multi-account AWS environments with production-validated automation patterns.
|
71
71
|
|
@@ -171,8 +171,8 @@ runbooks inventory collect --profile $AWS_OPERATIONS_PROFILE --regions us-east-1
|
|
171
171
|
| 🏛️ **CFAT** | Cloud Foundations Assessment | `runbooks cfat assess` | Executive-ready compliance reports |
|
172
172
|
| ⚙️ **Operate** | Resource lifecycle management | `runbooks operate ec2 start` | Safe resource operations |
|
173
173
|
| 🔗 **VPC** | Network analysis & optimization | `runbooks vpc analyze` | Network cost optimization |
|
174
|
-
| 🏢 **Organizations** | OU structure management |
|
175
|
-
| 🛠️ **Remediation** | Automated security fixes |
|
174
|
+
| 🏢 **Organizations** [PLANNED] | OU structure management | Coming in v1.2 | Landing Zone automation |
|
175
|
+
| 🛠️ **Remediation** [PLANNED] | Automated security fixes | Coming in v1.2 | 50+ security playbooks |
|
176
176
|
|
177
177
|
## ⚡ Essential Commands Reference
|
178
178
|
|
@@ -225,6 +225,76 @@ runbooks operate cloudformation move-stack-instances \
|
|
225
225
|
--source-stackset old-baseline --target-stackset new-baseline --dry-run
|
226
226
|
```
|
227
227
|
|
228
|
+
### 🎨 CLI Parameter Flexibility (v1.1.10+)
|
229
|
+
|
230
|
+
**Enhanced UX**: All commands now support flexible format specification with **short flag support**
|
231
|
+
|
232
|
+
#### Triple Alias Pattern
|
233
|
+
Choose your preferred parameter style - all forms work identically:
|
234
|
+
|
235
|
+
| Style | Example | Use Case |
|
236
|
+
|-------|---------|----------|
|
237
|
+
| **Short** ✨ | `-f json` | Interactive CLI (save keystrokes) |
|
238
|
+
| **Standard** | `--format json` | Scripts & automation |
|
239
|
+
| **Legacy** | `--export-format json` | Backward compatibility |
|
240
|
+
|
241
|
+
#### Examples - All Three Forms Work
|
242
|
+
|
243
|
+
**Organization Visualization**:
|
244
|
+
```bash
|
245
|
+
# All three commands produce identical output
|
246
|
+
runbooks inventory draw-org -f graphviz --profile $MANAGEMENT_PROFILE
|
247
|
+
runbooks inventory draw-org --format graphviz --profile $MANAGEMENT_PROFILE
|
248
|
+
runbooks inventory draw-org --export-format graphviz --profile $MANAGEMENT_PROFILE
|
249
|
+
```
|
250
|
+
|
251
|
+
**Cost Analysis Export**:
|
252
|
+
```bash
|
253
|
+
# Choose your preferred style
|
254
|
+
runbooks finops analyze -f csv --profile $BILLING_PROFILE
|
255
|
+
runbooks finops analyze --format csv --profile $BILLING_PROFILE
|
256
|
+
runbooks finops analyze --export-format csv --profile $BILLING_PROFILE
|
257
|
+
```
|
258
|
+
|
259
|
+
**Account Inventory**:
|
260
|
+
```bash
|
261
|
+
# Short form for interactive use (NEW in v1.1.10)
|
262
|
+
runbooks inventory list-org-accounts -f json --output accounts.json
|
263
|
+
|
264
|
+
# Standard form for scripts
|
265
|
+
runbooks inventory list-org-accounts --format csv --output accounts.csv
|
266
|
+
|
267
|
+
# Legacy form (fully supported)
|
268
|
+
runbooks inventory list-org-accounts --export-format markdown --output accounts.md
|
269
|
+
```
|
270
|
+
|
271
|
+
#### Supported Commands (13 Total)
|
272
|
+
|
273
|
+
| Module | Command | Formats | v1.1.10 |
|
274
|
+
|--------|---------|---------|---------|
|
275
|
+
| Inventory | `draw-org` | graphviz, mermaid, diagrams | ✅ |
|
276
|
+
| Inventory | `list-org-accounts` | json, csv, markdown, table | ✅ |
|
277
|
+
| Inventory | `list-org-users` | json, csv, markdown, table | ✅ |
|
278
|
+
| Inventory | `find-lz-versions` | json, csv, markdown, table | ✅ |
|
279
|
+
| Inventory | `check-landingzone` | json, markdown, table | ✅ |
|
280
|
+
| Inventory | `check-controltower` | json, markdown, table | ✅ |
|
281
|
+
| FinOps | `infrastructure analyze` | json, csv, markdown | ✅ |
|
282
|
+
| FinOps | `elastic-ip` | json, csv, markdown | ✅ |
|
283
|
+
| FinOps | `ebs` | json, csv, markdown | ✅ |
|
284
|
+
| FinOps | `vpc-endpoint` | json, csv, markdown | ✅ |
|
285
|
+
| FinOps | `nat-gateway` | json, csv, markdown | ✅ |
|
286
|
+
| FinOps | `load-balancer` | json, csv, markdown | ✅ |
|
287
|
+
|
288
|
+
#### Migration Guide
|
289
|
+
|
290
|
+
**Zero Breaking Changes**: All existing scripts continue working without modification
|
291
|
+
|
292
|
+
**Adoption Path**:
|
293
|
+
- ✅ **Now**: All parameter forms work (choose preferred style)
|
294
|
+
- 💡 **Recommended**: Adopt `-f` for interactive CLI usage (faster typing)
|
295
|
+
- 📝 **Scripts**: Update at your convenience (no urgency)
|
296
|
+
- 🔄 **Future**: v1.2.0 will show deprecation warnings for legacy parameters
|
297
|
+
|
228
298
|
## 🏗️ Architecture Highlights
|
229
299
|
|
230
300
|
### Modern Stack
|
@@ -1,24 +1,23 @@
|
|
1
1
|
conftest.py,sha256=HTnQMw9wxefkvX5q4yG8EUH2qVLJBnC9QCt3UCltw7I,586
|
2
|
-
runbooks/__init__.py,sha256=
|
3
|
-
runbooks/
|
4
|
-
runbooks/__init___optimized.py,sha256=ao5SdjsJ0T-ZsOFtEqOeEM4hnI8kgIs-8laJZsHEjp0,4011
|
2
|
+
runbooks/__init__.py,sha256=YLPjp-uHamQyXBwRKmX_a7NxN_Jegj9liApLkbmFVDs,6261
|
3
|
+
runbooks/__init___optimized.py,sha256=XEoaI19gQ-pcGsMC6jpFr_9WQkhnkKf6PUYkFp1KX3Q,4078
|
5
4
|
runbooks/__main__.py,sha256=0hTPUA9KkLm_H_COqaIpNzXvC4Lv5b_XYYBV6fUFDrM,241
|
6
5
|
runbooks/base.py,sha256=3FJNcd2AcanuJi2Qbs-QasBuBSCib6soJ7Sie2Mba8g,11932
|
7
6
|
runbooks/config.py,sha256=63Bct1jASQG3mjPTNnzfJwTMgXzG8aQqVsaku6ugZR0,7839
|
8
7
|
runbooks/main.py,sha256=RxXSGA48Xxq-nAJbyLD6wglb88th0mAHWcXe905jVQ8,7709
|
9
|
-
runbooks/main_final.py,sha256=
|
8
|
+
runbooks/main_final.py,sha256=gpAFRCoVNwsGL7RKOX6XMziwQi2Sok8E_yCKfGjYedk,12331
|
10
9
|
runbooks/main_minimal.py,sha256=eGzu6iRwh_Glp_Qqzx3C5MrNittUNMDHRwh8-io5lXk,2550
|
11
10
|
runbooks/main_optimized.py,sha256=q2VgFRa4SK02zHURolJsvBmZ1q3P2m8b4X9aZvKMJRk,16633
|
12
|
-
runbooks/main_ultra_minimal.py,sha256=
|
13
|
-
runbooks/_platform/__init__.py,sha256=
|
11
|
+
runbooks/main_ultra_minimal.py,sha256=_8O8GZOY9folMEOCTz6E10PRFm1Bnem6zuivlq_cyvc,1159
|
12
|
+
runbooks/_platform/__init__.py,sha256=6DUON-q2PECnR8pCndQ-HSp0Mc28qHcku0jrM6g9A_k,516
|
14
13
|
runbooks/_platform/core/runbooks_wrapper.py,sha256=87-gpIWNuIxNDBdD83yTi_VQHp_TpF5l0joKfiXfsxM,18023
|
15
14
|
runbooks/aws2/accuracy_validator.py,sha256=ZWRUjZ9zM-OgrWjMRmmgj55TMEC6puoPrBvp-hNI5go,35166
|
16
15
|
runbooks/cfat/README.md,sha256=vDOJykrHDk8tBCw_PbWn27XvZXSmkv2sCknmlNaM9OY,11853
|
17
16
|
runbooks/cfat/WEIGHT_CONFIG_README.md,sha256=k9ABHGWGnUbLSTuoUkO39mcE3pGqNoLDEuDXyV0grcs,11453
|
18
17
|
runbooks/cfat/__init__.py,sha256=lxoBHV8KS5vXz6LBUh3tW6Bs4PQ7GpEcllb2v835rlI,2142
|
19
18
|
runbooks/cfat/app.ts,sha256=v6O0APCUQxy8OMjKf1kR-X66_IqmpJ90zUqJWHkDj2I,28832
|
20
|
-
runbooks/cfat/cli.py,sha256=
|
21
|
-
runbooks/cfat/cloud_foundations_assessment.py,sha256=
|
19
|
+
runbooks/cfat/cli.py,sha256=JkJzHNAce8GbTh4wP8qhyO1G7LNXi2YINH5KlOz0Zwc,3551
|
20
|
+
runbooks/cfat/cloud_foundations_assessment.py,sha256=DQK-oZowkBcxdOwMHL89j3KOu7JiJEoFZ7aGsiVVtyU,25025
|
22
21
|
runbooks/cfat/models.py,sha256=Hm09QLPSc6SiFiR-dnTPoIJ7jjFEmPgut6j9Ib1un5E,38335
|
23
22
|
runbooks/cfat/package-lock.json,sha256=zRmjHmoieoF9UiNPZWPgsqo9Hq4LCE_pt59OZ2-hBn4,185693
|
24
23
|
runbooks/cfat/package.json,sha256=lQEq_Xh4xzCJYKgZRZoVs1R3i6W-_Xx6UV3et4mA37c,1133
|
@@ -76,7 +75,7 @@ runbooks/cfat/src/actions/get-regions.ts,sha256=Yh1FYD0tlaBdOlRImTW1o9pbIwchulYg
|
|
76
75
|
runbooks/cfat/src/actions/zip-assessment.ts,sha256=zkn6R6Ig_S8OQMg8_gL-r_5Cmwbv6BYMeGC9HxK4zxg,936
|
77
76
|
runbooks/cfat/src/types/index.d.ts,sha256=sHx_eV4uxRZc7KjiFryqHGkzGvJ-MxxmLLYb2qk2Vl0,2932
|
78
77
|
runbooks/cfat/tests/__init__.py,sha256=Xz5Md4G9bYDII2XxRaMG8B8ZK1NREnJYOMfKJF33hbk,4762
|
79
|
-
runbooks/cfat/tests/test_cli.py,sha256=
|
78
|
+
runbooks/cfat/tests/test_cli.py,sha256=lX0d5-CCa1FZURFL-olktc4BVxwTRw5t0DGuzTktuHk,15303
|
80
79
|
runbooks/cfat/tests/test_integration.py,sha256=L4kkWW41Jsuzn4Tv-z_a5cY6xOo_aHzCAVjlmuGHuew,12281
|
81
80
|
runbooks/cfat/tests/test_models.py,sha256=16Dcdty82_yotJ2ngBbgydCy9BDamxtMZrs4a1t-mVM,18267
|
82
81
|
runbooks/cfat/tests/test_reporting.py,sha256=ysPZSAFgCQ7oIkOdBxUrlCiyZBhWDpcnp0I2cv3k9_Q,12631
|
@@ -84,15 +83,15 @@ runbooks/cfat/tests/test_weight_configuration.ts,sha256=1IfMR0NCvONdprsDv0l24chd
|
|
84
83
|
runbooks/cli/__init__.py,sha256=9yb8r0P9ipQzaZZPD-NDPeQRtDVWqG7_v_2ru5wPdPU,446
|
85
84
|
runbooks/cli/registry.py,sha256=1hCARcKay2B6atgYSC7X3xGjfXC65_Ep1hJb6buJRJI,3441
|
86
85
|
runbooks/cli/commands/cfat.py,sha256=xL1WG4DmQTOwLL4I8cmnEy5Z82D91iHj0vB7FokTXbg,11041
|
87
|
-
runbooks/cli/commands/finops.py,sha256=
|
88
|
-
runbooks/cli/commands/inventory.py,sha256=
|
89
|
-
runbooks/cli/commands/operate.py,sha256=
|
86
|
+
runbooks/cli/commands/finops.py,sha256=zQ_VKbHYPgeWdKhslFP8uf5EZuQt5BivvI-uZ4s0Xmg,59260
|
87
|
+
runbooks/cli/commands/inventory.py,sha256=BABN4sf2a66Xj-O0_gcFwBa7M0vQ1bimrftPa4Fm-oM,53944
|
88
|
+
runbooks/cli/commands/operate.py,sha256=v6At3QN-A_zzpLC4pI6Ikts5A4aX6gIOi1n3HHeFWKw,12911
|
90
89
|
runbooks/cli/commands/security.py,sha256=Yv3JFqfT4WNulOGtYvhhaxwZtTUOxPwCGDbaCax_KYc,10307
|
91
90
|
runbooks/cli/commands/validation.py,sha256=Vc8y7TcRkrFtdsZZoDkjZ2taS5UuH1e2hSGpRD9Q2_4,38530
|
92
|
-
runbooks/cli/commands/vpc.py,sha256=
|
91
|
+
runbooks/cli/commands/vpc.py,sha256=f_2blEXjpp_J7ob-J85nZdz9hb45ef5_i9RNscxGdLY,12390
|
93
92
|
runbooks/cloudops/__init__.py,sha256=75yaFtM9T1OEfbaJN5GnJkw1Hb5mWfoaXk__204kQN0,5341
|
94
93
|
runbooks/cloudops/base.py,sha256=n9eK26V1EOSwbfRIP5XGEzsSeIccJs6wjuI4nwAZ0Jc,16180
|
95
|
-
runbooks/cloudops/cost_optimizer.py,sha256=
|
94
|
+
runbooks/cloudops/cost_optimizer.py,sha256=1zNsyNrFMuOffCwK8RNwcCatDGwIixSQpo-MlnfM7VU,80031
|
96
95
|
runbooks/cloudops/infrastructure_optimizer.py,sha256=Y8kRwNfqXPpck9ct2Xg_wg8N77zTLaN92JfGSG46_oA,1067
|
97
96
|
runbooks/cloudops/interfaces.py,sha256=ZUOTN52hoLpXs8xD6GXFthdkRovlw3wMkieaq0Dnd7E,31664
|
98
97
|
runbooks/cloudops/lifecycle_manager.py,sha256=Pgv7QnBYLVNC4VpGcnFiYnQJ1StOdOpp_-zf2hIwZNk,1074
|
@@ -108,15 +107,17 @@ runbooks/common/aws_pricing_api.py,sha256=jTpcGiZHIEBxo2hmrfQtTNNHgWSkPQelQcm-Yy
|
|
108
107
|
runbooks/common/aws_profile_manager.py,sha256=jJX2FqssFAcmLf6zRaLGShnSJpN1XK07w3nudUmNYXY,11865
|
109
108
|
runbooks/common/aws_utils.py,sha256=voptyeaD7E5W82vW_4yY6M5NICGF3MM7hMz3s00waqM,13190
|
110
109
|
runbooks/common/business_logic.py,sha256=D949mmH_OsMYRTuUcHvcNAaXF35KBB7D6QRQkV5q4A8,20629
|
111
|
-
runbooks/common/cli_decorators.py,sha256=
|
110
|
+
runbooks/common/cli_decorators.py,sha256=c_HGc5LX_s3ELxSr9A1yJ-W5Isy5493bM4N6K8dhKKM,8498
|
112
111
|
runbooks/common/comprehensive_cost_explorer_integration.py,sha256=DEIjPW3X4N9B_DCmit3RvGZEgsDtxjDVgQ_eS6TR5ag,43488
|
112
|
+
runbooks/common/config_loader.py,sha256=RUBv3AXipm1JQ4uHmdo00ydpt8oVUr-MdYGnJzenbG0,27468
|
113
|
+
runbooks/common/config_schema.py,sha256=z25qLMHd6bimnVvnF2Clk-GT8c1eXLtWKYE6euMrq5w,10216
|
113
114
|
runbooks/common/context_logger.py,sha256=is72Mvw2QgIp-z9FXNSL-pceDhEsSklH_7QbNmGR6lQ,14757
|
114
115
|
runbooks/common/cross_account_manager.py,sha256=6-b8wfhN4MN8khjBglrqH-LvyzMmrF3VGHpRTJtLZCc,24576
|
115
116
|
runbooks/common/cross_module_integration.py,sha256=q3DCh9gvN55hNe22Bpu2k07VP-zgmAltm8p3xGKylSE,23870
|
116
117
|
runbooks/common/date_utils.py,sha256=HPUH4sG1LbMIQldpBYZ6vYBQk5AJfe5U9o2Ojj8Luis,2959
|
117
118
|
runbooks/common/decorators.py,sha256=ta_iFRL7c1ERC9SrwT9e8bqgi-jSxdgs7P-UrmYVbok,7592
|
118
119
|
runbooks/common/dry_run_examples.py,sha256=VWGk1dmKNQmVwSu1KhpaFUj_2IpQt17zXHmqHYy1Z_g,20513
|
119
|
-
runbooks/common/dry_run_framework.py,sha256=
|
120
|
+
runbooks/common/dry_run_framework.py,sha256=5p-44zahTkDV1n6bvZt5wAl8Y-FGIoZa27haD2qeK6o,20475
|
120
121
|
runbooks/common/enhanced_exception_handler.py,sha256=gFxR7p0SQJ9FWuZneWFw-fp70Q-9QABLo9-Ya3Cfw8Q,45726
|
121
122
|
runbooks/common/enhanced_logging_example.py,sha256=jMQkxdtxomF6Kp0hp9wG27dnrDKmW7SK0KqkUuXgfY4,8172
|
122
123
|
runbooks/common/enhanced_logging_integration_example.py,sha256=pMW04wTupZMgix6uSZqymzU3BqgcSIYaFhjwE-ITQYE,10609
|
@@ -127,7 +128,7 @@ runbooks/common/lazy_loader.py,sha256=NnKdzt8aeZg-GmHKc9OxoD4HWAZ_MkWAIvbXSAE5vc
|
|
127
128
|
runbooks/common/logger.py,sha256=fmBtqv-B-0f0ppejwt_KbUWOPQosO74JXgOcKbr0mbs,424
|
128
129
|
runbooks/common/logging_integration_helper.py,sha256=WreUzOD2inedFYUMNXayxW-OnngdFZ6imdItx6EOUZo,12777
|
129
130
|
runbooks/common/mcp_cost_explorer_integration.py,sha256=AD-ibDaYaClpdCPp7yiKqU3vqkG9T0YWs-MxESzrx78,38171
|
130
|
-
runbooks/common/mcp_integration.py,sha256=
|
131
|
+
runbooks/common/mcp_integration.py,sha256=NUzYJpEirY6a5mEex3fv9k0PGHn001ijL12KCC8dMEM,41003
|
131
132
|
runbooks/common/memory_optimization.py,sha256=zEZeq-Tu9f6mdtMY9UgH0Yb6_O4Uo3uCTQIx4SenUGw,20319
|
132
133
|
runbooks/common/module_cli_base.py,sha256=VYG4CyC5wXzZ7BJlxWd9AbykFe1RmJrT--BBDjKz_CM,12194
|
133
134
|
runbooks/common/organizations_client.py,sha256=LpZjFqXcA_RA2mBv9D_UF9LkzZuGOiNv8NtiTfryAOU,20758
|
@@ -159,8 +160,8 @@ runbooks/finops/config.py,sha256=jIqXCQgwFFdwH2ddwR6oKDg5pj7V0oEIMRWRf2zY_os,102
|
|
159
160
|
runbooks/finops/cost_optimizer.py,sha256=ZggyNI8MM1nKI_B6-oQ7PClFPEJSvJTRMK0TDWqBAMw,48728
|
160
161
|
runbooks/finops/cost_processor.py,sha256=aXV09FF3AZMDsxLuwkKzGS09G2SP98lXvCyzMDfitgw,61843
|
161
162
|
runbooks/finops/dashboard_runner.py,sha256=baAvy3YMvfcLyaa4ehrbldbWzyEq1sq77EoZC2g6a3Q,138191
|
162
|
-
runbooks/finops/ebs_cost_optimizer.py,sha256=
|
163
|
-
runbooks/finops/elastic_ip_optimizer.py,sha256=
|
163
|
+
runbooks/finops/ebs_cost_optimizer.py,sha256=xRLhNPjkGiReEa-sLgtRorOvcfIn10XJd3RJoFZPCV8,48774
|
164
|
+
runbooks/finops/elastic_ip_optimizer.py,sha256=c_s1aoIsPYydBNChjGi_jSQcN9hli9odL7gFPfSlzQQ,32377
|
164
165
|
runbooks/finops/enhanced_mcp_integration.py,sha256=jwznJvskT8Z8DRdKQuAJLKc2Ynb8iAeAbXWfz_-7q6I,13358
|
165
166
|
runbooks/finops/enhanced_progress.py,sha256=WQmtIwhxSL84tM3Fo2kxe_rAFxtNn4F4sv84KuICazw,19970
|
166
167
|
runbooks/finops/enhanced_trend_visualization.py,sha256=FCQsjMTD-J9SRl63tVMADwdHQeqm_s3to6qysbs-uPo,16652
|
@@ -171,7 +172,7 @@ runbooks/finops/iam_guidance.py,sha256=19Aj8myyfnK0v89KF_CNmtpz34XHLHyyFlY0wZOYl
|
|
171
172
|
runbooks/finops/main.py,sha256=W0Lnr3GJN7Tp4QL0x09GROOc7fnttpdRmd3N3T5eULo,288
|
172
173
|
runbooks/finops/markdown_exporter.py,sha256=805dnJpWSqNQdIx0J2cAOxni0yT6tCB9KAfC3WHTdJY,44802
|
173
174
|
runbooks/finops/mcp_validator.py,sha256=BgPkba5Oh8T-p75EiSzyp2B5cqzoSxMHIWnvXZpJ38c,81981
|
174
|
-
runbooks/finops/nat_gateway_optimizer.py,sha256=
|
175
|
+
runbooks/finops/nat_gateway_optimizer.py,sha256=8Mfgfo2b1KuXtZ65WG3lPuqr5mBDMVz0ASRFDkMle5Y,105513
|
175
176
|
runbooks/finops/network_cost_optimizer.py,sha256=S5lBBPSwQ6BnGC99K_ZPeOC4Ro__4e1cRgyA1Ggdg3s,65977
|
176
177
|
runbooks/finops/notebook_utils.py,sha256=YkuzB0Br-PK9h01gtepsxksrRudwxY3m9cbYDsi8GMk,28779
|
177
178
|
runbooks/finops/optimization_engine.py,sha256=_mVwoL_zb7I4xBCsHUjYUoLMDs-7rzTR7I8bBeHN_wI,50542
|
@@ -190,13 +191,13 @@ runbooks/finops/visualisations.py,sha256=BI6cBsKSNUcjqnEukMzHxZzqyv12w3TRj2zvN53
|
|
190
191
|
runbooks/finops/vpc_cleanup_exporter.py,sha256=vYC5vR0SBMkVK4_s1_ruCVgb4QFTFywt_3iF4opVs9k,15349
|
191
192
|
runbooks/finops/vpc_cleanup_optimizer.py,sha256=-jlwUihmwFoGlzqr9WS2QzIAuj59MH5d3kKjf0vBvXM,76902
|
192
193
|
runbooks/finops/workspaces_analyzer.py,sha256=dWEWuURxQ9828advb9vEx-bbOrmbw7AyYwI8wk4pJLw,22361
|
193
|
-
runbooks/finops/infrastructure/__init__.py,sha256=
|
194
|
-
runbooks/finops/infrastructure/commands.py,sha256=
|
195
|
-
runbooks/finops/infrastructure/load_balancer_optimizer.py,sha256
|
196
|
-
runbooks/finops/infrastructure/vpc_endpoint_optimizer.py,sha256=
|
194
|
+
runbooks/finops/infrastructure/__init__.py,sha256=eyt79iFBcUdWLl0ri-yATL75RoQnX2Eetb-6HohbAGI,3125
|
195
|
+
runbooks/finops/infrastructure/commands.py,sha256=E9drK64q_UTG10VspGHV1xQIIj3uSO1kXAw0XgNijag,23169
|
196
|
+
runbooks/finops/infrastructure/load_balancer_optimizer.py,sha256=vf0zWB8sgIPcSSnF1QjdwxO-H2s7tQ3oYupDbOCxE5Y,38717
|
197
|
+
runbooks/finops/infrastructure/vpc_endpoint_optimizer.py,sha256=OiLse39nP3ryUA24euO6o_yxRpSnERj4WF0DNlsxngI,37742
|
197
198
|
runbooks/finops/tests/__init__.py,sha256=MFqn-e57ft0Dsmdi89vO7jrCV4wkmMNYDtyTrSbx0Jo,583
|
198
199
|
runbooks/finops/tests/run_comprehensive_tests.py,sha256=EbgU4Z30pTnPLUX-I4Yyrl4xXZFyeTV3DzYawN6OP2M,15866
|
199
|
-
runbooks/finops/tests/run_tests.py,sha256=
|
200
|
+
runbooks/finops/tests/run_tests.py,sha256=pfERN-ec7mo-9Qj1kUHwMRQiH_iwhZOLsNP2xBWhc5o,10097
|
200
201
|
runbooks/finops/tests/test_finops_dashboard.py,sha256=cf8xshDrCAJ97u68bzTD0oUFhaezONATiUROWhUtPdU,27537
|
201
202
|
runbooks/finops/tests/test_integration.py,sha256=RBqFv6i_MgLxIgP-IQ4CM-9LNbTVs_EDN-_2GP7Vy2U,18026
|
202
203
|
runbooks/finops/tests/test_performance.py,sha256=FaXfBHYVbGe_D8j-IHDuvPHBnRarxydZUjoWEKKqyFc,14434
|
@@ -208,69 +209,74 @@ runbooks/hitl/enhanced_workflow_engine.py,sha256=AzdN6HdOuC73dVInHALoamQiz1ZUdqN
|
|
208
209
|
runbooks/integration/__init__.py,sha256=HDxKpcJPczaVMt1fqBt0J8xWE9YfF8XBuLY-dila2fM,2999
|
209
210
|
runbooks/integration/mcp_integration.py,sha256=48Za-_bIWi85DtPbVX1m8DslHJDVlBRM1egSciv3ckA,82898
|
210
211
|
runbooks/inventory/.gitignore,sha256=qqVQodfb6iNuPRM7fsl7lvqxrJaatKNQqQmX7s1_PPg,5563
|
211
|
-
runbooks/inventory/ArgumentsClass.py,sha256=
|
212
|
-
runbooks/inventory/CLAUDE.md,sha256=
|
213
|
-
runbooks/inventory/README.md,sha256=
|
212
|
+
runbooks/inventory/ArgumentsClass.py,sha256=rKwo1ckaEh2JDu6RN4vxnfTmDK65_biZfasGiZtrqCE,8652
|
213
|
+
runbooks/inventory/CLAUDE.md,sha256=QtlNZR860HMguU1O191Of98qnpLYOoAASDY0A9SmBWQ,34119
|
214
|
+
runbooks/inventory/README.md,sha256=iPQUDL-i5kkLOlhxbjw-f4cOwzDIiJjfCopd_ZcOATE,52910
|
214
215
|
runbooks/inventory/__init__.py,sha256=KEdPfmE5SeqC9t81-dpxS5vWeqCdbGb9uWkVxIyNgX0,2644
|
215
|
-
runbooks/inventory/account_class.py,sha256=
|
216
|
-
runbooks/inventory/all_my_instances_wrapper.py,sha256=
|
216
|
+
runbooks/inventory/account_class.py,sha256=v_JzdSCUNe5neP9b4LqnhvXs82bPSADy0K8jRuYTE0I,26323
|
217
|
+
runbooks/inventory/all_my_instances_wrapper.py,sha256=f7JqNSh1o3AqgNOvY95srubWESDUmd4jYjXx21r0jKM,5614
|
217
218
|
runbooks/inventory/aws_decorators.py,sha256=ZqGJDBKVzp_Sj_-wlTvOEQF6Et0AYRgUsK0-G0cG_Wo,8596
|
218
|
-
runbooks/inventory/
|
219
|
-
runbooks/inventory/
|
220
|
-
runbooks/inventory/
|
221
|
-
runbooks/inventory/
|
222
|
-
runbooks/inventory/
|
223
|
-
runbooks/inventory/
|
224
|
-
runbooks/inventory/
|
219
|
+
runbooks/inventory/aws_organization.png,sha256=eLxaiknRLaM2BvqYQfVS6xZTbaufZ55df8SmxCNFdtM,1236678
|
220
|
+
runbooks/inventory/check_cloudtrail_compliance.py,sha256=U3qkElkb7IuG9DDl7Pcsq4J1gG2-bUC2T-pRFzUdVDc,33709
|
221
|
+
runbooks/inventory/check_controltower_readiness.py,sha256=TfyYi786OMoH9VK0JMHyNkYqBCrVssJ-dbtkwdlZRFc,55259
|
222
|
+
runbooks/inventory/check_landingzone_readiness.py,sha256=hyLgSnqaiSVWU4a9tRDKA6H8dlElw-rMTVruJjA-NUA,35807
|
223
|
+
runbooks/inventory/cloud_foundations_integration.py,sha256=GXfkasne9s9DGkvGlrSNd47nRCVpzFFXaMSCq92TFIU,15641
|
224
|
+
runbooks/inventory/discovery.md,sha256=mhMRwCJzOwHz54oCqmVNwqTzWCxSB7p3Tai2pYVScyY,12613
|
225
|
+
runbooks/inventory/draw_org.py,sha256=DkDTnkl-h6cTHvx3fF2rlnDUPN3Mz3a4T-T2IKCtel4,31532
|
226
|
+
runbooks/inventory/drift_detection_cli.py,sha256=SVDkQkMH9s8yI7S7sErHln7g_kmvgeRrg-PaPPHFSmY,9693
|
225
227
|
runbooks/inventory/ec2_vpc_utils.py,sha256=Lx9s_OYQ0eoeads3L3YarQLZWW-3o7S5pvgtLB0ydLE,16625
|
226
|
-
runbooks/inventory/find_cfn_drift_detection.py,sha256=
|
227
|
-
runbooks/inventory/find_cfn_orphaned_stacks.py,sha256=
|
228
|
-
runbooks/inventory/find_cfn_stackset_drift.py,sha256=
|
229
|
-
runbooks/inventory/find_ec2_security_groups.py,sha256=
|
230
|
-
runbooks/inventory/find_landingzone_versions.py,sha256=
|
231
|
-
runbooks/inventory/find_vpc_flow_logs.py,sha256=
|
232
|
-
runbooks/inventory/inventory.sh,sha256=
|
233
|
-
runbooks/inventory/inventory_mcp_cli.py,sha256=
|
234
|
-
runbooks/inventory/inventory_modules.py,sha256=
|
235
|
-
runbooks/inventory/list_cfn_stacks.py,sha256=
|
236
|
-
runbooks/inventory/list_cfn_stackset_operation_results.py,sha256=
|
237
|
-
runbooks/inventory/list_cfn_stackset_operations.py,sha256=
|
238
|
-
runbooks/inventory/list_cfn_stacksets.py,sha256=
|
239
|
-
runbooks/inventory/list_config_recorders_delivery_channels.py,sha256=
|
240
|
-
runbooks/inventory/list_ds_directories.py,sha256=
|
241
|
-
runbooks/inventory/list_ec2_availability_zones.py,sha256=
|
242
|
-
runbooks/inventory/list_ec2_ebs_volumes.py,sha256=
|
243
|
-
runbooks/inventory/list_ec2_instances.py,sha256=
|
244
|
-
runbooks/inventory/list_ecs_clusters_and_tasks.py,sha256=
|
245
|
-
runbooks/inventory/list_elbs_load_balancers.py,sha256=
|
246
|
-
runbooks/inventory/list_enis_network_interfaces.py,sha256=
|
247
|
-
runbooks/inventory/list_guardduty_detectors.py,sha256=
|
248
|
-
runbooks/inventory/list_iam_policies.py,sha256=
|
249
|
-
runbooks/inventory/list_iam_roles.py,sha256=
|
250
|
-
runbooks/inventory/list_iam_saml_providers.py,sha256=
|
251
|
-
runbooks/inventory/list_lambda_functions.py,sha256=
|
252
|
-
runbooks/inventory/list_org_accounts.py,sha256=
|
253
|
-
runbooks/inventory/list_org_accounts_users.py,sha256=
|
254
|
-
runbooks/inventory/list_rds_db_instances.py,sha256=
|
228
|
+
runbooks/inventory/find_cfn_drift_detection.py,sha256=68xC7PpddAA4neHb7l0lDEsPAUyoDpq1hWVfhgpGDcU,13685
|
229
|
+
runbooks/inventory/find_cfn_orphaned_stacks.py,sha256=Ovu-g6s_saB7nT6oAsEFNV9-2lJoFRj8Q_jqWS1JhQI,38010
|
230
|
+
runbooks/inventory/find_cfn_stackset_drift.py,sha256=OY1nJdP64N_6wn0qQsEn6jh85C63iJNiBYb5jwluELE,38176
|
231
|
+
runbooks/inventory/find_ec2_security_groups.py,sha256=k9pq5oK_wqN3NQbCCEXYcYn6rnHsECiKATkVjcaP3LI,31653
|
232
|
+
runbooks/inventory/find_landingzone_versions.py,sha256=IYucOczRs-MgsSHBRf_O5hnN2Ev-XZVxfnLHhkQTpu0,10220
|
233
|
+
runbooks/inventory/find_vpc_flow_logs.py,sha256=7FO_u5vVHWmIF4FabYbktNFlqMZpQhyJ1AS5cvqtdZo,65016
|
234
|
+
runbooks/inventory/inventory.sh,sha256=JNXAATslj-jOuOs0AoPRnMSr1mGz2zxyyaNtXzLskOk,24846
|
235
|
+
runbooks/inventory/inventory_mcp_cli.py,sha256=O6b0Py8bNNx_8zvqzt179wNJMQeqo4gWMumX5tPFNTQ,7659
|
236
|
+
runbooks/inventory/inventory_modules.py,sha256=Lsmh2C3Ip3ig0PrOIL2v_6kIljWCfObkNg1cul7ZqCg,286666
|
237
|
+
runbooks/inventory/list_cfn_stacks.py,sha256=tid1EZv3YGXDDITUebXbieUbFR52qrRvaFq9Vi3ez34,22883
|
238
|
+
runbooks/inventory/list_cfn_stackset_operation_results.py,sha256=2GR8cIlDgDPf0eM5smjJDKvhPCxQON3LiB64Fy1hadM,12804
|
239
|
+
runbooks/inventory/list_cfn_stackset_operations.py,sha256=zkNy5AAKIgYMzEa-Oagd3AA-PbnY2CNKpLREuTVGNkc,39977
|
240
|
+
runbooks/inventory/list_cfn_stacksets.py,sha256=oK4JbR5l7u2NtuMUzaUijVlrqHcOypMI_DQ1bw3I14o,21776
|
241
|
+
runbooks/inventory/list_config_recorders_delivery_channels.py,sha256=FNzLGH9HZFEBORUfTuU3ZXdjdAu4erwTwsJSx2lxJFg,37453
|
242
|
+
runbooks/inventory/list_ds_directories.py,sha256=WJTfuN-cj2z75-43i3oD_c7R7GUYLoys6TTIE9NAYZE,19564
|
243
|
+
runbooks/inventory/list_ec2_availability_zones.py,sha256=g1rPF0ItPtXHTKY82ZXKH6S8orQqP9QFoNxxM45qNWo,12852
|
244
|
+
runbooks/inventory/list_ec2_ebs_volumes.py,sha256=yZJ0ePz9R1FEvk8r6exvmyOvucMhp1nEaBWjQqK2BO0,9359
|
245
|
+
runbooks/inventory/list_ec2_instances.py,sha256=5i4DRIcLbrqyzb9nzA49Iaj_eqne3kfXmLtI-JAgWKk,19030
|
246
|
+
runbooks/inventory/list_ecs_clusters_and_tasks.py,sha256=lR4JMIbMIxnllKVX2c9uqseDkhhLOPw282N3IWWN7Gw,30659
|
247
|
+
runbooks/inventory/list_elbs_load_balancers.py,sha256=8y-e1hW3NCgm3OvthanchfZPlJcM0WTc3riaw0STqQk,20763
|
248
|
+
runbooks/inventory/list_enis_network_interfaces.py,sha256=VpaL4Co_jbQW51NgjBrIz3UVp6fsBFbImmNOGZBGzbg,25880
|
249
|
+
runbooks/inventory/list_guardduty_detectors.py,sha256=W3WuE14ONM-hK_nONkW4dH-g2_mOq5fVWluplAaG_L0,31625
|
250
|
+
runbooks/inventory/list_iam_policies.py,sha256=p8PjRlnULQFvVJx8euzrmrxJDXCvTLvtEHObxRVd-7U,18313
|
251
|
+
runbooks/inventory/list_iam_roles.py,sha256=zjjMC5FxQdy5giGYRaF_AIUgUKZ6xWjhyVaXEZpwuMI,22114
|
252
|
+
runbooks/inventory/list_iam_saml_providers.py,sha256=SYpmPt1zzXT2j5MATkxLJsbk12Hv3wsMCAd3qjB2pMw,16765
|
253
|
+
runbooks/inventory/list_lambda_functions.py,sha256=4RNqkZMMUiSQK51klcZIcTRPriQYJvSmFg81utyiXLg,43192
|
254
|
+
runbooks/inventory/list_org_accounts.py,sha256=JR2loIQ65GOuRIHGMxASU9Dgm4KROwhZq20Xidlym-c,17758
|
255
|
+
runbooks/inventory/list_org_accounts_users.py,sha256=KE2jHPYpMPUEcPrfkcbzCxGZQlNCi0FUSmUXLbWnnr4,18393
|
256
|
+
runbooks/inventory/list_rds_db_instances.py,sha256=6MWiXgSysZ61SCbaWCSFK37n8RDq1B8yfazewE-yegM,17511
|
255
257
|
runbooks/inventory/list_rds_snapshots_aggregator.py,sha256=jNzuMLSOLZ4UKOh-ilSnhOxCwMJkjeIVpaLGnRtT0Uo,32442
|
256
|
-
runbooks/inventory/list_route53_hosted_zones.py,sha256=
|
257
|
-
runbooks/inventory/list_servicecatalog_provisioned_products.py,sha256=
|
258
|
-
runbooks/inventory/list_sns_topics.py,sha256
|
259
|
-
runbooks/inventory/list_ssm_parameters.py,sha256=
|
260
|
-
runbooks/inventory/list_vpc_subnets.py,sha256=
|
261
|
-
runbooks/inventory/list_vpcs.py,sha256=
|
262
|
-
runbooks/inventory/mcp_inventory_validator.py,sha256=
|
263
|
-
runbooks/inventory/mcp_vpc_validator.py,sha256=
|
264
|
-
runbooks/inventory/organizations_discovery.py,sha256=
|
265
|
-
runbooks/inventory/
|
258
|
+
runbooks/inventory/list_route53_hosted_zones.py,sha256=fryQETYFFjdKUgNZx18ln21F8dfmr7uVYhyCxvub8_w,13638
|
259
|
+
runbooks/inventory/list_servicecatalog_provisioned_products.py,sha256=ESTaoXQalFJWHX_ZsSNqjTKpXeThQXVWN_ITX_xgjME,27771
|
260
|
+
runbooks/inventory/list_sns_topics.py,sha256=30W2CgcTrUKPNDa3hzVVNgKANgN_PQbabrX2dp5fUPE,15061
|
261
|
+
runbooks/inventory/list_ssm_parameters.py,sha256=fYgWh6Via2e-bStyy6y1sGiwty_trjlsfl4gZ1dJ27Q,21012
|
262
|
+
runbooks/inventory/list_vpc_subnets.py,sha256=GujMff59hAVawvVDJXupjqItXwjEFJWErMTKORWZnK8,19112
|
263
|
+
runbooks/inventory/list_vpcs.py,sha256=RWuJfho0uCGe_Y6A0f7s4wF8NmuTxDOdP2TVK4SINU0,18705
|
264
|
+
runbooks/inventory/mcp_inventory_validator.py,sha256=7qSl8xxEZezteGZaS3Hhx6Pol1rz8pJPvLviowC75b8,128351
|
265
|
+
runbooks/inventory/mcp_vpc_validator.py,sha256=xDnh7sP6y1HfNq2biqyi6yPon9WYWgVFVUVZeYFdB9U,42225
|
266
|
+
runbooks/inventory/organizations_discovery.py,sha256=vvCKgftrRHnCRc823XcqpYGtDSxeiKZXgkOm5HuI5A4,66530
|
267
|
+
runbooks/inventory/organizations_utils.py,sha256=AkuloxPYfUiK-Y_hlM7gQGWfWbnrPyIJvwvfAhL0TOU,21531
|
268
|
+
runbooks/inventory/output_formatters.py,sha256=DDMraGl0dmRdAhAXOzBkRZbZONUvBoHNQSw6KcI5JlE,16193
|
269
|
+
runbooks/inventory/recover_cfn_stack_ids.py,sha256=Bq-NuLU4bRXMWP29o4O_8PbtwUveXawNkPzFLJc-9t4,8652
|
266
270
|
runbooks/inventory/requirements.txt,sha256=mUk3CJ8b4A38n2suSSwHXRtJp-D4L4GgMe3S8LPzOWo,194
|
267
271
|
runbooks/inventory/rich_inventory_display.py,sha256=r9KkGRBugkEoXAg7RPrw67JwRUYND-AjImJYEmOxFns,16909
|
268
|
-
runbooks/inventory/run_on_multi_accounts.py,sha256=
|
272
|
+
runbooks/inventory/run_on_multi_accounts.py,sha256=LrsFkcBDpXV4VAAUuD0k4FwT6xCuZJVlDRz021J22aQ,9320
|
273
|
+
runbooks/inventory/tag_coverage.py,sha256=-wqsZ_dqCVa8Saockjjg0iqE2Vrsa0s27-8LbO6UmAY,18379
|
269
274
|
runbooks/inventory/unified_validation_engine.py,sha256=hAnQD98HbpwTH5OclMaHP2G_vRfxAO-jZ28Vlp8PTcU,58208
|
270
|
-
runbooks/inventory/
|
275
|
+
runbooks/inventory/validation_utils.py,sha256=GpBSqERFGVF041bsO8_xLPquHNW1oFj0ZEDKwWss-7I,13199
|
276
|
+
runbooks/inventory/verify_ec2_security_groups.py,sha256=VTylAnCygxYgN25s8WHipsWWfjQBXXqucxi6EKg4lFc,68913
|
271
277
|
runbooks/inventory/vpc_analyzer.py,sha256=ICKIVHvL4AAcCzp6WAvej4_g28pcXLWvpJ9a-p8WQkM,86203
|
272
|
-
runbooks/inventory/vpc_architecture_validator.py,sha256=
|
273
|
-
runbooks/inventory/vpc_dependency_analyzer.py,sha256=
|
278
|
+
runbooks/inventory/vpc_architecture_validator.py,sha256=3ejBhPKZdwOkmlxYqHWYGHtkTQw019lPEjpw9Q6QhMc,36979
|
279
|
+
runbooks/inventory/vpc_dependency_analyzer.py,sha256=pabmUDLUu4URdi4-b2-HboCHdyI-90KQda-nle4Wr7M,36334
|
274
280
|
runbooks/inventory/vpc_flow_analyzer.py,sha256=N1oJiHPTfFxX4UUWlLdvmalwbOoDnXjSgEI_sFQjwwM,41753
|
275
281
|
runbooks/inventory/LandingZone/delete_lz.py,sha256=hMwv-T8RTjQQdx9oLelABibFHGD9TFR0xkI_Hgfabw0,48920
|
276
282
|
runbooks/inventory/Tests/common_test_data.py,sha256=FLrOTY3F8NATvBRmi0hUeqFMp3yzAJepYGXrcYlSjeg,180920
|
@@ -278,21 +284,22 @@ runbooks/inventory/Tests/common_test_functions.py,sha256=WKeLHuAclroH1Jhc2RyDU9L
|
|
278
284
|
runbooks/inventory/Tests/script_test_data.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
279
285
|
runbooks/inventory/Tests/setup.py,sha256=hig677ZZWySuWa5nlL1McAjLR3JMaFP1w6ysS9fISeg,698
|
280
286
|
runbooks/inventory/Tests/src.py,sha256=5JhsRWGkrukMa8vGXbei64z_0j9K7c7uNmHk-TK8ZXE,641
|
281
|
-
runbooks/inventory/Tests/test_Inventory_Modules.py,sha256=
|
282
|
-
runbooks/inventory/Tests/test_cfn_describe_stacks.py,sha256=
|
283
|
-
runbooks/inventory/Tests/test_ec2_describe_instances.py,sha256=
|
284
|
-
runbooks/inventory/Tests/test_lambda_list_functions.py,sha256=
|
287
|
+
runbooks/inventory/Tests/test_Inventory_Modules.py,sha256=EnOkvPYC3MxqeO_-J_VRBpm7CBKbnesxXcBclK_cdn8,2907
|
288
|
+
runbooks/inventory/Tests/test_cfn_describe_stacks.py,sha256=1tKoH1JBA6YFm5MD0eY-qY4L-Wjcjc_f8yX86Uj_evo,8438
|
289
|
+
runbooks/inventory/Tests/test_ec2_describe_instances.py,sha256=ziX5FKcJ6Vz9-A3BrVgX4zCBieO14VbzCNX0gbOGpIg,9204
|
290
|
+
runbooks/inventory/Tests/test_lambda_list_functions.py,sha256=xDO6l8-LZfBhsLVIWAqhAMm1d61dbatZxtK2E54x5PI,3890
|
285
291
|
runbooks/inventory/Tests/test_moto_integration_example.py,sha256=mBS6Tnr5Wd2EfzhhnbCqZxMEsPdjNPtu8PDrzsMT3JA,9357
|
286
|
-
runbooks/inventory/Tests/test_org_list_accounts.py,sha256=
|
292
|
+
runbooks/inventory/Tests/test_org_list_accounts.py,sha256=ag0jq79YIvN4B8WWF2qB6lRwKx9QmRfJuUBAKYIerGY,2959
|
287
293
|
runbooks/inventory/collectors/__init__.py,sha256=gmRyAeXqZt-0KgBD4eh77zQs-dcxpKVci0470yZInMg,1101
|
288
294
|
runbooks/inventory/collectors/aws_comprehensive.py,sha256=VTApj1J6LVgbDaCEFqPTf6og1uGN4Ud-XjB8xtoGNJo,17750
|
289
|
-
runbooks/inventory/collectors/aws_compute.py,sha256=
|
290
|
-
runbooks/inventory/collectors/aws_management.py,sha256=
|
295
|
+
runbooks/inventory/collectors/aws_compute.py,sha256=f_yNJedWyXWXg8089mNVwLGnQB9IZiTuFPfe3uC5_ow,23484
|
296
|
+
runbooks/inventory/collectors/aws_management.py,sha256=zhUfUPUZH9_tqu8Fx4iyWvueygy7unMPbY63IrMr-cM,34707
|
291
297
|
runbooks/inventory/collectors/aws_networking.py,sha256=mUYjWK6hJsgpJLc3YgNu_eNnOgZHOaVYmXyjTmNUefk,27179
|
292
298
|
runbooks/inventory/collectors/base.py,sha256=TzuIeVoUE0ri2OISzmKZ1_C0EchEswit_eqAkKlObs4,7446
|
293
299
|
runbooks/inventory/collectors/enterprise_scale.py,sha256=hsuN3DIbVbBwzLdHeYYPm_uH5AwN_HZRGVIl0RHwrmA,10968
|
294
300
|
runbooks/inventory/core/__init__.py,sha256=kCH8dKMGp3bAYNPQI7OegiQdglV0G1k36gUtAKT6avE,562
|
295
|
-
runbooks/inventory/core/collector.py,sha256=
|
301
|
+
runbooks/inventory/core/collector.py,sha256=uFCgQYaP7tAsafVL6hPgDpc7aArDtsyy98kzUQAvkfc,148705
|
302
|
+
runbooks/inventory/core/concurrent_paginator.py,sha256=hH1rWxho0YYmh926Pc_cxhXt0G7FdSC5uIkbGT86F5A,16800
|
296
303
|
runbooks/inventory/core/formatter.py,sha256=6xYuYR9eSR-F9RGQhgDeRXI0GzGVDFC0sAUxTPp5dWU,13025
|
297
304
|
runbooks/inventory/models/__init__.py,sha256=LjW8NAHcDeBFvjXjAZwoo73xwQHid8f1-FiEn376omc,788
|
298
305
|
runbooks/inventory/models/account.py,sha256=gsR0o-bHCpCkO_weY3D0cs87FsaysmJmuQhlc2wnCgo,7161
|
@@ -303,7 +310,7 @@ runbooks/inventory/utils/aws_helpers.py,sha256=rg1L69An3PLVWrTTiHGjL29Z8N51rOVYL
|
|
303
310
|
runbooks/inventory/utils/threading_utils.py,sha256=ckizvb0QSWx1xkDanvaoUOCHaXOm2E6Abg1VQFxfJrU,16067
|
304
311
|
runbooks/inventory/utils/validation.py,sha256=HoQmEr9CSEfS1yF0uyCAW5TKlG-u9-t-YRouThSBxeA,19803
|
305
312
|
runbooks/mcp/__init__.py,sha256=C-cYgKSqFeatGOjtQjW5j4Bj9XPUcksRdDZyiSj4XSQ,1023
|
306
|
-
runbooks/mcp/integration.py,sha256=
|
313
|
+
runbooks/mcp/integration.py,sha256=BO-Z6L-kbWXhjz18QLRIa6W5AT84nI_RQvuJRRHH6nQ,28861
|
307
314
|
runbooks/metrics/dora_metrics_engine.py,sha256=h9W9tY6AuiXQSs9_hq_w0hb8ci_u6wJIa_0dmltZXDQ,52997
|
308
315
|
runbooks/monitoring/performance_monitor.py,sha256=cadlO-avwTVekh7aOxjwxXb-nr3xsMxbiXYOTlx2W_k,16641
|
309
316
|
runbooks/operate/README.md,sha256=kdtU_tEpvYhhY5uqZVupgv8OQnt8CVfU5YCo7yPlYKY,12347
|
@@ -330,31 +337,31 @@ runbooks/operate/vpc_operations.py,sha256=JukDnasOIh2VjVkSShoJjgtQ1d1v5v7OvdO4vp
|
|
330
337
|
runbooks/remediation/README.md,sha256=8RuAqAvrhw8VLKw1HTUI1H6ZZfk6PMnrQmhEVH9qeJg,14536
|
331
338
|
runbooks/remediation/__init__.py,sha256=JSPav84-avCg7mZPD-dI0_lh12MjE5wKllpzHqxhQws,3490
|
332
339
|
runbooks/remediation/acm_cert_expired_unused.py,sha256=_SfttBHKMBfXNtI1006Ci1dCYDgqhCEGGI5Ua3RvQGk,3541
|
333
|
-
runbooks/remediation/acm_remediation.py,sha256=
|
340
|
+
runbooks/remediation/acm_remediation.py,sha256=ynLPCE6cuch-sAFTBsFcHivC4RdejBUEaWStwYAK5w0,38940
|
334
341
|
runbooks/remediation/api_gateway_list.py,sha256=7RyTSmmhQaezNt9Ksh_BktSAPaQ7DGKQeBviqbkEdS0,7180
|
335
342
|
runbooks/remediation/base.py,sha256=TOJQa8GGLYnQAmjT7-b3ef6Q4FyeBiNGMcG3mOoa8nY,24858
|
336
|
-
runbooks/remediation/cloudtrail_remediation.py,sha256=
|
343
|
+
runbooks/remediation/cloudtrail_remediation.py,sha256=L0QnQegEeC2bYAxFKrxnP-zJ6tYmKnyhZSGUTpWu5_U,38506
|
337
344
|
runbooks/remediation/cloudtrail_s3_modifications.py,sha256=DaN6DmvTgZk4D2QlxXEJ4yUc1m1oi7U1myNX7krA00Q,13147
|
338
345
|
runbooks/remediation/cognito_active_users.py,sha256=ZKtludgCL0ufWiWpiodfD8DNRKSiIMWcQeBBBANH4o8,2973
|
339
|
-
runbooks/remediation/cognito_remediation.py,sha256=
|
346
|
+
runbooks/remediation/cognito_remediation.py,sha256=H5ZPAthQfHGZDE__I23gbFpFLx06nDfTP1TyW4cVDe0,37070
|
340
347
|
runbooks/remediation/cognito_user_password_reset.py,sha256=1pBLS9Ccdu8ohflGcbsBI-HLKLbNYsU39sijielAcQk,6902
|
341
348
|
runbooks/remediation/commons.py,sha256=_-TmbUmyhpvj3LiZlJiD5HfuAX6BkefC9S3j2t-MoKA,17343
|
342
349
|
runbooks/remediation/commvault_ec2_analysis.py,sha256=7AEvnQIHBuBfQEgUq-JHQ2VYiIq2UlWBkYw8viKfx9o,13710
|
343
350
|
runbooks/remediation/dynamodb_optimize.py,sha256=8MAeIX9fUejIYH1cKFHD9-me5lB9DoiyPKg4M0SeR4Q,5989
|
344
|
-
runbooks/remediation/dynamodb_remediation.py,sha256=
|
351
|
+
runbooks/remediation/dynamodb_remediation.py,sha256=kffsbyCwnmVyNRDrlCDzSuiD8WHHOUn1Vahk0ZLaMc4,30976
|
345
352
|
runbooks/remediation/dynamodb_server_side_encryption.py,sha256=wnXwRcXzR3dFpcsA-5CjyCvPBixOiflN2H8Rfdp8Wao,3802
|
346
353
|
runbooks/remediation/ec2_public_ips.py,sha256=BcTi7QGihyy5brPa2zJSiqk0fcFYok5YO96B6GrEf68,5331
|
347
|
-
runbooks/remediation/ec2_remediation.py,sha256=
|
354
|
+
runbooks/remediation/ec2_remediation.py,sha256=CbZy-o946QZWNhtRoM9Ie_P8EqZ8_RK_qx2RQt97AGI,37139
|
348
355
|
runbooks/remediation/ec2_subnet_disable_auto_ip_assignment.py,sha256=UeXqp2qTCj2oXwGKXH_6H1PcBQANjMAXXIKADH1kOd4,2723
|
349
356
|
runbooks/remediation/ec2_unattached_ebs_volumes.py,sha256=Nb7ElBQZvVU5zxiI7VruujSTxhPr4OHIAFZEI-2MKBo,19164
|
350
357
|
runbooks/remediation/ec2_unused_security_groups.py,sha256=YKG4-UBipJEdoMvy1Pt5-j3CdK-4LlmdXSJ3wyxZdNA,8512
|
351
358
|
runbooks/remediation/kms_enable_key_rotation.py,sha256=OTPZmHtBVAFeaf8vBXqYsNJZBfzD79okFaQYk02lSTk,27587
|
352
|
-
runbooks/remediation/kms_remediation.py,sha256=
|
359
|
+
runbooks/remediation/kms_remediation.py,sha256=QR2cBC3ndhOigeDex26Hf_6-ORHNu1GVc2UW5QTtDDI,29485
|
353
360
|
runbooks/remediation/lambda_list.py,sha256=B5dQzg_nWXbuC-h0TuCE1hH26Rsm5jeNkmRZrbYGekM,10925
|
354
|
-
runbooks/remediation/lambda_remediation.py,sha256=
|
361
|
+
runbooks/remediation/lambda_remediation.py,sha256=lEsylYoQYP14e1tYTacicGZwG0yrDJ2SmdMkEHgQ5nk,42657
|
355
362
|
runbooks/remediation/multi_account.py,sha256=JO0HrfzSgcXmBtKjoiqv1FqtQyIrf-puAKCE_ld7ZJc,26491
|
356
363
|
runbooks/remediation/rds_instance_list.py,sha256=HoDK0UwCT4uAv5RiJ4RxStXspetTPLyDaeXOa_icCwk,8477
|
357
|
-
runbooks/remediation/rds_remediation.py,sha256=
|
364
|
+
runbooks/remediation/rds_remediation.py,sha256=kDQBXKPUzzMU-fwGXTcdHQzj7o14USoAkQS7isKz2SA,37173
|
358
365
|
runbooks/remediation/rds_snapshot_list.py,sha256=dXwbIv9_aMJokmcYDjMP5VdL_oDH-PiSpqKlQnCIqNk,17589
|
359
366
|
runbooks/remediation/remediation_cli.py,sha256=ejXjHdHQoCSYknfqkiK9E6UjY21SgxhsdAjZXRbHmlY,23275
|
360
367
|
runbooks/remediation/requirements.txt,sha256=xwrVRq4cK8GbX9cwt_8TLLj8kCJHQ06tqBrH_wukMzE,2091
|
@@ -367,7 +374,7 @@ runbooks/remediation/s3_encryption.py,sha256=4s4vDgdPT1Lply2Gp4QjPoRwB7Rm63zDHIQ
|
|
367
374
|
runbooks/remediation/s3_force_ssl_secure_policy.py,sha256=j-p0T5xjk8l4wIgtW07yYuoWIYhcDyVL_UgdrdNGPDY,5219
|
368
375
|
runbooks/remediation/s3_list.py,sha256=PB7MqI13GYR6-PhYtqf3MIdURWbd1dVKdSSDUoubmVE,6313
|
369
376
|
runbooks/remediation/s3_object_search.py,sha256=8MnbwVwz2qZ0IK_C_uzMwNCfMnkB24d8JgrIN03lqSo,7904
|
370
|
-
runbooks/remediation/s3_remediation.py,sha256=
|
377
|
+
runbooks/remediation/s3_remediation.py,sha256=VMaJg1mPDqmHBGIlT-gG6QLP2xyagxwvGUEn1NCifGA,33066
|
371
378
|
runbooks/remediation/scan_for_phrase.py,sha256=FgTpDXnLg1tdnU6aYTmvOZu9CMjZMsfrZCNOSLqL4P4,18958
|
372
379
|
runbooks/remediation/universal_account_discovery.py,sha256=X-H7ZOwClyR0IDdjCJHj-KIRAFobp_W3erjZuea6uoE,13932
|
373
380
|
runbooks/remediation/vpc_remediation.py,sha256=FDLR1oY27WN227kXJnpn1vqf2FtJ_f1ra4RocWxJ6-8,20716
|
@@ -453,7 +460,7 @@ runbooks/vpc/analyzer.py,sha256=inxwiyQJMdbc5SzXH2AAFMxQfRosMg2QDT1YDmUMegU,2607
|
|
453
460
|
runbooks/vpc/cleanup_wrapper.py,sha256=Q0fu0MVX241sDujU15lAWcSGKX3HPKBmPszPseFIMTk,45021
|
454
461
|
runbooks/vpc/cli_cloudtrail_commands.py,sha256=PX0S_RxsdYS1hoqzcXQo7DoINKzA_kKdaoOJ_ZGLeGc,15901
|
455
462
|
runbooks/vpc/cli_mcp_validation_commands.py,sha256=ZMGgDLA85UEaGunzrnHlETIJ2ABQRzMcvwobmHP4Y6A,19466
|
456
|
-
runbooks/vpc/cloudtrail_audit_integration.py,sha256
|
463
|
+
runbooks/vpc/cloudtrail_audit_integration.py,sha256=RfxZVWXmsPPEJpViCYy0bTwCUAzvVYLW26QPvtUu6Zc,30411
|
457
464
|
runbooks/vpc/config.py,sha256=lSMXkCzcWB6R9LP-0tO9wpv1nk9OqEbb_tY-icweZj8,21443
|
458
465
|
runbooks/vpc/cost_engine.py,sha256=HhTOdv1WeXYFBmSlC7385tLxHVBQWdhOidxbNWs0L1A,46971
|
459
466
|
runbooks/vpc/cost_explorer_integration.py,sha256=gxqxQjCvt1m5_Lgmfx0QADbCIAsixLalF45p7VdlyVM,25427
|
@@ -481,9 +488,9 @@ runbooks/vpc/tests/test_cli_integration.py,sha256=OvsSNd9gFlkzdyDf8tUZGES93TTZR6
|
|
481
488
|
runbooks/vpc/tests/test_config.py,sha256=GIX7cFnj7xUxxrYX49mV9hYmx60Dcd_Bu-cpb90oXdE,17484
|
482
489
|
runbooks/vpc/tests/test_cost_engine.py,sha256=dR7HTRKDrTduRg5Mr-T7MbP47D67jbKggZ7gyBirfK4,20941
|
483
490
|
runbooks/vpc/tests/test_networking_wrapper.py,sha256=gmxnVzQJ-7rTsghzNLmIM-QZo9GUGyIhHqE1g8gkEkw,20623
|
484
|
-
runbooks-1.1.
|
485
|
-
runbooks-1.1.
|
486
|
-
runbooks-1.1.
|
487
|
-
runbooks-1.1.
|
488
|
-
runbooks-1.1.
|
489
|
-
runbooks-1.1.
|
491
|
+
runbooks-1.1.10.dist-info/licenses/LICENSE,sha256=WAQUYGIkLJh6CPrlZgr0IsbRODa0EZ6fboBXGjfWggs,11375
|
492
|
+
runbooks-1.1.10.dist-info/METADATA,sha256=YQcyvFnWNjsbKNJ_snuC4RlL-DFrnLyLHBsfjbqQ6g4,15754
|
493
|
+
runbooks-1.1.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
494
|
+
runbooks-1.1.10.dist-info/entry_points.txt,sha256=WahHUYcgE2syXEc0MkoUdctLMxs0zjBWi_vWb5dRK8M,295
|
495
|
+
runbooks-1.1.10.dist-info/top_level.txt,sha256=A0zTBjuF7THC6vnJU7StN7ihtUoh31lZSfwyWpWP2YE,18
|
496
|
+
runbooks-1.1.10.dist-info/RECORD,,
|