runbooks 1.1.5__py3-none-any.whl → 1.1.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.
- runbooks/__init__.py +1 -1
- runbooks/cli/commands/finops.py +29 -5
- runbooks/cli/commands/inventory.py +40 -87
- runbooks/common/accuracy_validator.py +6 -12
- runbooks/common/cli_decorators.py +61 -0
- runbooks/common/mcp_integration.py +38 -7
- runbooks/common/rich_utils.py +116 -2
- runbooks/inventory/CLAUDE.md +1 -1
- runbooks/inventory/aws_decorators.py +2 -3
- runbooks/inventory/check_cloudtrail_compliance.py +2 -4
- runbooks/inventory/check_controltower_readiness.py +152 -151
- runbooks/inventory/check_landingzone_readiness.py +85 -84
- runbooks/inventory/core/formatter.py +11 -0
- runbooks/inventory/draw_org_structure.py +8 -9
- runbooks/inventory/ec2_vpc_utils.py +2 -2
- runbooks/inventory/find_cfn_drift_detection.py +5 -7
- runbooks/inventory/find_cfn_orphaned_stacks.py +7 -9
- runbooks/inventory/find_cfn_stackset_drift.py +5 -6
- runbooks/inventory/find_ec2_security_groups.py +48 -42
- runbooks/inventory/find_landingzone_versions.py +4 -6
- runbooks/inventory/find_vpc_flow_logs.py +7 -9
- runbooks/inventory/inventory_modules.py +103 -91
- runbooks/inventory/list_cfn_stacks.py +9 -10
- runbooks/inventory/list_cfn_stackset_operation_results.py +1 -3
- runbooks/inventory/list_cfn_stackset_operations.py +79 -57
- runbooks/inventory/list_cfn_stacksets.py +8 -10
- runbooks/inventory/list_config_recorders_delivery_channels.py +49 -39
- runbooks/inventory/list_ds_directories.py +65 -53
- runbooks/inventory/list_ec2_availability_zones.py +2 -4
- runbooks/inventory/list_ec2_ebs_volumes.py +32 -35
- runbooks/inventory/list_ec2_instances.py +23 -28
- runbooks/inventory/list_ecs_clusters_and_tasks.py +26 -34
- runbooks/inventory/list_elbs_load_balancers.py +22 -20
- runbooks/inventory/list_enis_network_interfaces.py +26 -33
- runbooks/inventory/list_guardduty_detectors.py +2 -4
- runbooks/inventory/list_iam_policies.py +2 -4
- runbooks/inventory/list_iam_roles.py +5 -7
- runbooks/inventory/list_iam_saml_providers.py +4 -6
- runbooks/inventory/list_lambda_functions.py +38 -38
- runbooks/inventory/list_org_accounts.py +6 -8
- runbooks/inventory/list_org_accounts_users.py +55 -44
- runbooks/inventory/list_rds_db_instances.py +31 -33
- runbooks/inventory/list_route53_hosted_zones.py +3 -5
- runbooks/inventory/list_servicecatalog_provisioned_products.py +37 -41
- runbooks/inventory/list_sns_topics.py +2 -4
- runbooks/inventory/list_ssm_parameters.py +4 -7
- runbooks/inventory/list_vpc_subnets.py +2 -4
- runbooks/inventory/list_vpcs.py +7 -10
- runbooks/inventory/mcp_inventory_validator.py +5 -3
- runbooks/inventory/organizations_discovery.py +8 -4
- runbooks/inventory/recover_cfn_stack_ids.py +7 -8
- runbooks/inventory/requirements.txt +0 -1
- runbooks/inventory/rich_inventory_display.py +2 -2
- runbooks/inventory/run_on_multi_accounts.py +3 -5
- runbooks/inventory/unified_validation_engine.py +3 -2
- runbooks/inventory/verify_ec2_security_groups.py +1 -1
- runbooks/inventory/vpc_analyzer.py +3 -2
- runbooks/inventory/vpc_dependency_analyzer.py +2 -2
- runbooks/validation/terraform_drift_detector.py +16 -5
- {runbooks-1.1.5.dist-info → runbooks-1.1.7.dist-info}/METADATA +3 -4
- {runbooks-1.1.5.dist-info → runbooks-1.1.7.dist-info}/RECORD +65 -65
- {runbooks-1.1.5.dist-info → runbooks-1.1.7.dist-info}/WHEEL +0 -0
- {runbooks-1.1.5.dist-info → runbooks-1.1.7.dist-info}/entry_points.txt +0 -0
- {runbooks-1.1.5.dist-info → runbooks-1.1.7.dist-info}/licenses/LICENSE +0 -0
- {runbooks-1.1.5.dist-info → runbooks-1.1.7.dist-info}/top_level.txt +0 -0
@@ -1,5 +1,5 @@
|
|
1
1
|
conftest.py,sha256=HTnQMw9wxefkvX5q4yG8EUH2qVLJBnC9QCt3UCltw7I,586
|
2
|
-
runbooks/__init__.py,sha256=
|
2
|
+
runbooks/__init__.py,sha256=bY1oPPtiOXi-yHA1UJeOr6gwQqcxSZPl0FWSsgNU2qE,6260
|
3
3
|
runbooks/__init__.py.backup,sha256=RN_n1T2it_7bBXlA4dl8GCWAUz8XBpp5FGjGbq8uQaI,4983
|
4
4
|
runbooks/__init___optimized.py,sha256=ao5SdjsJ0T-ZsOFtEqOeEM4hnI8kgIs-8laJZsHEjp0,4011
|
5
5
|
runbooks/__main__.py,sha256=0hTPUA9KkLm_H_COqaIpNzXvC4Lv5b_XYYBV6fUFDrM,241
|
@@ -84,8 +84,8 @@ runbooks/cfat/tests/test_weight_configuration.ts,sha256=1IfMR0NCvONdprsDv0l24chd
|
|
84
84
|
runbooks/cli/__init__.py,sha256=9yb8r0P9ipQzaZZPD-NDPeQRtDVWqG7_v_2ru5wPdPU,446
|
85
85
|
runbooks/cli/registry.py,sha256=1hCARcKay2B6atgYSC7X3xGjfXC65_Ep1hJb6buJRJI,3441
|
86
86
|
runbooks/cli/commands/cfat.py,sha256=xL1WG4DmQTOwLL4I8cmnEy5Z82D91iHj0vB7FokTXbg,11041
|
87
|
-
runbooks/cli/commands/finops.py,sha256=
|
88
|
-
runbooks/cli/commands/inventory.py,sha256=
|
87
|
+
runbooks/cli/commands/finops.py,sha256=7orBGnTMbnTf_btnBHdtlaeggcQGU3u6c0f-bT6LChQ,56231
|
88
|
+
runbooks/cli/commands/inventory.py,sha256=qL3q8Cw4C6vMA9Bx25BQBShsAIIFCKO4zLrDHPRAAQs,14061
|
89
89
|
runbooks/cli/commands/operate.py,sha256=kkSDws1U4SC-5ers6nanBQbsxC6F0xY9--hicr33a3c,10235
|
90
90
|
runbooks/cli/commands/security.py,sha256=Yv3JFqfT4WNulOGtYvhhaxwZtTUOxPwCGDbaCax_KYc,10307
|
91
91
|
runbooks/cli/commands/validation.py,sha256=Vc8y7TcRkrFtdsZZoDkjZ2taS5UuH1e2hSGpRD9Q2_4,38530
|
@@ -102,13 +102,13 @@ runbooks/cloudops/monitoring_automation.py,sha256=lJ2L9T87lghgTWyb1ehoqJUMFhqB_l
|
|
102
102
|
runbooks/cloudops/notebook_framework.py,sha256=N_2rItuIkoGyPVI1PhhGT8Q_4YjnWTNz3icFONWjp4U,26461
|
103
103
|
runbooks/cloudops/security_enforcer.py,sha256=w8rZBsHiGAWZpU1UUes05f_sGnGT6ycmp8IO5f8pffw,17136
|
104
104
|
runbooks/common/__init__.py,sha256=4_t9RNNNjxyVuTCQ4rYQv1teQ-eYQ7ibAl-IC66Gkxc,4590
|
105
|
-
runbooks/common/accuracy_validator.py,sha256=
|
105
|
+
runbooks/common/accuracy_validator.py,sha256=oD6JFd73HU0FyDQWSoeeet_fknLTM1i-Z9EigNWQpNI,45203
|
106
106
|
runbooks/common/aws_pricing.py,sha256=U-DX134a3BZRw_qxX-N-bEagnHcfPk9nSqBGGaaUKqA,66018
|
107
107
|
runbooks/common/aws_pricing_api.py,sha256=jTpcGiZHIEBxo2hmrfQtTNNHgWSkPQelQcm-YyemeWc,20283
|
108
108
|
runbooks/common/aws_profile_manager.py,sha256=jJX2FqssFAcmLf6zRaLGShnSJpN1XK07w3nudUmNYXY,11865
|
109
109
|
runbooks/common/aws_utils.py,sha256=voptyeaD7E5W82vW_4yY6M5NICGF3MM7hMz3s00waqM,13190
|
110
110
|
runbooks/common/business_logic.py,sha256=D949mmH_OsMYRTuUcHvcNAaXF35KBB7D6QRQkV5q4A8,20629
|
111
|
-
runbooks/common/cli_decorators.py,sha256=
|
111
|
+
runbooks/common/cli_decorators.py,sha256=F8ejBBuD5fDZZStDe0cTjqqGQd4x0WC4Tm-4u6lZh18,8365
|
112
112
|
runbooks/common/comprehensive_cost_explorer_integration.py,sha256=DEIjPW3X4N9B_DCmit3RvGZEgsDtxjDVgQ_eS6TR5ag,43488
|
113
113
|
runbooks/common/context_logger.py,sha256=is72Mvw2QgIp-z9FXNSL-pceDhEsSklH_7QbNmGR6lQ,14757
|
114
114
|
runbooks/common/cross_account_manager.py,sha256=6-b8wfhN4MN8khjBglrqH-LvyzMmrF3VGHpRTJtLZCc,24576
|
@@ -127,7 +127,7 @@ runbooks/common/lazy_loader.py,sha256=NnKdzt8aeZg-GmHKc9OxoD4HWAZ_MkWAIvbXSAE5vc
|
|
127
127
|
runbooks/common/logger.py,sha256=fmBtqv-B-0f0ppejwt_KbUWOPQosO74JXgOcKbr0mbs,424
|
128
128
|
runbooks/common/logging_integration_helper.py,sha256=WreUzOD2inedFYUMNXayxW-OnngdFZ6imdItx6EOUZo,12777
|
129
129
|
runbooks/common/mcp_cost_explorer_integration.py,sha256=AD-ibDaYaClpdCPp7yiKqU3vqkG9T0YWs-MxESzrx78,38171
|
130
|
-
runbooks/common/mcp_integration.py,sha256=
|
130
|
+
runbooks/common/mcp_integration.py,sha256=haXtcaxBDzR8sJ8lUTdlHPAL_f3u5Ph_fdBsS2DiVZg,32315
|
131
131
|
runbooks/common/memory_optimization.py,sha256=zEZeq-Tu9f6mdtMY9UgH0Yb6_O4Uo3uCTQIx4SenUGw,20319
|
132
132
|
runbooks/common/module_cli_base.py,sha256=VYG4CyC5wXzZ7BJlxWd9AbykFe1RmJrT--BBDjKz_CM,12194
|
133
133
|
runbooks/common/organizations_client.py,sha256=LpZjFqXcA_RA2mBv9D_UF9LkzZuGOiNv8NtiTfryAOU,20758
|
@@ -136,7 +136,7 @@ runbooks/common/performance_monitor.py,sha256=YEStVON1uAlmhOVi5XK6kMytUBtKtqeELY
|
|
136
136
|
runbooks/common/performance_monitoring.py,sha256=59wy6YBejUDCVSbrtgV3s1hGRZg2n9eAq1CKzr_pAiE,17570
|
137
137
|
runbooks/common/performance_optimization_engine.py,sha256=ZqvJ69987YK_-1zEpF8pIvuh6rsu_7ERtgv9Y2mbW8o,48603
|
138
138
|
runbooks/common/profile_utils.py,sha256=i_UD3y5kh627YZl706x1qKKz4rKw6YrbdntrOS5DpZw,20456
|
139
|
-
runbooks/common/rich_utils.py,sha256=
|
139
|
+
runbooks/common/rich_utils.py,sha256=gZ1MqB5s76pNacZIwCVmgfbI4FQTIL3nTPhc6gpQqp4,54794
|
140
140
|
runbooks/common/sre_performance_suite.py,sha256=qXiyUoHQTL_p4Z9-cPQ-7S2YDQ-1SwWHXXKfaurFEZc,23883
|
141
141
|
runbooks/enterprise/__init__.py,sha256=QPhTFlBC53plDrsSWZxqBezIOsticcvgruO8jRI7V4c,1854
|
142
142
|
runbooks/enterprise/error_handling.py,sha256=0rorz2L3nWl3xMDMiEMgNj8CvM7efABnEIzkMEg4B2g,14505
|
@@ -209,68 +209,68 @@ runbooks/integration/__init__.py,sha256=HDxKpcJPczaVMt1fqBt0J8xWE9YfF8XBuLY-dila
|
|
209
209
|
runbooks/integration/mcp_integration.py,sha256=48Za-_bIWi85DtPbVX1m8DslHJDVlBRM1egSciv3ckA,82898
|
210
210
|
runbooks/inventory/.gitignore,sha256=qqVQodfb6iNuPRM7fsl7lvqxrJaatKNQqQmX7s1_PPg,5563
|
211
211
|
runbooks/inventory/ArgumentsClass.py,sha256=BwquO-iYZNS_fVxgASrksanzoAN_NPCzRpTAyohRLX0,8621
|
212
|
-
runbooks/inventory/CLAUDE.md,sha256=
|
212
|
+
runbooks/inventory/CLAUDE.md,sha256=ngZ76N8ow7aFOmBbvanvrC8x6PJOXO_kNzC48NSQTyQ,32055
|
213
213
|
runbooks/inventory/README.md,sha256=GwkcciZGFTHPb1No-VHhCSu977N1elY7_Ll46xG-yY8,43879
|
214
214
|
runbooks/inventory/__init__.py,sha256=KEdPfmE5SeqC9t81-dpxS5vWeqCdbGb9uWkVxIyNgX0,2644
|
215
215
|
runbooks/inventory/account_class.py,sha256=wvYNeiXHq6tk8Pqa95Aa91zAtuBXcnE51NonzDueuaM,26361
|
216
216
|
runbooks/inventory/all_my_instances_wrapper.py,sha256=B_nHnXOFle6_LU1YnZd38uMZNV6pIONh4EvCyO-lwzw,5723
|
217
|
-
runbooks/inventory/aws_decorators.py,sha256=
|
218
|
-
runbooks/inventory/check_cloudtrail_compliance.py,sha256=
|
219
|
-
runbooks/inventory/check_controltower_readiness.py,sha256=
|
220
|
-
runbooks/inventory/check_landingzone_readiness.py,sha256=
|
217
|
+
runbooks/inventory/aws_decorators.py,sha256=ZqGJDBKVzp_Sj_-wlTvOEQF6Et0AYRgUsK0-G0cG_Wo,8596
|
218
|
+
runbooks/inventory/check_cloudtrail_compliance.py,sha256=w_IEVgxasTg-yrTfUub_zM3Iofl2n1UkDBvKGnM-cB8,33620
|
219
|
+
runbooks/inventory/check_controltower_readiness.py,sha256=ekhUNX-dBYqc5FF9MgzaXuB36VWBPbh7jaT7hvDurZ0,55706
|
220
|
+
runbooks/inventory/check_landingzone_readiness.py,sha256=wO2lNIeRnaVZNrTor1uoNlk23pHaPb2x9UOXx4RzAEw,35928
|
221
221
|
runbooks/inventory/cloud_foundations_integration.py,sha256=3FFehheuISTf9GZZ_FSgVJKL6lh813nlWdqPyDd7v5Q,15478
|
222
222
|
runbooks/inventory/discovery.md,sha256=oB5NyZ7atB4jbKxyCD_uvIPJnQaOjaGxbzEeKGh2xsc,12111
|
223
|
-
runbooks/inventory/draw_org_structure.py,sha256=
|
223
|
+
runbooks/inventory/draw_org_structure.py,sha256=CodjRUcxMOO1DMFUEKDR6RLBiR_D73Wi82IPFHdnbyk,29658
|
224
224
|
runbooks/inventory/drift_detection_cli.py,sha256=FJ4QZpaKY0gIIz0A3FK471HU3DceCq6DLOa4IJbvatg,12018
|
225
|
-
runbooks/inventory/ec2_vpc_utils.py,sha256=
|
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=
|
225
|
+
runbooks/inventory/ec2_vpc_utils.py,sha256=Lx9s_OYQ0eoeads3L3YarQLZWW-3o7S5pvgtLB0ydLE,16625
|
226
|
+
runbooks/inventory/find_cfn_drift_detection.py,sha256=OSHHiyDDy-lrbObu0VaGhdZOMibdq1eBK0tcpLCW-Qc,13059
|
227
|
+
runbooks/inventory/find_cfn_orphaned_stacks.py,sha256=NZZjqdmyuZMbrkGyLMOOOQqA7qkm94AFwzvL2Pbcg_4,37921
|
228
|
+
runbooks/inventory/find_cfn_stackset_drift.py,sha256=04iZhZvd03t9j1vC6tXqbT4sMkpOEG4SFhnxTBRUspk,38068
|
229
|
+
runbooks/inventory/find_ec2_security_groups.py,sha256=vUOLjsR9qaqQwaCSm8QDUdOfkTNHJ7WSrpa7e1qxWY0,31556
|
230
|
+
runbooks/inventory/find_landingzone_versions.py,sha256=s04fEcxinOR6NQVHgr6UIGeawGURYTaoZJhU-LLv5tE,10168
|
231
|
+
runbooks/inventory/find_vpc_flow_logs.py,sha256=WVUhsmzqCSCqG7rYP8K1byNz7odXx48lh33Q7v8SlSw,64908
|
232
232
|
runbooks/inventory/inventory.sh,sha256=WXmBEpi9OpTu24US9LhW5PC-z6jSwTN0jdwlt-p3aok,23939
|
233
233
|
runbooks/inventory/inventory_mcp_cli.py,sha256=MQGHmi33y7Z4_2lwdqmQsgQp6X1N2p7LPT8OSRtpezo,7605
|
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=
|
234
|
+
runbooks/inventory/inventory_modules.py,sha256=jSkUkVTon2gWQQ7mHV7MJPzxETDT_Npm-mT8Xgos7SE,286071
|
235
|
+
runbooks/inventory/list_cfn_stacks.py,sha256=Ppx0xBK03ygaGEX4ClX1YTfSfBbWvtYooWQnSQU9nD0,22271
|
236
|
+
runbooks/inventory/list_cfn_stackset_operation_results.py,sha256=N6MKlDLCu5o2YHgTQURz5pIWt4d1oWu4GVj5M7vXfew,12779
|
237
|
+
runbooks/inventory/list_cfn_stackset_operations.py,sha256=75COMEmg-KRHDp3KZjXk1ceRFDwFHgSL0z1-6xjerKE,39256
|
238
|
+
runbooks/inventory/list_cfn_stacksets.py,sha256=4SMEpgBUK2zgyYgw4rGVc7uxJ7My4ZOxnIsbvyBft5U,21660
|
239
|
+
runbooks/inventory/list_config_recorders_delivery_channels.py,sha256=gbbHeI5kTYtDMOP5RTOtruBqg18rnTwSjorQF9pQgYI,37364
|
240
|
+
runbooks/inventory/list_ds_directories.py,sha256=esx7xWWftl4X832PF6bvjGzW09kAErMKFNVryOiyb0Q,19520
|
241
|
+
runbooks/inventory/list_ec2_availability_zones.py,sha256=uoHH1ElTRSLycS78u9HKEy4tLoSn4TK0bwwDG3Q4xbQ,12754
|
242
|
+
runbooks/inventory/list_ec2_ebs_volumes.py,sha256=I66rK8FVuMmCvOhD66moWqm_2-zpUR6nK8HZqevV1u0,9315
|
243
|
+
runbooks/inventory/list_ec2_instances.py,sha256=a57korh33ZTQ3RYiAnnsgXcde0PSrl_sbAAEu6bj4xE,19024
|
244
|
+
runbooks/inventory/list_ecs_clusters_and_tasks.py,sha256=SPiBmXz8TB9Xjvrv84i0jLeatqZQTsmANIJ2XedpGrA,30516
|
245
|
+
runbooks/inventory/list_elbs_load_balancers.py,sha256=xMohiKQscw1WtZ0CGaKmMKNNQrTnktF6DduETiWfFrA,20665
|
246
|
+
runbooks/inventory/list_enis_network_interfaces.py,sha256=ZTYwgeCLAKYlgvacMyrEZGybqPG3RBBT_GaT8tLQdnw,25836
|
247
|
+
runbooks/inventory/list_guardduty_detectors.py,sha256=63mhAZrGfzxXfE0zWLX3w4oJ9xeiU6dTpgCEMmAhm1o,31463
|
248
|
+
runbooks/inventory/list_iam_policies.py,sha256=6i53PIA-fI_EMnDTSFLBHcP4O36xtMXAqMxfOa-lUhI,18215
|
249
|
+
runbooks/inventory/list_iam_roles.py,sha256=EfM2vVVb71kZ5hzob1mVHMVcGV9hso4D-TTHTKLnM9I,22070
|
250
|
+
runbooks/inventory/list_iam_saml_providers.py,sha256=UgIzzHJM_XcXR597R_J9xLZzHFEZMV_O76LBfnvindc,16648
|
251
|
+
runbooks/inventory/list_lambda_functions.py,sha256=asf942j_iZYX_6yPu04XoN6ctclijUtF_w1NseMDwcw,43049
|
252
|
+
runbooks/inventory/list_org_accounts.py,sha256=6qzK8GnPw0i0TmPT8X70uUCmmMOj-8JX-ycXtSq6iXA,19044
|
253
|
+
runbooks/inventory/list_org_accounts_users.py,sha256=WcNkUTNALNnWNY_ghuWvHmowieD1WzmnSDEYkOtx59w,17096
|
254
|
+
runbooks/inventory/list_rds_db_instances.py,sha256=ibP8pDkdV95hnLU2n9Oal3jRt5jbvrsUTP5ncZVTX0w,17422
|
255
255
|
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=
|
256
|
+
runbooks/inventory/list_route53_hosted_zones.py,sha256=XdDC5CG-KdNQQuewiNkqZQddEKzmHYEL50rz3rAUYSM,13594
|
257
|
+
runbooks/inventory/list_servicecatalog_provisioned_products.py,sha256=KZvLVQCV-WzYl4ocT1g-TTSlrypgJOkZwHh9VxrOJU0,27663
|
258
|
+
runbooks/inventory/list_sns_topics.py,sha256=-5YdwbhFhW1Yc2EDbJo-L1aNXZRpPihw3wUA9QrFqiY,14972
|
259
|
+
runbooks/inventory/list_ssm_parameters.py,sha256=uiaDrrpCcTxlhDmp5rnAi7py-eZnlXBvFywyIZ1B_RA,20874
|
260
|
+
runbooks/inventory/list_vpc_subnets.py,sha256=pcZJOJ50hJl7Z2k3r_zCAkV0lYs5hkxhJYn9FsDvieY,18969
|
261
|
+
runbooks/inventory/list_vpcs.py,sha256=M_votkoY4k6qvESEXaMIZJZ3rtFp4Y2OLrUtfpX6H4s,18089
|
262
|
+
runbooks/inventory/mcp_inventory_validator.py,sha256=Ss6LWPekDcVeR-CnegQ-L2iJ3izv0iRQqcoIqfPr-cA,101049
|
263
263
|
runbooks/inventory/mcp_vpc_validator.py,sha256=A8zAgah9mRiOdeAa5ybd2LhPKL6ORankzGkADJaEIuE,42141
|
264
|
-
runbooks/inventory/organizations_discovery.py,sha256=
|
265
|
-
runbooks/inventory/recover_cfn_stack_ids.py,sha256=
|
266
|
-
runbooks/inventory/requirements.txt,sha256=
|
267
|
-
runbooks/inventory/rich_inventory_display.py,sha256=
|
268
|
-
runbooks/inventory/run_on_multi_accounts.py,sha256=
|
269
|
-
runbooks/inventory/unified_validation_engine.py,sha256=
|
270
|
-
runbooks/inventory/verify_ec2_security_groups.py,sha256=
|
271
|
-
runbooks/inventory/vpc_analyzer.py,sha256=
|
264
|
+
runbooks/inventory/organizations_discovery.py,sha256=TE_FJ0ZRim-3lYGkzHSAO33EGSHHhA1vkBtXRqcTQXI,66094
|
265
|
+
runbooks/inventory/recover_cfn_stack_ids.py,sha256=LEduYVKNvIuJbdoT4gUCnQzjodhzav8rQNfOTyPaKUw,8544
|
266
|
+
runbooks/inventory/requirements.txt,sha256=mUk3CJ8b4A38n2suSSwHXRtJp-D4L4GgMe3S8LPzOWo,194
|
267
|
+
runbooks/inventory/rich_inventory_display.py,sha256=r9KkGRBugkEoXAg7RPrw67JwRUYND-AjImJYEmOxFns,16909
|
268
|
+
runbooks/inventory/run_on_multi_accounts.py,sha256=Jr-15D8t_fnBWRtjcY3l_n8uvere9J4O75He0AZU5WA,9276
|
269
|
+
runbooks/inventory/unified_validation_engine.py,sha256=hAnQD98HbpwTH5OclMaHP2G_vRfxAO-jZ28Vlp8PTcU,58208
|
270
|
+
runbooks/inventory/verify_ec2_security_groups.py,sha256=vBBvW4g4QPbHmsY6m5Kw4cxLylDguTCeqV51HdgI8aA,68286
|
271
|
+
runbooks/inventory/vpc_analyzer.py,sha256=ICKIVHvL4AAcCzp6WAvej4_g28pcXLWvpJ9a-p8WQkM,86203
|
272
272
|
runbooks/inventory/vpc_architecture_validator.py,sha256=GVrWijyNjAiTJ6onQ-Y7EP2_2zUNqy7aaMzGXzvEofk,36898
|
273
|
-
runbooks/inventory/vpc_dependency_analyzer.py,sha256=
|
273
|
+
runbooks/inventory/vpc_dependency_analyzer.py,sha256=xsaBQYcwGXTZ8KhRihkxYlnRSxSd71dE3c_UiY8pN2w,36250
|
274
274
|
runbooks/inventory/vpc_flow_analyzer.py,sha256=N1oJiHPTfFxX4UUWlLdvmalwbOoDnXjSgEI_sFQjwwM,41753
|
275
275
|
runbooks/inventory/LandingZone/delete_lz.py,sha256=hMwv-T8RTjQQdx9oLelABibFHGD9TFR0xkI_Hgfabw0,48920
|
276
276
|
runbooks/inventory/Tests/common_test_data.py,sha256=FLrOTY3F8NATvBRmi0hUeqFMp3yzAJepYGXrcYlSjeg,180920
|
@@ -293,7 +293,7 @@ runbooks/inventory/collectors/base.py,sha256=TzuIeVoUE0ri2OISzmKZ1_C0EchEswit_eq
|
|
293
293
|
runbooks/inventory/collectors/enterprise_scale.py,sha256=hsuN3DIbVbBwzLdHeYYPm_uH5AwN_HZRGVIl0RHwrmA,10968
|
294
294
|
runbooks/inventory/core/__init__.py,sha256=kCH8dKMGp3bAYNPQI7OegiQdglV0G1k36gUtAKT6avE,562
|
295
295
|
runbooks/inventory/core/collector.py,sha256=gc-JpL23cIjnDqIUKqZR3BLYmoQX8dxP41a8o7WUepY,82147
|
296
|
-
runbooks/inventory/core/formatter.py,sha256=
|
296
|
+
runbooks/inventory/core/formatter.py,sha256=6xYuYR9eSR-F9RGQhgDeRXI0GzGVDFC0sAUxTPp5dWU,13025
|
297
297
|
runbooks/inventory/models/__init__.py,sha256=LjW8NAHcDeBFvjXjAZwoo73xwQHid8f1-FiEn376omc,788
|
298
298
|
runbooks/inventory/models/account.py,sha256=gsR0o-bHCpCkO_weY3D0cs87FsaysmJmuQhlc2wnCgo,7161
|
299
299
|
runbooks/inventory/models/inventory.py,sha256=1rTPHClwj_q6MJwW3MXFCOcKLzXPa0AYzzXgCeQy8AU,11440
|
@@ -446,7 +446,7 @@ runbooks/validation/cli.py,sha256=cIfXeime9aV5QeBPltroG1o9fpvZvjeINGFo8hVNfH0,13
|
|
446
446
|
runbooks/validation/comprehensive_2way_validator.py,sha256=11_D1iYZLvW4kc488IoZIsfPWqkBAz4Cp1wNY8F5X2g,95494
|
447
447
|
runbooks/validation/mcp_validator.py,sha256=RWAY4LE0CVvl2Fd05UjqFSg2c9uhIHLPMCXoXIL8JEk,108785
|
448
448
|
runbooks/validation/terraform_citations_validator.py,sha256=Z1EuNbUln_JDyDTnp6ge0TXpztqrv8FvNlcn0Xo_of8,14510
|
449
|
-
runbooks/validation/terraform_drift_detector.py,sha256=
|
449
|
+
runbooks/validation/terraform_drift_detector.py,sha256=T-7UDFHBcbEU3Dj_jADP3aU8l6A-1VUJwgQLe6O2eDI,48548
|
450
450
|
runbooks/vpc/README.md,sha256=rqDBp3PlDuzeDlLZCtcz54dftSyK7xFxCtwKM5B0ejA,32196
|
451
451
|
runbooks/vpc/__init__.py,sha256=RSrUBlmkGYll4HgSX9vHOh1Z9jKTyYjgAmrVV9yrtaM,2115
|
452
452
|
runbooks/vpc/analyzer.py,sha256=inxwiyQJMdbc5SzXH2AAFMxQfRosMg2QDT1YDmUMegU,26072
|
@@ -481,9 +481,9 @@ runbooks/vpc/tests/test_cli_integration.py,sha256=OvsSNd9gFlkzdyDf8tUZGES93TTZR6
|
|
481
481
|
runbooks/vpc/tests/test_config.py,sha256=GIX7cFnj7xUxxrYX49mV9hYmx60Dcd_Bu-cpb90oXdE,17484
|
482
482
|
runbooks/vpc/tests/test_cost_engine.py,sha256=dR7HTRKDrTduRg5Mr-T7MbP47D67jbKggZ7gyBirfK4,20941
|
483
483
|
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.
|
484
|
+
runbooks-1.1.7.dist-info/licenses/LICENSE,sha256=WAQUYGIkLJh6CPrlZgr0IsbRODa0EZ6fboBXGjfWggs,11375
|
485
|
+
runbooks-1.1.7.dist-info/METADATA,sha256=r_S6VEAZfwYo59N_AulPX7l0_BkAyhodAZ80LMvhXPs,12970
|
486
|
+
runbooks-1.1.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
487
|
+
runbooks-1.1.7.dist-info/entry_points.txt,sha256=WahHUYcgE2syXEc0MkoUdctLMxs0zjBWi_vWb5dRK8M,295
|
488
|
+
runbooks-1.1.7.dist-info/top_level.txt,sha256=A0zTBjuF7THC6vnJU7StN7ihtUoh31lZSfwyWpWP2YE,18
|
489
|
+
runbooks-1.1.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|