runbooks 0.2.5__py3-none-any.whl → 0.7.0__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 (249) hide show
  1. conftest.py +26 -0
  2. jupyter-agent/.env +2 -0
  3. jupyter-agent/.env.template +2 -0
  4. jupyter-agent/.gitattributes +35 -0
  5. jupyter-agent/.gradio/certificate.pem +31 -0
  6. jupyter-agent/README.md +16 -0
  7. jupyter-agent/__main__.log +8 -0
  8. jupyter-agent/app.py +256 -0
  9. jupyter-agent/cloudops-agent.png +0 -0
  10. jupyter-agent/ds-system-prompt.txt +154 -0
  11. jupyter-agent/jupyter-agent.png +0 -0
  12. jupyter-agent/llama3_template.jinja +123 -0
  13. jupyter-agent/requirements.txt +9 -0
  14. jupyter-agent/tmp/4ojbs8a02ir/jupyter-agent.ipynb +68 -0
  15. jupyter-agent/tmp/cm5iasgpm3p/jupyter-agent.ipynb +91 -0
  16. jupyter-agent/tmp/crqbsseag5/jupyter-agent.ipynb +91 -0
  17. jupyter-agent/tmp/hohanq1u097/jupyter-agent.ipynb +57 -0
  18. jupyter-agent/tmp/jns1sam29wm/jupyter-agent.ipynb +53 -0
  19. jupyter-agent/tmp/jupyter-agent.ipynb +27 -0
  20. jupyter-agent/utils.py +409 -0
  21. runbooks/__init__.py +71 -3
  22. runbooks/__main__.py +13 -0
  23. runbooks/aws/ec2_describe_instances.py +1 -1
  24. runbooks/aws/ec2_run_instances.py +8 -2
  25. runbooks/aws/ec2_start_stop_instances.py +17 -4
  26. runbooks/aws/ec2_unused_volumes.py +5 -1
  27. runbooks/aws/s3_create_bucket.py +4 -2
  28. runbooks/aws/s3_list_objects.py +6 -1
  29. runbooks/aws/tagging_lambda_handler.py +13 -2
  30. runbooks/aws/tags.json +12 -0
  31. runbooks/base.py +353 -0
  32. runbooks/cfat/README.md +49 -0
  33. runbooks/cfat/__init__.py +74 -0
  34. runbooks/cfat/app.ts +644 -0
  35. runbooks/cfat/assessment/__init__.py +40 -0
  36. runbooks/cfat/assessment/asana-import.csv +39 -0
  37. runbooks/cfat/assessment/cfat-checks.csv +31 -0
  38. runbooks/cfat/assessment/cfat.txt +520 -0
  39. runbooks/cfat/assessment/collectors.py +200 -0
  40. runbooks/cfat/assessment/jira-import.csv +39 -0
  41. runbooks/cfat/assessment/runner.py +387 -0
  42. runbooks/cfat/assessment/validators.py +290 -0
  43. runbooks/cfat/cli.py +103 -0
  44. runbooks/cfat/docs/asana-import.csv +24 -0
  45. runbooks/cfat/docs/cfat-checks.csv +31 -0
  46. runbooks/cfat/docs/cfat.txt +335 -0
  47. runbooks/cfat/docs/checks-output.png +0 -0
  48. runbooks/cfat/docs/cloudshell-console-run.png +0 -0
  49. runbooks/cfat/docs/cloudshell-download.png +0 -0
  50. runbooks/cfat/docs/cloudshell-output.png +0 -0
  51. runbooks/cfat/docs/downloadfile.png +0 -0
  52. runbooks/cfat/docs/jira-import.csv +24 -0
  53. runbooks/cfat/docs/open-cloudshell.png +0 -0
  54. runbooks/cfat/docs/report-header.png +0 -0
  55. runbooks/cfat/models.py +1026 -0
  56. runbooks/cfat/package-lock.json +5116 -0
  57. runbooks/cfat/package.json +38 -0
  58. runbooks/cfat/report.py +496 -0
  59. runbooks/cfat/reporting/__init__.py +46 -0
  60. runbooks/cfat/reporting/exporters.py +337 -0
  61. runbooks/cfat/reporting/formatters.py +496 -0
  62. runbooks/cfat/reporting/templates.py +135 -0
  63. runbooks/cfat/run-assessment.sh +23 -0
  64. runbooks/cfat/runner.py +69 -0
  65. runbooks/cfat/src/actions/check-cloudtrail-existence.ts +43 -0
  66. runbooks/cfat/src/actions/check-config-existence.ts +37 -0
  67. runbooks/cfat/src/actions/check-control-tower.ts +37 -0
  68. runbooks/cfat/src/actions/check-ec2-existence.ts +46 -0
  69. runbooks/cfat/src/actions/check-iam-users.ts +50 -0
  70. runbooks/cfat/src/actions/check-legacy-cur.ts +30 -0
  71. runbooks/cfat/src/actions/check-org-cloudformation.ts +30 -0
  72. runbooks/cfat/src/actions/check-vpc-existence.ts +43 -0
  73. runbooks/cfat/src/actions/create-asanaimport.ts +14 -0
  74. runbooks/cfat/src/actions/create-backlog.ts +372 -0
  75. runbooks/cfat/src/actions/create-jiraimport.ts +15 -0
  76. runbooks/cfat/src/actions/create-report.ts +616 -0
  77. runbooks/cfat/src/actions/define-account-type.ts +51 -0
  78. runbooks/cfat/src/actions/get-enabled-org-policy-types.ts +40 -0
  79. runbooks/cfat/src/actions/get-enabled-org-services.ts +26 -0
  80. runbooks/cfat/src/actions/get-idc-info.ts +34 -0
  81. runbooks/cfat/src/actions/get-org-da-accounts.ts +34 -0
  82. runbooks/cfat/src/actions/get-org-details.ts +35 -0
  83. runbooks/cfat/src/actions/get-org-member-accounts.ts +44 -0
  84. runbooks/cfat/src/actions/get-org-ous.ts +35 -0
  85. runbooks/cfat/src/actions/get-regions.ts +22 -0
  86. runbooks/cfat/src/actions/zip-assessment.ts +27 -0
  87. runbooks/cfat/src/types/index.d.ts +147 -0
  88. runbooks/cfat/tests/__init__.py +141 -0
  89. runbooks/cfat/tests/test_cli.py +340 -0
  90. runbooks/cfat/tests/test_integration.py +290 -0
  91. runbooks/cfat/tests/test_models.py +505 -0
  92. runbooks/cfat/tests/test_reporting.py +354 -0
  93. runbooks/cfat/tsconfig.json +16 -0
  94. runbooks/cfat/webpack.config.cjs +27 -0
  95. runbooks/config.py +260 -0
  96. runbooks/finops/README.md +337 -0
  97. runbooks/finops/__init__.py +86 -0
  98. runbooks/finops/aws_client.py +245 -0
  99. runbooks/finops/cli.py +151 -0
  100. runbooks/finops/cost_processor.py +410 -0
  101. runbooks/finops/dashboard_runner.py +448 -0
  102. runbooks/finops/helpers.py +355 -0
  103. runbooks/finops/main.py +14 -0
  104. runbooks/finops/profile_processor.py +174 -0
  105. runbooks/finops/types.py +66 -0
  106. runbooks/finops/visualisations.py +80 -0
  107. runbooks/inventory/.gitignore +354 -0
  108. runbooks/inventory/ArgumentsClass.py +261 -0
  109. runbooks/inventory/FAILED_SCRIPTS_TROUBLESHOOTING.md +619 -0
  110. runbooks/inventory/Inventory_Modules.py +6130 -0
  111. runbooks/inventory/LandingZone/delete_lz.py +1075 -0
  112. runbooks/inventory/PASSED_SCRIPTS_GUIDE.md +738 -0
  113. runbooks/inventory/README.md +1320 -0
  114. runbooks/inventory/__init__.py +62 -0
  115. runbooks/inventory/account_class.py +532 -0
  116. runbooks/inventory/all_my_instances_wrapper.py +123 -0
  117. runbooks/inventory/aws_decorators.py +201 -0
  118. runbooks/inventory/aws_organization.png +0 -0
  119. runbooks/inventory/cfn_move_stack_instances.py +1526 -0
  120. runbooks/inventory/check_cloudtrail_compliance.py +614 -0
  121. runbooks/inventory/check_controltower_readiness.py +1107 -0
  122. runbooks/inventory/check_landingzone_readiness.py +711 -0
  123. runbooks/inventory/cloudtrail.md +727 -0
  124. runbooks/inventory/collectors/__init__.py +20 -0
  125. runbooks/inventory/collectors/aws_compute.py +518 -0
  126. runbooks/inventory/collectors/aws_networking.py +275 -0
  127. runbooks/inventory/collectors/base.py +222 -0
  128. runbooks/inventory/core/__init__.py +19 -0
  129. runbooks/inventory/core/collector.py +303 -0
  130. runbooks/inventory/core/formatter.py +296 -0
  131. runbooks/inventory/delete_s3_buckets_objects.py +169 -0
  132. runbooks/inventory/discovery.md +81 -0
  133. runbooks/inventory/draw_org_structure.py +748 -0
  134. runbooks/inventory/ec2_vpc_utils.py +341 -0
  135. runbooks/inventory/find_cfn_drift_detection.py +272 -0
  136. runbooks/inventory/find_cfn_orphaned_stacks.py +719 -0
  137. runbooks/inventory/find_cfn_stackset_drift.py +733 -0
  138. runbooks/inventory/find_ec2_security_groups.py +669 -0
  139. runbooks/inventory/find_landingzone_versions.py +201 -0
  140. runbooks/inventory/find_vpc_flow_logs.py +1221 -0
  141. runbooks/inventory/inventory.sh +659 -0
  142. runbooks/inventory/list_cfn_stacks.py +558 -0
  143. runbooks/inventory/list_cfn_stackset_operation_results.py +252 -0
  144. runbooks/inventory/list_cfn_stackset_operations.py +734 -0
  145. runbooks/inventory/list_cfn_stacksets.py +453 -0
  146. runbooks/inventory/list_config_recorders_delivery_channels.py +681 -0
  147. runbooks/inventory/list_ds_directories.py +354 -0
  148. runbooks/inventory/list_ec2_availability_zones.py +286 -0
  149. runbooks/inventory/list_ec2_ebs_volumes.py +244 -0
  150. runbooks/inventory/list_ec2_instances.py +425 -0
  151. runbooks/inventory/list_ecs_clusters_and_tasks.py +562 -0
  152. runbooks/inventory/list_elbs_load_balancers.py +411 -0
  153. runbooks/inventory/list_enis_network_interfaces.py +526 -0
  154. runbooks/inventory/list_guardduty_detectors.py +568 -0
  155. runbooks/inventory/list_iam_policies.py +404 -0
  156. runbooks/inventory/list_iam_roles.py +518 -0
  157. runbooks/inventory/list_iam_saml_providers.py +359 -0
  158. runbooks/inventory/list_lambda_functions.py +882 -0
  159. runbooks/inventory/list_org_accounts.py +446 -0
  160. runbooks/inventory/list_org_accounts_users.py +354 -0
  161. runbooks/inventory/list_rds_db_instances.py +406 -0
  162. runbooks/inventory/list_route53_hosted_zones.py +318 -0
  163. runbooks/inventory/list_servicecatalog_provisioned_products.py +575 -0
  164. runbooks/inventory/list_sns_topics.py +360 -0
  165. runbooks/inventory/list_ssm_parameters.py +402 -0
  166. runbooks/inventory/list_vpc_subnets.py +433 -0
  167. runbooks/inventory/list_vpcs.py +422 -0
  168. runbooks/inventory/lockdown_cfn_stackset_role.py +224 -0
  169. runbooks/inventory/models/__init__.py +24 -0
  170. runbooks/inventory/models/account.py +192 -0
  171. runbooks/inventory/models/inventory.py +309 -0
  172. runbooks/inventory/models/resource.py +247 -0
  173. runbooks/inventory/recover_cfn_stack_ids.py +205 -0
  174. runbooks/inventory/requirements.txt +12 -0
  175. runbooks/inventory/run_on_multi_accounts.py +211 -0
  176. runbooks/inventory/tests/common_test_data.py +3661 -0
  177. runbooks/inventory/tests/common_test_functions.py +204 -0
  178. runbooks/inventory/tests/setup.py +24 -0
  179. runbooks/inventory/tests/src.py +18 -0
  180. runbooks/inventory/tests/test_cfn_describe_stacks.py +208 -0
  181. runbooks/inventory/tests/test_ec2_describe_instances.py +162 -0
  182. runbooks/inventory/tests/test_inventory_modules.py +55 -0
  183. runbooks/inventory/tests/test_lambda_list_functions.py +86 -0
  184. runbooks/inventory/tests/test_moto_integration_example.py +273 -0
  185. runbooks/inventory/tests/test_org_list_accounts.py +49 -0
  186. runbooks/inventory/update_aws_actions.py +173 -0
  187. runbooks/inventory/update_cfn_stacksets.py +1215 -0
  188. runbooks/inventory/update_cloudwatch_logs_retention_policy.py +294 -0
  189. runbooks/inventory/update_iam_roles_cross_accounts.py +478 -0
  190. runbooks/inventory/update_s3_public_access_block.py +539 -0
  191. runbooks/inventory/utils/__init__.py +23 -0
  192. runbooks/inventory/utils/aws_helpers.py +510 -0
  193. runbooks/inventory/utils/threading_utils.py +493 -0
  194. runbooks/inventory/utils/validation.py +682 -0
  195. runbooks/inventory/verify_ec2_security_groups.py +1430 -0
  196. runbooks/main.py +1004 -0
  197. runbooks/organizations/__init__.py +12 -0
  198. runbooks/organizations/manager.py +374 -0
  199. runbooks/security/README.md +447 -0
  200. runbooks/security/__init__.py +71 -0
  201. runbooks/{security_baseline → security}/checklist/alternate_contacts.py +8 -1
  202. runbooks/{security_baseline → security}/checklist/bucket_public_access.py +4 -1
  203. runbooks/{security_baseline → security}/checklist/cloudwatch_alarm_configuration.py +9 -2
  204. runbooks/{security_baseline → security}/checklist/guardduty_enabled.py +9 -2
  205. runbooks/{security_baseline → security}/checklist/multi_region_instance_usage.py +5 -1
  206. runbooks/{security_baseline → security}/checklist/root_access_key.py +6 -1
  207. runbooks/{security_baseline → security}/config-origin.json +1 -1
  208. runbooks/{security_baseline → security}/config.json +1 -1
  209. runbooks/{security_baseline → security}/permission.json +1 -1
  210. runbooks/{security_baseline → security}/report_generator.py +10 -2
  211. runbooks/{security_baseline → security}/report_template_en.html +7 -7
  212. runbooks/{security_baseline → security}/report_template_jp.html +7 -7
  213. runbooks/{security_baseline → security}/report_template_kr.html +12 -12
  214. runbooks/{security_baseline → security}/report_template_vn.html +7 -7
  215. runbooks/{security_baseline → security}/run_script.py +8 -2
  216. runbooks/{security_baseline → security}/security_baseline_tester.py +12 -4
  217. runbooks/{security_baseline → security}/utils/common.py +5 -1
  218. runbooks/utils/__init__.py +204 -0
  219. runbooks-0.7.0.dist-info/METADATA +375 -0
  220. runbooks-0.7.0.dist-info/RECORD +249 -0
  221. {runbooks-0.2.5.dist-info → runbooks-0.7.0.dist-info}/WHEEL +1 -1
  222. runbooks-0.7.0.dist-info/entry_points.txt +7 -0
  223. runbooks-0.7.0.dist-info/licenses/LICENSE +201 -0
  224. runbooks-0.7.0.dist-info/top_level.txt +3 -0
  225. runbooks/python101/calculator.py +0 -34
  226. runbooks/python101/config.py +0 -1
  227. runbooks/python101/exceptions.py +0 -16
  228. runbooks/python101/file_manager.py +0 -218
  229. runbooks/python101/toolkit.py +0 -153
  230. runbooks-0.2.5.dist-info/METADATA +0 -439
  231. runbooks-0.2.5.dist-info/RECORD +0 -61
  232. runbooks-0.2.5.dist-info/entry_points.txt +0 -3
  233. runbooks-0.2.5.dist-info/top_level.txt +0 -1
  234. /runbooks/{security_baseline/__init__.py → inventory/tests/script_test_data.py} +0 -0
  235. /runbooks/{security_baseline → security}/checklist/__init__.py +0 -0
  236. /runbooks/{security_baseline → security}/checklist/account_level_bucket_public_access.py +0 -0
  237. /runbooks/{security_baseline → security}/checklist/direct_attached_policy.py +0 -0
  238. /runbooks/{security_baseline → security}/checklist/iam_password_policy.py +0 -0
  239. /runbooks/{security_baseline → security}/checklist/iam_user_mfa.py +0 -0
  240. /runbooks/{security_baseline → security}/checklist/multi_region_trail.py +0 -0
  241. /runbooks/{security_baseline → security}/checklist/root_mfa.py +0 -0
  242. /runbooks/{security_baseline → security}/checklist/root_usage.py +0 -0
  243. /runbooks/{security_baseline → security}/checklist/trail_enabled.py +0 -0
  244. /runbooks/{security_baseline → security}/checklist/trusted_advisor.py +0 -0
  245. /runbooks/{security_baseline → security}/utils/__init__.py +0 -0
  246. /runbooks/{security_baseline → security}/utils/enums.py +0 -0
  247. /runbooks/{security_baseline → security}/utils/language.py +0 -0
  248. /runbooks/{security_baseline → security}/utils/level_const.py +0 -0
  249. /runbooks/{security_baseline → security}/utils/permission_list.py +0 -0
@@ -0,0 +1,375 @@
1
+ Metadata-Version: 2.4
2
+ Name: runbooks
3
+ Version: 0.7.0
4
+ Summary: CloudOps Automation Toolkit with Enhanced Cloud Foundations Assessment for DevOps and SRE teams.
5
+ Author-email: Maintainers <nnthanh101@gmail.com>
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://cloudops.oceansoft.io
8
+ Project-URL: Repository, https://github.com/1xOps/CloudOps-Runbooks
9
+ Project-URL: Documentation, https://cloudops.oceansoft.io/runbooks/
10
+ Project-URL: Issues, https://github.com/1xOps/CloudOps-Runbooks/issues
11
+ Project-URL: Changelog, https://github.com/1xOps/CloudOps-Runbooks/blob/main/CHANGELOG.md
12
+ Keywords: runbooks,automation,DevOps,SRE,CloudOps,AWS,cloud-foundations,FinOps
13
+ Classifier: Development Status :: 5 - Production/Stable
14
+ Classifier: Environment :: Console
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Topic :: System :: Systems Administration
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Classifier: Topic :: Utilities
23
+ Requires-Python: <3.14,>=3.11
24
+ Description-Content-Type: text/markdown
25
+ License-File: LICENSE
26
+ Requires-Dist: boto3>=1.35.40
27
+ Requires-Dist: botocore>=1.35.40
28
+ Requires-Dist: diagrams>=0.24.4
29
+ Requires-Dist: click>=8.2.1
30
+ Requires-Dist: pydantic>=2.10.0
31
+ Requires-Dist: jinja2>=3.1.4
32
+ Requires-Dist: werkzeug>=3.1.0
33
+ Requires-Dist: markdown>=3.7.0
34
+ Requires-Dist: prettytable>=3.16.0
35
+ Requires-Dist: simplejson>=3.20.1
36
+ Requires-Dist: python-dateutil>=2.9.0
37
+ Requires-Dist: loguru>=0.7.3
38
+ Requires-Dist: tqdm>=4.67.1
39
+ Requires-Dist: rich>=14.0.0
40
+ Requires-Dist: reportlab>=3.6.1
41
+ Requires-Dist: requests>=2.32.0
42
+ Requires-Dist: packaging>=21.0
43
+ Requires-Dist: pyyaml>=6.0.2
44
+ Requires-Dist: jmespath>=1.0.1
45
+ Requires-Dist: urllib3<1.27,>=1.26.18
46
+ Dynamic: license-file
47
+
48
+ # 🚀 CloudOps Runbooks - Enterprise AWS Automation Toolkit
49
+
50
+ [![PyPI Version](https://img.shields.io/pypi/v/runbooks)](https://pypi.org/project/runbooks/)
51
+ [![Python Support](https://img.shields.io/pypi/pyversions/runbooks)](https://pypi.org/project/runbooks/)
52
+ [![License](https://img.shields.io/pypi/l/runbooks)](https://opensource.org/licenses/Apache-2.0)
53
+ [![Documentation](https://img.shields.io/badge/docs-latest-brightgreen)](https://cloudops.oceansoft.io/runbooks/)
54
+ [![CI/CD](https://img.shields.io/github/actions/workflow/status/1xOps/CloudOps-Runbooks/ci.yml?branch=main)](https://github.com/1xOps/CloudOps-Runbooks/actions)
55
+ [![Code style: ruff](https://img.shields.io/badge/code%20style-ruff-000000.svg)](https://github.com/astral-sh/ruff)
56
+ [![Type Checked: mypy](https://img.shields.io/badge/type%20checked-mypy-blue.svg)](https://mypy-lang.org/)
57
+ [![Tests: pytest](https://img.shields.io/badge/tests-pytest-green.svg)](https://pytest.org/)
58
+
59
+ > **Enterprise-grade AWS automation toolkit for cloud operations (SRE and DevOps teams) at scale**
60
+
61
+ CloudOps Runbooks provides comprehensive AWS resource discovery, inventory management, and automation capabilities with enterprise-grade architecture, type safety, and validation.
62
+
63
+
64
+ ## 🚀 Overview
65
+
66
+ CloudOps Runbooks is a production-ready AWS automation framework that combines traditional scripting excellence with modern AI orchestration. Designed for enterprises managing complex multi-account AWS environments, it delivers comprehensive discovery, intelligent analysis, and automated remediation across 50+ AWS services.
67
+
68
+ > Why CloudOps Runbooks?
69
+
70
+ - **🎯 Proven in Production**: Deployed across enterprises managing 50+ AWS accounts
71
+ - **🤖 AI-Ready Architecture**: Native integration with AI-Agents and MCP-servers
72
+ - **⚡ Blazing Fast**: Parallel execution reducing discovery time by 60%
73
+ - **🔒 Enterprise Security**: Zero-trust validation, compliance automation, and audit trails
74
+ - **💰 Cost Intelligence**: Identifies 25-50% optimization opportunities automatically
75
+ - **🏗️ AWS Landing Zone Native**: Purpose-built for Multi-Organizations Landing Zone
76
+
77
+ ## 🌟 Key Features
78
+
79
+ ### 🔍 **Comprehensive AWS Discovery**
80
+ - **Multi-Account Inventory**: Seamless discover resources (EC2, RDS, Lambda, ECS, S3, IAM, and more) across entire AWS Organizations
81
+ - **Cross-Region Support**: Parallel scanning of all available AWS regions
82
+ - **Resource Coverage**: 50+ AWS resource types across all major services
83
+ - **Real-time Collection**: Concurrent collection with progress tracking
84
+
85
+ ### 🏗️ **Enterprise Architecture**
86
+ - **Type Safety**: Full Pydantic V2 models with runtime validation
87
+ - **Modular Design**: Service-specific collectors with common interfaces
88
+ - **Extensibility**: Easy to add new collectors and resource types
89
+ - **Error Handling**: Comprehensive error tracking and retry logic
90
+
91
+
92
+ ### Hybrid Intelligence Integration
93
+
94
+ - **MCP Server Integration**: Real-time AWS API access without custom code
95
+ - **AI Agent Orchestration**: AI-powered analysis and recommendations
96
+ - **Evidence Pipeline**: Unified data normalization and correlation
97
+ - **Intelligent Prioritization**: ML-based resource targeting
98
+
99
+ ### 💰 **Cost Integration**
100
+ - **Cost Estimation**: Automatic cost calculations for billable resources
101
+ - **Cost Analytics**: Cost breakdown by service, account, and region
102
+ - **Budget Tracking**: Resource cost monitoring and alerting
103
+
104
+ ### 📊 **Multiple Output Formats**
105
+ - **Structured Data**: JSON, CSV, Excel, Parquet
106
+ - **Visual Reports**: HTML reports with charts and graphs
107
+ - **Console Output**: Rich table formatting with colors
108
+ - **API Integration**: REST API for programmatic access
109
+
110
+ ### 🔒 **Security & Compliance**
111
+ - **IAM Integration**: Role-based access control
112
+ - **Audit Logging**: Comprehensive operation logging
113
+ - **Encryption**: Secure credential management
114
+ - **Compliance Reports**: Security and compliance validation
115
+
116
+ ## 🚀 Quick Start Excellence: Progressive Examples
117
+
118
+ ### 📦 Installation
119
+
120
+ ```bash
121
+ # Install using UV (recommended for speed and reliability)
122
+ uv add runbooks
123
+
124
+ # Or using pip
125
+ pip install runbooks
126
+
127
+ # Development installation
128
+ git clone https://github.com/1xOps/CloudOps-Runbooks.git
129
+ cd CloudOps-Runbooks
130
+ uv sync --all-extras --dev
131
+ ```
132
+
133
+ ### 🔰 Level 1: Basic Single Account Discovery
134
+
135
+ **Goal**: Discover EC2 instances in your current AWS account
136
+
137
+ ```bash
138
+ # Set up your AWS credentials
139
+ export AWS_PROFILE="your-aws-profile"
140
+ aws sts get-caller-identity # Verify access
141
+
142
+ # Basic EC2 instance discovery
143
+ cd CloudOps-Runbooks
144
+ python src/runbooks/inventory/list_ec2_instances.py --profile $AWS_PROFILE --regions us-east-1 --timing
145
+
146
+ # Example output:
147
+ # Finding instances from 1 locations: 100%|██████████| 1/1 [00:02<00:00, 2.43 locations/s]
148
+ # Found 12 instances across 1 account across 1 region
149
+ # This script completed in 3.45 seconds
150
+ ```
151
+
152
+ ### 🏃 Level 2: Multi-Service Resource Discovery
153
+
154
+ **Goal**: Discover multiple AWS resource types efficiently
155
+
156
+ ```bash
157
+ # EBS Volumes with orphan detection
158
+ python src/runbooks/inventory/list_ec2_ebs_volumes.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
159
+
160
+ # Lambda Functions with cost analysis
161
+ python src/runbooks/inventory/list_lambda_functions.py --profile $AWS_PROFILE --regions ap-southeast-2
162
+
163
+ # RDS Instances across multiple regions
164
+ python src/runbooks/inventory/list_rds_db_instances.py --profile $AWS_PROFILE --regions us-east-1,eu-west-1,ap-southeast-2
165
+
166
+ # Security Groups analysis
167
+ python src/runbooks/inventory/find_ec2_security_groups.py --profile $AWS_PROFILE --regions us-east-1 --defaults
168
+ ```
169
+
170
+ ### 🏢 Level 3: Enterprise Multi-Account Operations
171
+
172
+ **Goal**: Organization-wide resource discovery and compliance
173
+
174
+ ```bash
175
+ # Comprehensive inventory across AWS Organizations
176
+ python src/runbooks/inventory/list_org_accounts.py --profile $AWS_PROFILE
177
+
178
+ # Multi-account CloudFormation stack discovery
179
+ python src/runbooks/inventory/list_cfn_stacks.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
180
+
181
+ # Organization-wide GuardDuty detector inventory
182
+ python src/runbooks/inventory/list_guardduty_detectors.py --profile $AWS_PROFILE --regions ap-southeast-2
183
+
184
+ # CloudTrail compliance validation
185
+ python src/runbooks/inventory/check_cloudtrail_compliance.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
186
+ ```
187
+
188
+ ### 🚀 Level 4: Autonomous Testing Framework
189
+
190
+ **Goal**: Automated testing and validation of entire inventory suite
191
+
192
+ ```bash
193
+ # Test individual script
194
+ ./src/runbooks/inventory/inventory.sh list_ec2_instances.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
195
+
196
+ # Test specific script category with detailed analysis
197
+ ./src/runbooks/inventory/inventory.sh list_ec2_ebs_volumes.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
198
+
199
+ # Full autonomous test suite (20+ core scripts)
200
+ ./src/runbooks/inventory/inventory.sh all --profile $AWS_PROFILE --regions ap-southeast-2 --timing
201
+
202
+ # Review test results and analysis
203
+ ls test_logs_*/
204
+ cat test_logs_*/test_execution.log
205
+ ```
206
+
207
+ ### 🔬 Level 5: Advanced Integration & Analysis
208
+
209
+ **Goal**: Production-grade automation with comprehensive reporting
210
+
211
+ ```bash
212
+ # 1. VPC Network Discovery with Subnet Analysis
213
+ python src/runbooks/inventory/list_vpc_subnets.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
214
+ python src/runbooks/inventory/list_vpcs.py --profile $AWS_PROFILE --regions ap-southeast-2
215
+
216
+ # 2. Load Balancer Infrastructure Mapping
217
+ python src/runbooks/inventory/list_elbs_load_balancers.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
218
+
219
+ # 3. IAM Security Posture Assessment
220
+ python src/runbooks/inventory/list_iam_roles.py --profile $AWS_PROFILE --timing
221
+ python src/runbooks/inventory/list_iam_policies.py --profile $AWS_PROFILE --timing
222
+
223
+ # 4. ECS Container Platform Discovery
224
+ python src/runbooks/inventory/list_ecs_clusters_and_tasks.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
225
+
226
+ # 5. Network Interface and ENI Analysis
227
+ python src/runbooks/inventory/list_enis_network_interfaces.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
228
+ ```
229
+
230
+ ### 🎯 Level 6: Specialized Operations
231
+
232
+ **Goal**: Advanced scenarios for specific use cases
233
+
234
+ ```bash
235
+ # 1. Landing Zone Readiness Assessment
236
+ python src/runbooks/inventory/check_landingzone_readiness.py --profile $AWS_PROFILE
237
+
238
+ # 2. CloudFormation Drift Detection
239
+ python src/runbooks/inventory/find_cfn_drift_detection.py --profile $AWS_PROFILE --regions ap-southeast-2
240
+
241
+ # 3. Organizations Structure Analysis
242
+ python src/runbooks/inventory/list_org_accounts_users.py --profile $AWS_PROFILE --timing
243
+
244
+ # 4. Config Compliance Monitoring
245
+ python src/runbooks/inventory/list_config_recorders_delivery_channels.py --profile $AWS_PROFILE --regions ap-southeast-2
246
+
247
+ # 5. Route53 DNS Infrastructure
248
+ python src/runbooks/inventory/list_route53_hosted_zones.py --profile $AWS_PROFILE --timing
249
+ ```
250
+
251
+ ### 📊 Integration Examples
252
+
253
+ **Modern Architecture Integration:**
254
+
255
+ ```python
256
+ # collectors/ and core/ directories provide modern modular architecture
257
+ from runbooks.inventory.collectors.aws_compute import ComputeCollector
258
+ from runbooks.inventory.core.collector import InventoryCollector
259
+ from runbooks.inventory.core.formatter import OutputFormatter
260
+
261
+ # Enterprise-grade type-safe collection
262
+ collector = InventoryCollector(profile='production')
263
+ results = collector.collect_compute_resources(include_costs=True)
264
+ formatter = OutputFormatter()
265
+ report = formatter.generate_html_report(results)
266
+ ```
267
+
268
+ ### 📈 Performance & Success Metrics
269
+
270
+ **Test Suite Results (Latest):**
271
+ - ✅ **20/43 core scripts passing** (47% success rate)
272
+ - ⚡ **Average execution time**: 8-12 seconds per script
273
+ - 🔧 **Known issues**: 4 scripts with permissions issues, 19 with parameter dependencies
274
+ - 📋 **Excluded scripts**: 20 utility/support modules (correct exclusion)
275
+ - 🏗️ **Architecture**: Modern modular design with collectors/ and core/ directories
276
+
277
+ ## 📋 Architecture Overview
278
+
279
+ ### 🏗️ **Module Structure**
280
+
281
+ ```
282
+ src/runbooks/inventory/
283
+ ├── 🧠 core/ # Business Logic
284
+ │ ├── collector.py # Main orchestration engine
285
+ │ ├── formatter.py # Multi-format output handling
286
+ │ └── session_manager.py # AWS session management
287
+ ├── 🔧 collectors/ # Resource Specialists
288
+ │ ├── base.py # Abstract base collector
289
+ │ ├── aws_compute.py # EC2, Lambda, ECS, Batch
290
+ │ ├── aws_storage.py # S3, EBS, EFS, FSx
291
+ │ ├── aws_database.py # RDS, DynamoDB, ElastiCache
292
+ │ ├── aws_network.py # VPC, ELB, Route53, CloudFront
293
+ │ ├── aws_security.py # IAM, GuardDuty, Config, WAF
294
+ │ └── aws_management.py # CloudFormation, Organizations
295
+ ├── 📊 models/ # Data Structures
296
+ │ ├── account.py # AWS account representation
297
+ │ ├── resource.py # Resource models with metadata
298
+ │ └── inventory.py # Collection results and analytics
299
+ ├── 🛠️ utils/ # Shared Utilities
300
+ │ ├── aws_helpers.py # AWS session and API utilities
301
+ │ ├── threading_utils.py # Concurrent execution helpers
302
+ │ └── validation.py # Input validation and sanitization
303
+ └── 📜 legacy/ # Migration Support
304
+ └── migration_guide.md # Legacy script migration guide
305
+ ```
306
+
307
+ ## 🧪 Testing & Development
308
+
309
+ ### Running Tests
310
+
311
+ ```bash
312
+ # Run full test suite
313
+ task test
314
+
315
+ # Run specific test categories
316
+ pytest tests/unit/test_inventory.py -v
317
+ pytest tests/integration/test_collectors.py -v
318
+
319
+ # Test with coverage
320
+ task _test.coverage
321
+
322
+ # Test inventory module specifically
323
+ task inventory.test
324
+ ```
325
+
326
+ ### Development Workflow
327
+
328
+ ```bash
329
+ # Install development dependencies
330
+ task install
331
+
332
+ # Code quality checks
333
+ task code_quality
334
+
335
+ # Validate module structure
336
+ task inventory.validate
337
+
338
+ # Full validation workflow
339
+ task validate
340
+ ```
341
+
342
+ ## 📚 Documentation
343
+
344
+ - [API Reference](docs/api-reference.md)
345
+ - [Configuration Guide](docs/configuration.md)
346
+ - [Migration Guide](src/runbooks/inventory/legacy/migration_guide.md)
347
+ - [Contributing Guide](CONTRIBUTING.md)
348
+
349
+
350
+ ## 🚦 Roadmap
351
+
352
+ - **v1.0** (Q4 2025): Enhanced AI agent orchestration
353
+ - **v1.5** (Q1 2026): Self-healing infrastructure capabilities
354
+
355
+ ## 📝 License
356
+
357
+ This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.
358
+
359
+ ## 🆘 Support
360
+
361
+ ### Community
362
+ - [GitHub Issues](https://github.com/1xOps/CloudOps-Runbooks/issues)
363
+ - [Discussions](https://github.com/1xOps/CloudOps-Runbooks/discussions)
364
+
365
+ ### Enterprise Support
366
+ - Professional services and training available
367
+ - Custom collector development
368
+ - Enterprise deployment assistance
369
+ - Contact: [info@oceansoft.io](mailto:info@oceansoft.io)
370
+
371
+ ---
372
+
373
+ **Built with ❤️ by the xOps team at OceanSoft**
374
+
375
+ [Website](https://cloudops.oceansoft.io) • [Documentation](https://cloudops.oceansoft.io/runbooks/) • [GitHub](https://github.com/1xOps/CloudOps-Runbooks)
@@ -0,0 +1,249 @@
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=xMbh_48pNLycHeUL4D5iDqjjVEz2Gnwr1j9dcMP7Kjs,2021
22
+ runbooks/__main__.py,sha256=0hTPUA9KkLm_H_COqaIpNzXvC4Lv5b_XYYBV6fUFDrM,241
23
+ runbooks/base.py,sha256=SE31vwKB_CW2C0w2Onb7QfjU2xJXcUbiYTSHBDWT7KE,11593
24
+ runbooks/config.py,sha256=63Bct1jASQG3mjPTNnzfJwTMgXzG8aQqVsaku6ugZR0,7839
25
+ runbooks/main.py,sha256=1WTBaNcpLCyA__mE37VmE0CSnH2vDs168HY3cZaihHM,37290
26
+ runbooks/aws/__init__.py,sha256=iswGPspnFaHLE_Zzw2uRraYI2zvJ1Nma5PbdOiBUdEo,1646
27
+ runbooks/aws/dynamodb_operations.py,sha256=c91YACBHnOELL8Ufj7tRQws9azGqnB6flQsacTi57xQ,6490
28
+ runbooks/aws/ec2_copy_image_cross-region.py,sha256=2Afoo2ddzswgtdhdzsDq5aZiqXkQ0_kUyRdHbhkaLAA,6017
29
+ runbooks/aws/ec2_describe_instances.py,sha256=0S9iY-J_dSOeve0HyeuVu4s01oCgPjdz3DYHhnJo-9w,6545
30
+ runbooks/aws/ec2_ebs_snapshots_delete.py,sha256=LwaGGAg_7tdqic1thBLywlHKjMSMyye2B79d4yNtK78,5886
31
+ runbooks/aws/ec2_run_instances.py,sha256=ZpqGXN2yeXz7jYwsL7EZrQsfaYxzRoH5UIrDeksmPRI,6885
32
+ runbooks/aws/ec2_start_stop_instances.py,sha256=M4adf7DZI176aWfb7oeT_pYjrs-IbZ9moGoVkIco7Fw,6035
33
+ runbooks/aws/ec2_terminate_instances.py,sha256=p8ZHHDkT--rlOFah82hG6SJpty4rYZa4hn3yq4MqvQI,4692
34
+ runbooks/aws/ec2_unused_eips.py,sha256=04pjoeSwm-CfJKT6u9XuHa_D-iK5r9D65FaisQy00Zk,5535
35
+ runbooks/aws/ec2_unused_volumes.py,sha256=ZnLr-LHVHoznmij8r2RtZ5Y3W7bBAklophnJKQmN6lg,5733
36
+ runbooks/aws/s3_create_bucket.py,sha256=UhQML3KWflvvKmEZFod4tYPzIukCGRJdmBXSfB3ne7w,4216
37
+ runbooks/aws/s3_list_buckets.py,sha256=sHh05_KrvpLzOlGZJy8nxTAfTuMaVtMIhb3A9nLh_rQ,4752
38
+ runbooks/aws/s3_list_objects.py,sha256=idwrfbjqEwF5sHFSJRhNb6X38P3tTscCwv0IwKm0NuA,4634
39
+ runbooks/aws/s3_object_operations.py,sha256=46l8v0Xt8pJhTuMjCyLDSLsU06WGxWKad99nQ91o2hg,5400
40
+ runbooks/aws/tagging_lambda_handler.py,sha256=NZwzlI3NwEKsLk3b-a_rq3EjMLQ9hUKWi_pzhomvWws,5433
41
+ runbooks/aws/tags.json,sha256=-Y77SDvrvn0sCdsxgdRwu0sl0mih2Ib_N6nGi-UtE5U,513
42
+ runbooks/cfat/README.md,sha256=ovKuVTxIJWqRmkTK1JGTNkG25Sufe918wYAFA86_SS8,4917
43
+ runbooks/cfat/__init__.py,sha256=4CAtXB-hUUgkZnp_QefbADpMAcTlXI-zDGyHgBlprAI,1876
44
+ runbooks/cfat/app.ts,sha256=EwpA9bQzkoH1qqTJ_Tco47PwVG2zTv4g8ZmEGYpWYlU,27785
45
+ runbooks/cfat/cli.py,sha256=37KUY-ObzMcB7xYs2R8Q40djLFnBgLhBnUXujvn2M7s,3483
46
+ runbooks/cfat/models.py,sha256=gh-7XmqEH9PvqrmxtmIhWoKGpGcFTWr1pah_9iNrLxM,37960
47
+ runbooks/cfat/package-lock.json,sha256=zRmjHmoieoF9UiNPZWPgsqo9Hq4LCE_pt59OZ2-hBn4,185693
48
+ runbooks/cfat/package.json,sha256=lQEq_Xh4xzCJYKgZRZoVs1R3i6W-_Xx6UV3et4mA37c,1133
49
+ runbooks/cfat/report.py,sha256=5QMCRcovPTSMfANRw6HbD_Ek6YlhwrapjkkpYQQWOiA,15452
50
+ runbooks/cfat/run-assessment.sh,sha256=VecBju8Jh0_ZH_ZN_OT1nJopu_lOnW7c7Aq_kK9AsGA,724
51
+ runbooks/cfat/runner.py,sha256=_7Adcd26Hy_m8QaDPMfakCK2Y7IfaDAxtEwopF9aP-Q,2213
52
+ runbooks/cfat/tsconfig.json,sha256=nNcqptUlfNwxcbSaPgNvX3fYLF3Nz10sN-GmyqR-Zhc,375
53
+ runbooks/cfat/webpack.config.cjs,sha256=37hj9MTrbMsTd-42xSp6gOw0W-yTwD2cRI9gzI6QNMI,597
54
+ runbooks/cfat/assessment/__init__.py,sha256=wXJhbHSUqYkJtIu9Vlz2UGV_VuKag5p5xAesfIdrPaE,1023
55
+ runbooks/cfat/assessment/asana-import.csv,sha256=oPGO9FJaUwqfYVFPkj04i-O_CKcW-0lOZfuyAJhAcq0,9532
56
+ runbooks/cfat/assessment/cfat-checks.csv,sha256=1C1zV058esQbSSzycATb22lAdRSwr4hzo4J09VzkzYk,6446
57
+ runbooks/cfat/assessment/cfat.txt,sha256=tS23zcYBwScNTEorQ__9KD4fnVaK0b_B2YONYwpGbaM,31890
58
+ runbooks/cfat/assessment/collectors.py,sha256=8nGKFtn4_niw48chZDj2aj4g21FqdWe2pgsyRmYlXd4,5419
59
+ runbooks/cfat/assessment/jira-import.csv,sha256=N3ydOtRPLB7NQ263FgFsGLnyJQ_9oSpnMRrfouwipIY,4887
60
+ runbooks/cfat/assessment/runner.py,sha256=nQik7cDLh_AEPgFJoePgUBzp4yQmVAfufxD_XqYhtQ8,14838
61
+ runbooks/cfat/assessment/validators.py,sha256=NhD_xuq9mdqR8q9KbChTLE05N8MssKpUI9bfvx9JET8,9628
62
+ runbooks/cfat/docs/asana-import.csv,sha256=MR9kKhGdJfTiLwkSyWTpagaU0fcHckCwjSw72ztHuxY,6064
63
+ runbooks/cfat/docs/cfat-checks.csv,sha256=YLI10fexN-x8k9YOxdRRBuEGoUSLr_ANGqXxOhOdnCM,6431
64
+ runbooks/cfat/docs/cfat.txt,sha256=jd8WfVaUMFSVyERI-f0-oZ15P2LP3sGxkWfYN0xmJZI,23917
65
+ runbooks/cfat/docs/checks-output.png,sha256=4a_Fy5Uyn02SuoqpzjXoeqU7g4NS4lscW4JxE3t9474,282007
66
+ runbooks/cfat/docs/cloudshell-console-run.png,sha256=lwHe9zOExZbdqmsMz04I1hpe0AhvNnXRlKTBongGZqs,132571
67
+ runbooks/cfat/docs/cloudshell-download.png,sha256=dKQedJJLBmev0z86MP9I2DJKb8bLC9EoV9W5QqfFvkM,93567
68
+ runbooks/cfat/docs/cloudshell-output.png,sha256=NbgmT9eFHo4gcMzXRA9LojF2so8ZshX7F0kc0PuhXIs,165591
69
+ runbooks/cfat/docs/downloadfile.png,sha256=Wjdgtng1_B5dNaOm0UJkHGOsRFXDMxvIawFBsUqeWSk,81141
70
+ runbooks/cfat/docs/jira-import.csv,sha256=yHlO7W3miXcsA6qhOIoZGEQtGqKVKz2P_vWmEeMvAPg,2901
71
+ runbooks/cfat/docs/open-cloudshell.png,sha256=_v41CuRZGoNlWZJCAxNBJxkS1CebVXwVMPj27zKlEno,45648
72
+ runbooks/cfat/docs/report-header.png,sha256=AhS-UWXRwYt3MGq26LY0QzncFsQ_Ttvzs4A4eyMmbjM,39518
73
+ runbooks/cfat/reporting/__init__.py,sha256=mrmfxIII9wS6dfb9Y73TVBU9CPioMNPZ6AbLjawY7fA,1136
74
+ runbooks/cfat/reporting/exporters.py,sha256=h0j0w5Ippe8MvJADpFGHPmyL7gPZtKUSP9uNpAf9jrY,11138
75
+ runbooks/cfat/reporting/formatters.py,sha256=5QMCRcovPTSMfANRw6HbD_Ek6YlhwrapjkkpYQQWOiA,15452
76
+ runbooks/cfat/reporting/templates.py,sha256=fH1POInjxp9XAucVF2earmcTvBQb69nL1copZI3fcCI,3743
77
+ runbooks/cfat/src/actions/check-cloudtrail-existence.ts,sha256=AQ2lQcc5RAQLXFEm9TVGqrYHwAIW-kEa1_SmandGyis,1456
78
+ runbooks/cfat/src/actions/check-config-existence.ts,sha256=TZWElaMMT176MIhWp3_M6GygmqMqbArUgKBwwe7anSY,1455
79
+ runbooks/cfat/src/actions/check-control-tower.ts,sha256=emS0mJsGxjrwwD2RBv3OVq6EAyCAmD_LTiIYl9yudvQ,1600
80
+ runbooks/cfat/src/actions/check-ec2-existence.ts,sha256=ZJ-kdfvSd9T3lK6cyZj-GSoX2fQwOYTDuW2zPw2iUKQ,1301
81
+ runbooks/cfat/src/actions/check-iam-users.ts,sha256=cLdJK0u_suXiACP3CHjHeZNMhajLFR4rA6sH84U3aLo,1953
82
+ runbooks/cfat/src/actions/check-legacy-cur.ts,sha256=KIO7DcIWdhL8Sfm_Hl4TZSjZyzfXQrcjQT1fD3LJbFk,988
83
+ runbooks/cfat/src/actions/check-org-cloudformation.ts,sha256=WPxyE9hSplXa1hycb-3Cf7WFYB0PV3zL9Kd6782dba4,1048
84
+ runbooks/cfat/src/actions/check-vpc-existence.ts,sha256=m3MtrkskuLPqkvfgotu4npvzc56URT1PsN8SD5_HPlg,1145
85
+ runbooks/cfat/src/actions/create-asanaimport.ts,sha256=mdBUImRQLntZcVI7I2tMyLfPHznN_QFGTDA45gKviKk,428
86
+ runbooks/cfat/src/actions/create-backlog.ts,sha256=kVlY2YBp4cCV2z8Gm9M2uKFPS43G7oZu1rGND9rCq78,17317
87
+ runbooks/cfat/src/actions/create-jiraimport.ts,sha256=JtE28_pIEDQJ_3TIv1TiMMdIWUd31DTR1scq8NEWtiU,396
88
+ runbooks/cfat/src/actions/create-report.ts,sha256=a3PTo6MYY2fGjzyb6GyLHX1tIbCqO1ED-b0GzqMpP7w,33906
89
+ runbooks/cfat/src/actions/define-account-type.ts,sha256=zBG3uwQJ9FR-0_J6o_45KIiTzkFdlbQNXSLJlhekGLY,2085
90
+ runbooks/cfat/src/actions/get-enabled-org-policy-types.ts,sha256=Sp4U6q1qJ_HzvgfLn3lYyebCs-YLiAbU4YxLSgRjB3I,1553
91
+ runbooks/cfat/src/actions/get-enabled-org-services.ts,sha256=2FcxThAApNtO6ig2DejK1Vejs9ju6WyFoFF7tF0urVs,1220
92
+ runbooks/cfat/src/actions/get-idc-info.ts,sha256=rt90yRWCnT1xYuDyYoueGYUdTty3cVVhYH24QCoCd7E,1092
93
+ runbooks/cfat/src/actions/get-org-da-accounts.ts,sha256=XyhzdUhybLLEgvTO5uRXrFC34AQ_JMY-q-waRnMWUyA,1267
94
+ runbooks/cfat/src/actions/get-org-details.ts,sha256=YqzdTRjXyZkC7DJX6Lvq-dZ2WqjvekQdwscfwO57-6o,1310
95
+ runbooks/cfat/src/actions/get-org-member-accounts.ts,sha256=vOMYwcHIjGm5u75ces5-sdSsFglzHr5XZvT9sxgb7bo,1568
96
+ runbooks/cfat/src/actions/get-org-ous.ts,sha256=eP4i5CIN3UsP8_wx6PN4CfokGG21KWtqRKDTBkRTHsM,1316
97
+ runbooks/cfat/src/actions/get-regions.ts,sha256=Yh1FYD0tlaBdOlRImTW1o9pbIwchulYgziZcStgwzKI,710
98
+ runbooks/cfat/src/actions/zip-assessment.ts,sha256=zkn6R6Ig_S8OQMg8_gL-r_5Cmwbv6BYMeGC9HxK4zxg,936
99
+ runbooks/cfat/src/types/index.d.ts,sha256=sHx_eV4uxRZc7KjiFryqHGkzGvJ-MxxmLLYb2qk2Vl0,2932
100
+ runbooks/cfat/tests/__init__.py,sha256=Z1n7BzG5FTFXduCISbEj2d4HOG6BcMULBoiRGJqizB0,4533
101
+ runbooks/cfat/tests/test_cli.py,sha256=6FGIKozOuZUroftmbNCVaT2YlSwStwyWu2yEBjcoHq0,15111
102
+ runbooks/cfat/tests/test_integration.py,sha256=L4kkWW41Jsuzn4Tv-z_a5cY6xOo_aHzCAVjlmuGHuew,12281
103
+ runbooks/cfat/tests/test_models.py,sha256=16Dcdty82_yotJ2ngBbgydCy9BDamxtMZrs4a1t-mVM,18267
104
+ runbooks/cfat/tests/test_reporting.py,sha256=ysPZSAFgCQ7oIkOdBxUrlCiyZBhWDpcnp0I2cv3k9_Q,12631
105
+ runbooks/finops/README.md,sha256=Fm9dpPujttPLJ2ES2d_zDUZ-YrVqVkeaAM1gjlcQxCw,12983
106
+ runbooks/finops/__init__.py,sha256=5E15yPJgtCLquIx3_H20BiR0_5fmC4BOW2Zti_7fRF0,2265
107
+ runbooks/finops/aws_client.py,sha256=o9ShoAH_V1QKBlq2Li4VTrjnXNj3ezgGvenJAiPUbjY,9379
108
+ runbooks/finops/cli.py,sha256=HqU0CPhVrqD0WSxckpeHYRnJWZTAIqOygjfnflNZaoE,5227
109
+ runbooks/finops/cost_processor.py,sha256=BNyG9HpkAI27UFcoRurP3Tz1Q4BV9u_fVk6wVzf0ysU,15042
110
+ runbooks/finops/dashboard_runner.py,sha256=JDNx-MqmDuGEZXPhRTDaxlAcjzmvMpjXhOEwIkj8n2A,18281
111
+ runbooks/finops/helpers.py,sha256=TlFXLZ7oJViYlKWk7MpbWDVlG71jM8C61dM8r5yjNMw,12805
112
+ runbooks/finops/main.py,sha256=W0Lnr3GJN7Tp4QL0x09GROOc7fnttpdRmd3N3T5eULo,288
113
+ runbooks/finops/profile_processor.py,sha256=r39GYdO-v-iio13D3_yFv2Itjq-hbaiL56VXeyfU6yo,6189
114
+ runbooks/finops/types.py,sha256=Tk7sMVh-9LXxrU6IKDa6RMlxK7H3HkWUKvs1yctD_yQ,1592
115
+ runbooks/finops/visualisations.py,sha256=BI6cBsKSNUcjqnEukMzHxZzqyv12w3TRj2zvN53-Rbk,2737
116
+ runbooks/inventory/.gitignore,sha256=qqVQodfb6iNuPRM7fsl7lvqxrJaatKNQqQmX7s1_PPg,5563
117
+ runbooks/inventory/ArgumentsClass.py,sha256=BwquO-iYZNS_fVxgASrksanzoAN_NPCzRpTAyohRLX0,8621
118
+ runbooks/inventory/FAILED_SCRIPTS_TROUBLESHOOTING.md,sha256=xScVwmUGWDZySl2-5j43Dkga5ofk3UJvVqB9P6RklSw,20715
119
+ runbooks/inventory/Inventory_Modules.py,sha256=4bBfezmCtsT-r0YU7Rhfv94rxhfPfStrUkPF4q009uI,285209
120
+ runbooks/inventory/PASSED_SCRIPTS_GUIDE.md,sha256=zKUvINX2Pe_EbtJjNBo6MSMnMdJBEMqhrQR_mCbFxAY,21621
121
+ runbooks/inventory/README.md,sha256=gCubMJ8mp09hwPccr2GDbUgiFr8CoCsakp1kHHAApTU,43221
122
+ runbooks/inventory/__init__.py,sha256=J-MoV_B5ScwlqfLEZv7ZRF7iTai5Hsya0c4tiNrrVE4,2039
123
+ runbooks/inventory/account_class.py,sha256=wvYNeiXHq6tk8Pqa95Aa91zAtuBXcnE51NonzDueuaM,26361
124
+ runbooks/inventory/all_my_instances_wrapper.py,sha256=B_nHnXOFle6_LU1YnZd38uMZNV6pIONh4EvCyO-lwzw,5723
125
+ runbooks/inventory/aws_decorators.py,sha256=_3QWqih_J6tgs7_dnJwp7Al7OI0qImZpFMyO4E-bMZE,8605
126
+ runbooks/inventory/aws_organization.png,sha256=-LUsSMk9L-sPF6K3Z__FOnHIP7u4nQW9Q1rcTw1EzX8,1140649
127
+ runbooks/inventory/cfn_move_stack_instances.py,sha256=cwyOdgQCcrfQqQjPDlTZStEUUN8jp691Mwggniyx-NM,73797
128
+ runbooks/inventory/check_cloudtrail_compliance.py,sha256=rQGKuJefqBa1LCfTsVgKJ_GiP3HKqgpYX77iclOV2ko,33652
129
+ runbooks/inventory/check_controltower_readiness.py,sha256=2elNsYY_PYhcQeyjcnB4NTbZVUrHnXU70OjrzwOpwVI,56076
130
+ runbooks/inventory/check_landingzone_readiness.py,sha256=K7UayaO7QRIhNa0ewZk-Ks4iRAjUPVgMFfjkbgHVOYw,35934
131
+ runbooks/inventory/cloudtrail.md,sha256=wMgU8ki4fWjoiO9SdDGxRADtdVUVEmD6KD4tjyFtLQk,21929
132
+ runbooks/inventory/delete_s3_buckets_objects.py,sha256=o7nQQRdOXa3oW0Kfd-f1RwuLA7O5aLhg5gium3djjC0,6007
133
+ runbooks/inventory/discovery.md,sha256=cKfHx4EFMLnH3R0VIaQ3_ygx9rvAA96tC2mWqQNxowA,6079
134
+ runbooks/inventory/draw_org_structure.py,sha256=gMrXIs0FQkUCPgTRbTRwgTqLWBNzbcHZ6FFQ5L9hy0k,29769
135
+ runbooks/inventory/ec2_vpc_utils.py,sha256=bQWvEhe6hqxfj-hgpwu_ZZ9YJbfKiEbgJcAFWhwih-M,16627
136
+ runbooks/inventory/find_cfn_drift_detection.py,sha256=4kHHu4I6jBHqM9L6lFabMDVTiafaDmhA1UnXsxzgwiw,13169
137
+ runbooks/inventory/find_cfn_orphaned_stacks.py,sha256=dV9AABIrD6ccOTnSCTUA6H0t_OOs4EDW_Jn6h3RKReY,38021
138
+ runbooks/inventory/find_cfn_stackset_drift.py,sha256=yRGpH8535sXy4hMoh3s5q8IkLhTUuF54urznfRJz8f4,38128
139
+ runbooks/inventory/find_ec2_security_groups.py,sha256=f-I5Xp4e3A36za4sKEwYm_WkleJkSwcCdLlLxeFOsBs,30956
140
+ runbooks/inventory/find_landingzone_versions.py,sha256=4oYfgmH4fJ40F3YuQKAhCcBuLHRgie4fTLCftPaQXhE,10277
141
+ runbooks/inventory/find_vpc_flow_logs.py,sha256=BRwjqb4BD0K97uv8cabpn5nN1iL0DmVkClmX01hAfoA,65119
142
+ runbooks/inventory/inventory.sh,sha256=WXmBEpi9OpTu24US9LhW5PC-z6jSwTN0jdwlt-p3aok,23939
143
+ runbooks/inventory/list_cfn_stacks.py,sha256=Drgi_7RUaIZA-Z4L-eMEvmmT6nqlj-oGvwBOGOmRKlw,22399
144
+ runbooks/inventory/list_cfn_stackset_operation_results.py,sha256=1kjuv5uL-ioIWa7Dkx45XAEw3aFRClFTG8Qx1r44pSQ,12847
145
+ runbooks/inventory/list_cfn_stackset_operations.py,sha256=lYsrZ44xiHkmjKdDQLaVzm7zcabGG91N-7EWtzmWcVU,38317
146
+ runbooks/inventory/list_cfn_stacksets.py,sha256=YdEl1VogmbiYOI_fH8XdIlVCoAhk653zWuOrj7zlWos,21794
147
+ runbooks/inventory/list_config_recorders_delivery_channels.py,sha256=fCNJPpVCMlKVatrw4JsK3VSplaOkSPqChw2ufkQflQ4,36851
148
+ runbooks/inventory/list_ds_directories.py,sha256=6DZZTLHktfEeP0N75Pa0dS6nosReYR_lDwrGn97D0Mw,18923
149
+ runbooks/inventory/list_ec2_availability_zones.py,sha256=pXIhKQPyawbSWO78H1x9z15XJ81RwOU2WZd77QOsH5k,12786
150
+ runbooks/inventory/list_ec2_ebs_volumes.py,sha256=0r7d1rNbjrbZgAxJBKiT02lF7keadUa9LEgk_pnXpeA,9253
151
+ runbooks/inventory/list_ec2_instances.py,sha256=_GV9kCFLKrjh6e1AakYYLZZolxpBSugCjXUAASEbYAk,18881
152
+ runbooks/inventory/list_ecs_clusters_and_tasks.py,sha256=GoUJWb2mSFC7HSPw_s4IfN5QEx3a87SAf9nTGXvPnM4,30547
153
+ runbooks/inventory/list_elbs_load_balancers.py,sha256=r9b_KHy_J3AdcRjvq6RN55aWtiEcVXuciiE1O3yBEBY,20425
154
+ runbooks/inventory/list_enis_network_interfaces.py,sha256=2qWlSGUxnjsYowREPbL01LKcK3yFASRc8DVuRBCLij4,25840
155
+ runbooks/inventory/list_guardduty_detectors.py,sha256=ffBpQ2ZGj9MUkfMBccbJlaGhpE0IfaxuBbgZWgTCiZU,31495
156
+ runbooks/inventory/list_iam_policies.py,sha256=swwgmNOBzdM8bZpiaz-jAluvU1lDW2-iuWlwzDVenTU,18247
157
+ runbooks/inventory/list_iam_roles.py,sha256=CDU-FgAH67Fwyp7S2F3DRSFwwXDbH0Z9WLsPiwJmlsQ,22095
158
+ runbooks/inventory/list_iam_saml_providers.py,sha256=5jXUaWG_ItrLMIFrX-5m3mS2-cYabS03g6zS56q-NL8,16714
159
+ runbooks/inventory/list_lambda_functions.py,sha256=lEwLMDmt1E-d28XjzhhGI5CJPY5drMJmMyng1OR9dAg,42879
160
+ runbooks/inventory/list_org_accounts.py,sha256=LWcp9DHPvgP_RzqZ-G9e6XKEVKGbvoXqHfzj9cSO250,19149
161
+ runbooks/inventory/list_org_accounts_users.py,sha256=Duh8jtpR4WC94OT7b6AnQcywgFe3_nt1VcO08s1al5k,16512
162
+ runbooks/inventory/list_rds_db_instances.py,sha256=Mc0NA6Y8PSquwz4sGZMGTjt4Fr4ZZtoUY05IwxLHpVs,17288
163
+ runbooks/inventory/list_route53_hosted_zones.py,sha256=-Ypx5Krc6jkj2iiUe0o3SBcH7MvRYuA4xjhly83KwCA,13643
164
+ runbooks/inventory/list_servicecatalog_provisioned_products.py,sha256=8nxDdA9ybmFVu974ajf8rmTTlnxLnV_shqaIQfKl62c,27721
165
+ runbooks/inventory/list_sns_topics.py,sha256=qn1YlsZtpZSdC7lbFudBZCgW8w8DwUlVpzAW6B99-Z8,15004
166
+ runbooks/inventory/list_ssm_parameters.py,sha256=uA-69R5fGK-cPntBhliffPfki5igDQReD5q0XKHtUj8,19881
167
+ runbooks/inventory/list_vpc_subnets.py,sha256=HcKjbmU9mydJhC7QQ4f4C4MzRF6pY9xf-gCdE_42DnI,19001
168
+ runbooks/inventory/list_vpcs.py,sha256=b_54AqH_IgpJ_Qe4VcU-XKmvhfmc5rEJBLWldZw2lF4,18120
169
+ runbooks/inventory/lockdown_cfn_stackset_role.py,sha256=1qiG845cVpab3tzLT9JmVTPq4CufSExNQQRd1rm1kHo,8282
170
+ runbooks/inventory/recover_cfn_stack_ids.py,sha256=_KgQgDgZRxeyzUb5im6RM-gORZL9WmD03jKpruwp3os,8638
171
+ runbooks/inventory/requirements.txt,sha256=W8mvfeKf86CfTIeRJyqa978xJ77Cjfh4mlQ3Gb4YrCc,213
172
+ runbooks/inventory/run_on_multi_accounts.py,sha256=ecyzqffcHAoWovjoUlT643duC3sCdpCAz6z-S8vEIwU,8586
173
+ runbooks/inventory/update_aws_actions.py,sha256=y95kGJQFCt94OMWW6Dgx_R0dCJHbpx9FUQhOsfBsICc,5594
174
+ runbooks/inventory/update_cfn_stacksets.py,sha256=OlAQVT34zm1gJRp90e0GIyCWFHNzL99r9MjPxGVgwyo,64229
175
+ runbooks/inventory/update_cloudwatch_logs_retention_policy.py,sha256=WSjxo0Jiuqs_HrTKvTYBH9ISakXpusf4Iz5c45XfqdQ,12340
176
+ runbooks/inventory/update_iam_roles_cross_accounts.py,sha256=BfOqs4vdvkGVh9JvQtYr7kbG8Lmq2APQWi4vW3R84jY,21038
177
+ runbooks/inventory/update_s3_public_access_block.py,sha256=zLx4_eruUbXxsqlOcNbqcVNs7_FWjk87UdQDL3IPylg,22916
178
+ runbooks/inventory/verify_ec2_security_groups.py,sha256=iFX5AlRJWaU0DP-gwdOrsXc3zNwsRZbjZeyjcn0YMUA,68221
179
+ runbooks/inventory/LandingZone/delete_lz.py,sha256=hMwv-T8RTjQQdx9oLelABibFHGD9TFR0xkI_Hgfabw0,48920
180
+ runbooks/inventory/collectors/__init__.py,sha256=RcAYtYm1hPeAfK0QenfRRTSkE78_tTY-XKEvidjQARA,690
181
+ runbooks/inventory/collectors/aws_compute.py,sha256=MzxNqE1YWRdTVtLyJNNXgWabyvLU1kKoiKpe9Cn0RdU,21018
182
+ runbooks/inventory/collectors/aws_networking.py,sha256=qkH9j3mwko3pXYmSiIk_Nt9FhFZOi678eI9HZTW9yhY,11449
183
+ runbooks/inventory/collectors/base.py,sha256=cOFE-zUOOWYQJPxK0p9lwqPfBopS_bfX_LBrc9qq5TY,7371
184
+ runbooks/inventory/core/__init__.py,sha256=kCH8dKMGp3bAYNPQI7OegiQdglV0G1k36gUtAKT6avE,562
185
+ runbooks/inventory/core/collector.py,sha256=YYeAKgbVlJmltwZoPBCtacTSz5HYTwkEjL7z2IWjEcE,11769
186
+ runbooks/inventory/core/formatter.py,sha256=0GTQH8StHenETc0oGB8DRqASB0P1dQMwkLr9oiNATT4,12643
187
+ runbooks/inventory/models/__init__.py,sha256=LjW8NAHcDeBFvjXjAZwoo73xwQHid8f1-FiEn376omc,788
188
+ runbooks/inventory/models/account.py,sha256=G-7NtoRi8VRX6B0VoMF4qirwTNU_3ukMRGThylQKEbA,7109
189
+ runbooks/inventory/models/inventory.py,sha256=zNaQLvpshWeljbnbaTAeQ_6rJZ4HDPpwPovY7LfwrFY,11434
190
+ runbooks/inventory/models/resource.py,sha256=mSTpOv0EE5t-jZtLofsovXb1bpG9EE2HTU_0KjeE8Jo,8539
191
+ runbooks/inventory/tests/common_test_data.py,sha256=M4qRXxYu-WphsJnnumG0P7ENK3OX1Gh2AoCxFN71U4s,180677
192
+ runbooks/inventory/tests/common_test_functions.py,sha256=WKeLHuAclroH1Jhc2RyDU9L7d9L4nH6fIFS2NjNtokE,8710
193
+ runbooks/inventory/tests/script_test_data.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
+ runbooks/inventory/tests/setup.py,sha256=hig677ZZWySuWa5nlL1McAjLR3JMaFP1w6ysS9fISeg,698
195
+ runbooks/inventory/tests/src.py,sha256=5JhsRWGkrukMa8vGXbei64z_0j9K7c7uNmHk-TK8ZXE,641
196
+ runbooks/inventory/tests/test_cfn_describe_stacks.py,sha256=0Lt9pU8rlhnDo1-AnQLlSYSIzr3jl-NB6NUjj8QnRmI,7793
197
+ runbooks/inventory/tests/test_ec2_describe_instances.py,sha256=TPwK-sW3H3da30s1e-toJRpKJDhAZqE7l9sbh99buKc,8314
198
+ runbooks/inventory/tests/test_inventory_modules.py,sha256=OcGqt_Za3Se2hRbDidbcd-WZQfR3IOhsLBnAOsNhz14,2164
199
+ runbooks/inventory/tests/test_lambda_list_functions.py,sha256=4sABlsEVTxGzGtFVT5k4K5bYzK9YsX828_2_RkeHQas,3163
200
+ runbooks/inventory/tests/test_moto_integration_example.py,sha256=mBS6Tnr5Wd2EfzhhnbCqZxMEsPdjNPtu8PDrzsMT3JA,9357
201
+ runbooks/inventory/tests/test_org_list_accounts.py,sha256=otlaEcVED1bJEkwxWu0zrmMDM9JX5fvw72V0kD17j38,2233
202
+ runbooks/inventory/utils/__init__.py,sha256=c6bQD-Foq3U8tw-JK8PYR-o8K5MwJ3mJWkKi2UbDLtg,830
203
+ runbooks/inventory/utils/aws_helpers.py,sha256=rg1L69An3PLVWrTTiHGjL29Z8N51rOVYLostN8CCcwk,17124
204
+ runbooks/inventory/utils/threading_utils.py,sha256=ckizvb0QSWx1xkDanvaoUOCHaXOm2E6Abg1VQFxfJrU,16067
205
+ runbooks/inventory/utils/validation.py,sha256=HoQmEr9CSEfS1yF0uyCAW5TKlG-u9-t-YRouThSBxeA,19803
206
+ runbooks/organizations/__init__.py,sha256=R-33CAEz_sRPNfP_JCWiPbCQn4CSe6UxvpMEnT4H3AI,251
207
+ runbooks/organizations/manager.py,sha256=p9vUcGc1jGx5ke88EQ08ccexZ-TyppwU7_V5otXBJIg,14383
208
+ runbooks/security/README.md,sha256=NiOHsV8Kal5LHh3mJtEjw30rCjx-9JjnMzPjXe4_Hzo,17850
209
+ runbooks/security/__init__.py,sha256=KtHlDbIIkRTtLDrD1v4Daq1VVU8t-FH3JXbpA0GP4-k,1849
210
+ runbooks/security/config-origin.json,sha256=3mijAIymVtkf1V_BzDJPnQSBSFjrYyL-wrPBH3t8gXQ,1009
211
+ runbooks/security/config.json,sha256=3mijAIymVtkf1V_BzDJPnQSBSFjrYyL-wrPBH3t8gXQ,1009
212
+ runbooks/security/permission.json,sha256=3p9xDYEKLfOT171GE8gV2dAjgw2TFNoggGB65w2q-L8,1261
213
+ runbooks/security/report_generator.py,sha256=KUDGJDGL7XrW1LT_KmPpED5ZgNNx8X2o-Q1ivrEeGsY,6483
214
+ runbooks/security/report_template_en.html,sha256=UARo0jfvNe41W9m70r_U6kqw8arq8N7Y0G5bqq6Mk5w,7983
215
+ runbooks/security/report_template_jp.html,sha256=UARo0jfvNe41W9m70r_U6kqw8arq8N7Y0G5bqq6Mk5w,7983
216
+ runbooks/security/report_template_kr.html,sha256=m3lf59ef12qaLsd_Zs2uZlYHVru0tQwt-e7q9odrvhc,10383
217
+ runbooks/security/report_template_vn.html,sha256=UARo0jfvNe41W9m70r_U6kqw8arq8N7Y0G5bqq6Mk5w,7983
218
+ runbooks/security/run_script.py,sha256=TrydLAuZ6_1AOo-CeNRqCYWABXDXAniyQ506KP6IRKI,2322
219
+ runbooks/security/security_baseline_tester.py,sha256=YVJ1HNtqtpZ6fVZ7QhC5FU1dDM658IVjvk9XxPSkmJQ,7839
220
+ runbooks/security/checklist/__init__.py,sha256=gXjVSA36zv5jCkaw3XASG8DpLPo6Fu8yxquUdX8YSFY,455
221
+ runbooks/security/checklist/account_level_bucket_public_access.py,sha256=_sILKNiBg-33wUUxoZhUq2O-x-xC2zZU9cQUehYMxTs,3386
222
+ runbooks/security/checklist/alternate_contacts.py,sha256=D65xPRbiregtYQ76kkKjy9GxHbbI_HWGEVF7Sbeu_bU,3172
223
+ runbooks/security/checklist/bucket_public_access.py,sha256=uwMUTtzIFLX_tDpxwo55Tdv_On69vBHpPIEQqigs5SY,3354
224
+ runbooks/security/checklist/cloudwatch_alarm_configuration.py,sha256=z7jiRJNA-RXUptXE9mLAXDwahHT-LVvuUcePoSg0PFw,2360
225
+ runbooks/security/checklist/direct_attached_policy.py,sha256=zjM3olLXjlaHQxHEOYyifTiugICuLAAOCMxn9pSLKFw,2568
226
+ runbooks/security/checklist/guardduty_enabled.py,sha256=IvWjHYjgT6Qv072ZG5okW4zK02azvOw7K1DNM-InlcE,2546
227
+ runbooks/security/checklist/iam_password_policy.py,sha256=bKIxhWQQ4xuE_uxtWfm0LXCqTFRQ-ygafxMKqeFFGw4,1570
228
+ runbooks/security/checklist/iam_user_mfa.py,sha256=H3mG_rC01iF-lbKCT7IqOEyShby9QkSADXE9BOt1DyQ,1234
229
+ runbooks/security/checklist/multi_region_instance_usage.py,sha256=ziDY6lHlpsmk2f_2Z8EaZ7wOUZuaUnZiI-x_R3o50Y0,2007
230
+ runbooks/security/checklist/multi_region_trail.py,sha256=OCAejEa59rKUWU-vnVQaNxOg1wOAUQZdGzyI7r25vi4,2293
231
+ runbooks/security/checklist/root_access_key.py,sha256=8jgRebbSmnKAPrTUh5uV_tC6nz7a7-qnME6uDLI99UM,2565
232
+ runbooks/security/checklist/root_mfa.py,sha256=X8PPzRLgaNhd-MMUjm432OkjQ1RqGis-pEhQUgqwVa8,1293
233
+ runbooks/security/checklist/root_usage.py,sha256=20XEtXC2seJnUW0clME3YGrosRYP5yRTi7a_Rr5YpdA,4658
234
+ runbooks/security/checklist/trail_enabled.py,sha256=kcX7sgB7NO2YbN8i3SDkB1m5Bb00Wu6JX9cniGBsSPw,2289
235
+ runbooks/security/checklist/trusted_advisor.py,sha256=zsLQf-mFeu3aiOhGndrojoa5K4QiI1Buk5rC5Hfg_gA,674
236
+ runbooks/security/utils/__init__.py,sha256=fEyCpWrJ6S6Z5rdHJGf7WRMnRNoZ6th5HmXbESc6guM,96
237
+ runbooks/security/utils/common.py,sha256=pOLbkvdkBpLcbf4NSlwghhs7mr7S_MMvW9D7LvJ6hkE,3446
238
+ runbooks/security/utils/enums.py,sha256=BGr8EgwZrWsU8kvWkwWsPqELUPGBc2tvJ5SzN9XhWQU,1258
239
+ runbooks/security/utils/language.py,sha256=MrSAojEyjHqRDDALdk002snj4xnFbwGgIjAc2buJ8g0,60448
240
+ runbooks/security/utils/level_const.py,sha256=l8uYBmgEMjIQTGVVuXPAfDd_Psl6jNfTQw2isI43zO8,88
241
+ runbooks/security/utils/permission_list.py,sha256=nq06vlILHp9rfnCpJauCmFCOEGdgFMF-XO3uBFrrd-o,767
242
+ runbooks/utils/__init__.py,sha256=3K-CwUA_NEN9R7RT5PeELs-VLSgVKUfkV-4NJkbCg90,5770
243
+ runbooks/utils/logger.py,sha256=ifxqLjDlZoDaG8rtAGVKLZ5dAwcMn16rB4YgMfeUC3E,972
244
+ runbooks-0.7.0.dist-info/licenses/LICENSE,sha256=WAQUYGIkLJh6CPrlZgr0IsbRODa0EZ6fboBXGjfWggs,11375
245
+ runbooks-0.7.0.dist-info/METADATA,sha256=D0KfhkzoqHPWg-tBiI_oQTPs045waJRJUEj2vugBWnY,14924
246
+ runbooks-0.7.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
247
+ runbooks-0.7.0.dist-info/entry_points.txt,sha256=Us-ey766qGdkpEFj5q9sB2V-QO0O34O3yS9ezhLPjfg,262
248
+ runbooks-0.7.0.dist-info/top_level.txt,sha256=dC5G9UiKrI_9_0dBLWwpGi1JFPRp_Qspi23URlD5WyU,32
249
+ runbooks-0.7.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -0,0 +1,7 @@
1
+ [console_scripts]
2
+ cfat = runbooks.cfat.cli:main
3
+ runbooks = runbooks.main:main
4
+ runbooks-aws = runbooks.aws:run_script
5
+ runbooks-cfat = runbooks.cfat.cli:main
6
+ runbooks-finops = runbooks.finops.cli:main
7
+ runbooks-security = runbooks.security_baseline.run_script:main