runbooks 0.7.0__tar.gz → 0.7.5__tar.gz

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 (336) hide show
  1. {runbooks-0.7.0 → runbooks-0.7.5}/.gitignore +1 -0
  2. runbooks-0.7.5/PKG-INFO +606 -0
  3. runbooks-0.7.5/Quickstart.md +68 -0
  4. runbooks-0.7.5/README.md +559 -0
  5. {runbooks-0.7.0 → runbooks-0.7.5}/Taskfile.yaml +1 -1
  6. {runbooks-0.7.0 → runbooks-0.7.5}/pyproject.toml +18 -4
  7. runbooks-0.7.5/src/runbooks/__init__.py +125 -0
  8. runbooks-0.7.5/src/runbooks/cfat/README.md +300 -0
  9. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/__init__.py +2 -2
  10. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/finops/__init__.py +1 -1
  11. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/finops/cli.py +1 -1
  12. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/collectors/__init__.py +8 -0
  13. runbooks-0.7.5/src/runbooks/inventory/collectors/aws_management.py +791 -0
  14. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/collectors/aws_networking.py +3 -3
  15. runbooks-0.7.5/src/runbooks/main.py +3611 -0
  16. runbooks-0.7.5/src/runbooks/operate/__init__.py +207 -0
  17. runbooks-0.7.5/src/runbooks/operate/base.py +311 -0
  18. runbooks-0.7.5/src/runbooks/operate/cloudformation_operations.py +619 -0
  19. runbooks-0.7.5/src/runbooks/operate/cloudwatch_operations.py +496 -0
  20. runbooks-0.7.5/src/runbooks/operate/dynamodb_operations.py +812 -0
  21. runbooks-0.7.5/src/runbooks/operate/ec2_operations.py +926 -0
  22. runbooks-0.7.5/src/runbooks/operate/iam_operations.py +569 -0
  23. runbooks-0.7.5/src/runbooks/operate/s3_operations.py +1211 -0
  24. runbooks-0.7.5/src/runbooks/operate/tagging_operations.py +655 -0
  25. runbooks-0.7.5/src/runbooks/remediation/CLAUDE.md +100 -0
  26. runbooks-0.7.5/src/runbooks/remediation/DOME9.md +218 -0
  27. runbooks-0.7.5/src/runbooks/remediation/README.md +26 -0
  28. runbooks-0.7.5/src/runbooks/remediation/Tests/__init__.py +0 -0
  29. runbooks-0.7.5/src/runbooks/remediation/Tests/update_policy.py +74 -0
  30. runbooks-0.7.5/src/runbooks/remediation/__init__.py +95 -0
  31. runbooks-0.7.5/src/runbooks/remediation/acm_cert_expired_unused.py +98 -0
  32. runbooks-0.7.5/src/runbooks/remediation/acm_remediation.py +875 -0
  33. runbooks-0.7.5/src/runbooks/remediation/api_gateway_list.py +167 -0
  34. runbooks-0.7.5/src/runbooks/remediation/base.py +643 -0
  35. runbooks-0.7.5/src/runbooks/remediation/cloudtrail_remediation.py +908 -0
  36. runbooks-0.7.5/src/runbooks/remediation/cloudtrail_s3_modifications.py +296 -0
  37. runbooks-0.7.5/src/runbooks/remediation/cognito_active_users.py +78 -0
  38. runbooks-0.7.5/src/runbooks/remediation/cognito_remediation.py +856 -0
  39. runbooks-0.7.5/src/runbooks/remediation/cognito_user_password_reset.py +163 -0
  40. runbooks-0.7.5/src/runbooks/remediation/commons.py +455 -0
  41. runbooks-0.7.5/src/runbooks/remediation/dynamodb_optimize.py +155 -0
  42. runbooks-0.7.5/src/runbooks/remediation/dynamodb_remediation.py +744 -0
  43. runbooks-0.7.5/src/runbooks/remediation/dynamodb_server_side_encryption.py +108 -0
  44. runbooks-0.7.5/src/runbooks/remediation/ec2_public_ips.py +134 -0
  45. runbooks-0.7.5/src/runbooks/remediation/ec2_remediation.py +892 -0
  46. runbooks-0.7.5/src/runbooks/remediation/ec2_subnet_disable_auto_ip_assignment.py +72 -0
  47. runbooks-0.7.5/src/runbooks/remediation/ec2_unattached_ebs_volumes.py +448 -0
  48. runbooks-0.7.5/src/runbooks/remediation/ec2_unused_security_groups.py +202 -0
  49. runbooks-0.7.5/src/runbooks/remediation/kms_enable_key_rotation.py +651 -0
  50. runbooks-0.7.5/src/runbooks/remediation/kms_remediation.py +717 -0
  51. runbooks-0.7.5/src/runbooks/remediation/lambda_list.py +243 -0
  52. runbooks-0.7.5/src/runbooks/remediation/lambda_remediation.py +971 -0
  53. runbooks-0.7.5/src/runbooks/remediation/multi_account.py +569 -0
  54. runbooks-0.7.5/src/runbooks/remediation/rds_instance_list.py +199 -0
  55. runbooks-0.7.5/src/runbooks/remediation/rds_remediation.py +873 -0
  56. runbooks-0.7.5/src/runbooks/remediation/rds_snapshot_list.py +192 -0
  57. runbooks-0.7.5/src/runbooks/remediation/requirements.txt +118 -0
  58. runbooks-0.7.5/src/runbooks/remediation/s3_block_public_access.py +159 -0
  59. runbooks-0.7.5/src/runbooks/remediation/s3_bucket_public_access.py +143 -0
  60. runbooks-0.7.5/src/runbooks/remediation/s3_disable_static_website_hosting.py +74 -0
  61. runbooks-0.7.5/src/runbooks/remediation/s3_downloader.py +215 -0
  62. runbooks-0.7.5/src/runbooks/remediation/s3_enable_access_logging.py +562 -0
  63. runbooks-0.7.5/src/runbooks/remediation/s3_encryption.py +526 -0
  64. runbooks-0.7.5/src/runbooks/remediation/s3_force_ssl_secure_policy.py +143 -0
  65. runbooks-0.7.5/src/runbooks/remediation/s3_list.py +141 -0
  66. runbooks-0.7.5/src/runbooks/remediation/s3_object_search.py +201 -0
  67. runbooks-0.7.5/src/runbooks/remediation/s3_remediation.py +816 -0
  68. runbooks-0.7.5/src/runbooks/remediation/scan_for_phrase.py +425 -0
  69. runbooks-0.7.5/src/runbooks/remediation/workspaces_list.py +220 -0
  70. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/__init__.py +9 -10
  71. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/security_baseline_tester.py +4 -2
  72. runbooks-0.7.5/src/runbooks.egg-info/PKG-INFO +606 -0
  73. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks.egg-info/SOURCES.txt +56 -28
  74. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks.egg-info/entry_points.txt +0 -1
  75. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks.egg-info/requires.txt +1 -1
  76. {runbooks-0.7.0 → runbooks-0.7.5}/uv.lock +5 -5
  77. runbooks-0.7.0/PKG-INFO +0 -375
  78. runbooks-0.7.0/Quickstart.md +0 -36
  79. runbooks-0.7.0/README.md +0 -328
  80. runbooks-0.7.0/src/runbooks/__init__.py +0 -75
  81. runbooks-0.7.0/src/runbooks/aws/__init__.py +0 -58
  82. runbooks-0.7.0/src/runbooks/aws/dynamodb_operations.py +0 -231
  83. runbooks-0.7.0/src/runbooks/aws/ec2_copy_image_cross-region.py +0 -195
  84. runbooks-0.7.0/src/runbooks/aws/ec2_describe_instances.py +0 -202
  85. runbooks-0.7.0/src/runbooks/aws/ec2_ebs_snapshots_delete.py +0 -186
  86. runbooks-0.7.0/src/runbooks/aws/ec2_run_instances.py +0 -213
  87. runbooks-0.7.0/src/runbooks/aws/ec2_start_stop_instances.py +0 -212
  88. runbooks-0.7.0/src/runbooks/aws/ec2_terminate_instances.py +0 -143
  89. runbooks-0.7.0/src/runbooks/aws/ec2_unused_eips.py +0 -196
  90. runbooks-0.7.0/src/runbooks/aws/ec2_unused_volumes.py +0 -188
  91. runbooks-0.7.0/src/runbooks/aws/s3_create_bucket.py +0 -142
  92. runbooks-0.7.0/src/runbooks/aws/s3_list_buckets.py +0 -152
  93. runbooks-0.7.0/src/runbooks/aws/s3_list_objects.py +0 -156
  94. runbooks-0.7.0/src/runbooks/aws/s3_object_operations.py +0 -183
  95. runbooks-0.7.0/src/runbooks/aws/tagging_lambda_handler.py +0 -183
  96. runbooks-0.7.0/src/runbooks/cfat/README.md +0 -49
  97. runbooks-0.7.0/src/runbooks/inventory/FAILED_SCRIPTS_TROUBLESHOOTING.md +0 -619
  98. runbooks-0.7.0/src/runbooks/inventory/PASSED_SCRIPTS_GUIDE.md +0 -738
  99. runbooks-0.7.0/src/runbooks/inventory/cfn_move_stack_instances.py +0 -1526
  100. runbooks-0.7.0/src/runbooks/inventory/delete_s3_buckets_objects.py +0 -169
  101. runbooks-0.7.0/src/runbooks/inventory/lockdown_cfn_stackset_role.py +0 -224
  102. runbooks-0.7.0/src/runbooks/inventory/update_aws_actions.py +0 -173
  103. runbooks-0.7.0/src/runbooks/inventory/update_cfn_stacksets.py +0 -1215
  104. runbooks-0.7.0/src/runbooks/inventory/update_cloudwatch_logs_retention_policy.py +0 -294
  105. runbooks-0.7.0/src/runbooks/inventory/update_iam_roles_cross_accounts.py +0 -478
  106. runbooks-0.7.0/src/runbooks/inventory/update_s3_public_access_block.py +0 -539
  107. runbooks-0.7.0/src/runbooks/main.py +0 -1004
  108. runbooks-0.7.0/src/runbooks/organizations/__init__.py +0 -12
  109. runbooks-0.7.0/src/runbooks/organizations/manager.py +0 -374
  110. runbooks-0.7.0/src/runbooks.egg-info/PKG-INFO +0 -375
  111. {runbooks-0.7.0 → runbooks-0.7.5}/.actrc +0 -0
  112. {runbooks-0.7.0 → runbooks-0.7.5}/.gitmodules +0 -0
  113. {runbooks-0.7.0 → runbooks-0.7.5}/.pre-commit-config.yaml +0 -0
  114. {runbooks-0.7.0 → runbooks-0.7.5}/.python-version +0 -0
  115. {runbooks-0.7.0 → runbooks-0.7.5}/CHANGELOG.md +0 -0
  116. {runbooks-0.7.0 → runbooks-0.7.5}/LICENSE +0 -0
  117. {runbooks-0.7.0 → runbooks-0.7.5}/MANIFEST.in +0 -0
  118. {runbooks-0.7.0 → runbooks-0.7.5}/README.docs.md +0 -0
  119. {runbooks-0.7.0 → runbooks-0.7.5}/docker-build-push.sh +0 -0
  120. {runbooks-0.7.0 → runbooks-0.7.5}/execute_landing_page.py +0 -0
  121. {runbooks-0.7.0 → runbooks-0.7.5}/output/dev/landing-page/css/styles.css +0 -0
  122. {runbooks-0.7.0 → runbooks-0.7.5}/output/dev/landing-page/index.html +0 -0
  123. {runbooks-0.7.0 → runbooks-0.7.5}/output/dev/landing-page/js/main.js +0 -0
  124. {runbooks-0.7.0 → runbooks-0.7.5}/references/.gitkeep +0 -0
  125. {runbooks-0.7.0 → runbooks-0.7.5}/reports/.gitkeep +0 -0
  126. {runbooks-0.7.0 → runbooks-0.7.5}/reports/figures/.gitkeep +0 -0
  127. {runbooks-0.7.0 → runbooks-0.7.5}/setup.cfg +0 -0
  128. {runbooks-0.7.0 → runbooks-0.7.5}/src/conftest.py +0 -0
  129. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/.env +0 -0
  130. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/.env.template +0 -0
  131. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/.gitattributes +0 -0
  132. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/.gradio/certificate.pem +0 -0
  133. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/README.md +0 -0
  134. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/__main__.log +0 -0
  135. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/app.py +0 -0
  136. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/cloudops-agent.png +0 -0
  137. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/ds-system-prompt.txt +0 -0
  138. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/jupyter-agent.png +0 -0
  139. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/llama3_template.jinja +0 -0
  140. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/requirements.txt +0 -0
  141. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/tmp/4ojbs8a02ir/jupyter-agent.ipynb +0 -0
  142. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/tmp/cm5iasgpm3p/jupyter-agent.ipynb +0 -0
  143. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/tmp/crqbsseag5/jupyter-agent.ipynb +0 -0
  144. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/tmp/hohanq1u097/jupyter-agent.ipynb +0 -0
  145. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/tmp/jns1sam29wm/jupyter-agent.ipynb +0 -0
  146. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/tmp/jupyter-agent.ipynb +0 -0
  147. {runbooks-0.7.0 → runbooks-0.7.5}/src/jupyter-agent/utils.py +0 -0
  148. {runbooks-0.7.0 → runbooks-0.7.5}/src/main.python101.py +0 -0
  149. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/__main__.py +0 -0
  150. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/base.py +0 -0
  151. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/app.ts +0 -0
  152. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/assessment/__init__.py +0 -0
  153. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/assessment/asana-import.csv +0 -0
  154. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/assessment/cfat-checks.csv +0 -0
  155. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/assessment/cfat.txt +0 -0
  156. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/assessment/collectors.py +0 -0
  157. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/assessment/jira-import.csv +0 -0
  158. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/assessment/runner.py +0 -0
  159. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/assessment/validators.py +0 -0
  160. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/cli.py +0 -0
  161. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/docs/asana-import.csv +0 -0
  162. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/docs/cfat-checks.csv +0 -0
  163. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/docs/cfat.txt +0 -0
  164. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/docs/checks-output.png +0 -0
  165. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/docs/cloudshell-console-run.png +0 -0
  166. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/docs/cloudshell-download.png +0 -0
  167. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/docs/cloudshell-output.png +0 -0
  168. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/docs/downloadfile.png +0 -0
  169. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/docs/jira-import.csv +0 -0
  170. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/docs/open-cloudshell.png +0 -0
  171. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/docs/report-header.png +0 -0
  172. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/models.py +0 -0
  173. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/package-lock.json +0 -0
  174. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/package.json +0 -0
  175. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/report.py +0 -0
  176. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/reporting/__init__.py +0 -0
  177. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/reporting/exporters.py +0 -0
  178. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/reporting/formatters.py +0 -0
  179. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/reporting/templates.py +0 -0
  180. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/run-assessment.sh +0 -0
  181. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/runner.py +0 -0
  182. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/check-cloudtrail-existence.ts +0 -0
  183. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/check-config-existence.ts +0 -0
  184. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/check-control-tower.ts +0 -0
  185. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/check-ec2-existence.ts +0 -0
  186. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/check-iam-users.ts +0 -0
  187. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/check-legacy-cur.ts +0 -0
  188. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/check-org-cloudformation.ts +0 -0
  189. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/check-vpc-existence.ts +0 -0
  190. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/create-asanaimport.ts +0 -0
  191. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/create-backlog.ts +0 -0
  192. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/create-jiraimport.ts +0 -0
  193. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/create-report.ts +0 -0
  194. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/define-account-type.ts +0 -0
  195. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/get-enabled-org-policy-types.ts +0 -0
  196. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/get-enabled-org-services.ts +0 -0
  197. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/get-idc-info.ts +0 -0
  198. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/get-org-da-accounts.ts +0 -0
  199. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/get-org-details.ts +0 -0
  200. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/get-org-member-accounts.ts +0 -0
  201. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/get-org-ous.ts +0 -0
  202. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/get-regions.ts +0 -0
  203. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/actions/zip-assessment.ts +0 -0
  204. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/src/types/index.d.ts +0 -0
  205. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/tests/__init__.py +0 -0
  206. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/tests/test_cli.py +0 -0
  207. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/tests/test_integration.py +0 -0
  208. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/tests/test_models.py +0 -0
  209. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/tests/test_reporting.py +0 -0
  210. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/tsconfig.json +0 -0
  211. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/cfat/webpack.config.cjs +0 -0
  212. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/config.py +0 -0
  213. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/finops/README.md +0 -0
  214. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/finops/aws_client.py +0 -0
  215. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/finops/cost_processor.py +0 -0
  216. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/finops/dashboard_runner.py +0 -0
  217. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/finops/helpers.py +0 -0
  218. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/finops/main.py +0 -0
  219. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/finops/profile_processor.py +0 -0
  220. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/finops/types.py +0 -0
  221. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/finops/visualisations.py +0 -0
  222. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/.gitignore +0 -0
  223. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/ArgumentsClass.py +0 -0
  224. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/Inventory_Modules.py +0 -0
  225. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/LandingZone/delete_lz.py +0 -0
  226. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/README.md +0 -0
  227. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/__init__.py +0 -0
  228. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/account_class.py +0 -0
  229. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/all_my_instances_wrapper.py +0 -0
  230. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/aws_decorators.py +0 -0
  231. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/aws_organization.png +0 -0
  232. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/check_cloudtrail_compliance.py +0 -0
  233. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/check_controltower_readiness.py +0 -0
  234. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/check_landingzone_readiness.py +0 -0
  235. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/cloudtrail.md +0 -0
  236. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/collectors/aws_compute.py +0 -0
  237. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/collectors/base.py +0 -0
  238. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/core/__init__.py +0 -0
  239. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/core/collector.py +0 -0
  240. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/core/formatter.py +0 -0
  241. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/discovery.md +0 -0
  242. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/draw_org_structure.py +0 -0
  243. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/ec2_vpc_utils.py +0 -0
  244. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/find_cfn_drift_detection.py +0 -0
  245. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/find_cfn_orphaned_stacks.py +0 -0
  246. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/find_cfn_stackset_drift.py +0 -0
  247. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/find_ec2_security_groups.py +0 -0
  248. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/find_landingzone_versions.py +0 -0
  249. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/find_vpc_flow_logs.py +0 -0
  250. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/inventory.sh +0 -0
  251. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_cfn_stacks.py +0 -0
  252. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_cfn_stackset_operation_results.py +0 -0
  253. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_cfn_stackset_operations.py +0 -0
  254. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_cfn_stacksets.py +0 -0
  255. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_config_recorders_delivery_channels.py +0 -0
  256. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_ds_directories.py +0 -0
  257. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_ec2_availability_zones.py +0 -0
  258. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_ec2_ebs_volumes.py +0 -0
  259. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_ec2_instances.py +0 -0
  260. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_ecs_clusters_and_tasks.py +0 -0
  261. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_elbs_load_balancers.py +0 -0
  262. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_enis_network_interfaces.py +0 -0
  263. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_guardduty_detectors.py +0 -0
  264. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_iam_policies.py +0 -0
  265. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_iam_roles.py +0 -0
  266. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_iam_saml_providers.py +0 -0
  267. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_lambda_functions.py +0 -0
  268. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_org_accounts.py +0 -0
  269. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_org_accounts_users.py +0 -0
  270. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_rds_db_instances.py +0 -0
  271. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_route53_hosted_zones.py +0 -0
  272. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_servicecatalog_provisioned_products.py +0 -0
  273. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_sns_topics.py +0 -0
  274. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_ssm_parameters.py +0 -0
  275. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_vpc_subnets.py +0 -0
  276. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/list_vpcs.py +0 -0
  277. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/models/__init__.py +0 -0
  278. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/models/account.py +0 -0
  279. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/models/inventory.py +0 -0
  280. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/models/resource.py +0 -0
  281. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/recover_cfn_stack_ids.py +0 -0
  282. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/requirements.txt +0 -0
  283. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/run_on_multi_accounts.py +0 -0
  284. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/tests/common_test_data.py +0 -0
  285. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/tests/common_test_functions.py +0 -0
  286. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/tests/script_test_data.py +0 -0
  287. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/tests/setup.py +0 -0
  288. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/tests/src.py +0 -0
  289. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/tests/test_cfn_describe_stacks.py +0 -0
  290. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/tests/test_ec2_describe_instances.py +0 -0
  291. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/tests/test_inventory_modules.py +0 -0
  292. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/tests/test_lambda_list_functions.py +0 -0
  293. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/tests/test_moto_integration_example.py +0 -0
  294. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/tests/test_org_list_accounts.py +0 -0
  295. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/utils/__init__.py +0 -0
  296. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/utils/aws_helpers.py +0 -0
  297. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/utils/threading_utils.py +0 -0
  298. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/utils/validation.py +0 -0
  299. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/inventory/verify_ec2_security_groups.py +0 -0
  300. {runbooks-0.7.0/src/runbooks/aws → runbooks-0.7.5/src/runbooks/operate}/tags.json +0 -0
  301. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/README.md +0 -0
  302. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/checklist/__init__.py +0 -0
  303. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/checklist/account_level_bucket_public_access.py +0 -0
  304. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/checklist/alternate_contacts.py +0 -0
  305. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/checklist/bucket_public_access.py +0 -0
  306. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/checklist/cloudwatch_alarm_configuration.py +0 -0
  307. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/checklist/direct_attached_policy.py +0 -0
  308. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/checklist/guardduty_enabled.py +0 -0
  309. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/checklist/iam_password_policy.py +0 -0
  310. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/checklist/iam_user_mfa.py +0 -0
  311. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/checklist/multi_region_instance_usage.py +0 -0
  312. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/checklist/multi_region_trail.py +0 -0
  313. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/checklist/root_access_key.py +0 -0
  314. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/checklist/root_mfa.py +0 -0
  315. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/checklist/root_usage.py +0 -0
  316. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/checklist/trail_enabled.py +0 -0
  317. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/checklist/trusted_advisor.py +0 -0
  318. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/config-origin.json +0 -0
  319. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/config.json +0 -0
  320. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/permission.json +0 -0
  321. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/report_generator.py +0 -0
  322. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/report_template_en.html +0 -0
  323. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/report_template_jp.html +0 -0
  324. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/report_template_kr.html +0 -0
  325. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/report_template_vn.html +0 -0
  326. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/run_script.py +0 -0
  327. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/utils/__init__.py +0 -0
  328. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/utils/common.py +0 -0
  329. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/utils/enums.py +0 -0
  330. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/utils/language.py +0 -0
  331. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/utils/level_const.py +0 -0
  332. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/security/utils/permission_list.py +0 -0
  333. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/utils/__init__.py +0 -0
  334. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks/utils/logger.py +0 -0
  335. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks.egg-info/dependency_links.txt +0 -0
  336. {runbooks-0.7.0 → runbooks-0.7.5}/src/runbooks.egg-info/top_level.txt +0 -0
@@ -199,3 +199,4 @@ crewai/agentic_rag/sit_test_env
199
199
  *storybook.log
200
200
  storybook-static
201
201
  test_logs_*
202
+ reports/tests
@@ -0,0 +1,606 @@
1
+ Metadata-Version: 2.4
2
+ Name: runbooks
3
+ Version: 0.7.5
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.5
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
+ ### 🎯 **Modern CLI Commands Overview**
134
+
135
+ CloudOps Runbooks now provides enterprise-grade CLI commands for comprehensive AWS operations:
136
+
137
+ ```bash
138
+ # 🎯 STANDARDIZED CLI (Human & AI-Agent Friendly) v0.7.3
139
+ runbooks --help # Main CLI help
140
+ runbooks inventory collect # Read-only discovery & analysis
141
+ runbooks operate ec2 start # Resource lifecycle operations
142
+ runbooks cfat assess # Cloud Foundations Assessment
143
+ runbooks security assess # Security Baseline Testing
144
+ runbooks org list-ous # Organizations Management
145
+ runbooks finops dashboard # Cost and Usage Analytics
146
+
147
+ # 🤖 AI-Agent Optimized: Consistent options across all commands
148
+ # --profile, --region, --dry-run, --output, --force (where applicable)
149
+ ```
150
+
151
+ ### 🔰 Level 1: Basic Single Account Discovery
152
+
153
+ **Goal**: Discover EC2 instances in your current AWS account
154
+
155
+ ```bash
156
+ # Set up your AWS credentials
157
+ export AWS_PROFILE="your-aws-profile"
158
+ aws sts get-caller-identity # Verify access
159
+
160
+ # Basic EC2 instance discovery
161
+ cd CloudOps-Runbooks
162
+ python src/runbooks/inventory/list_ec2_instances.py --profile $AWS_PROFILE --regions us-east-1 --timing
163
+
164
+ # Example output:
165
+ # Finding instances from 1 locations: 100%|██████████| 1/1 [00:02<00:00, 2.43 locations/s]
166
+ # Found 12 instances across 1 account across 1 region
167
+ # This script completed in 3.45 seconds
168
+ ```
169
+
170
+ ### 🏃 Level 2: Multi-Service Resource Discovery
171
+
172
+ **Goal**: Discover multiple AWS resource types efficiently
173
+
174
+ ```bash
175
+ # EBS Volumes with orphan detection
176
+ python src/runbooks/inventory/list_ec2_ebs_volumes.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
177
+
178
+ # Lambda Functions with cost analysis
179
+ python src/runbooks/inventory/list_lambda_functions.py --profile $AWS_PROFILE --regions ap-southeast-2
180
+
181
+ # RDS Instances across multiple regions
182
+ python src/runbooks/inventory/list_rds_db_instances.py --profile $AWS_PROFILE --regions us-east-1,eu-west-1,ap-southeast-2
183
+
184
+ # Security Groups analysis
185
+ python src/runbooks/inventory/find_ec2_security_groups.py --profile $AWS_PROFILE --regions us-east-1 --defaults
186
+ ```
187
+
188
+ ### 🏢 Level 3: Enterprise Multi-Account Operations
189
+
190
+ **Goal**: Organization-wide resource discovery and compliance
191
+
192
+ ```bash
193
+ # Comprehensive inventory across AWS Organizations
194
+ python src/runbooks/inventory/list_org_accounts.py --profile $AWS_PROFILE
195
+
196
+ # Multi-account CloudFormation stack discovery
197
+ python src/runbooks/inventory/list_cfn_stacks.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
198
+
199
+ # Organization-wide GuardDuty detector inventory
200
+ python src/runbooks/inventory/list_guardduty_detectors.py --profile $AWS_PROFILE --regions ap-southeast-2
201
+
202
+ # CloudTrail compliance validation
203
+ python src/runbooks/inventory/check_cloudtrail_compliance.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
204
+ ```
205
+
206
+ ### 🚀 Level 4: Autonomous Testing Framework
207
+
208
+ **Goal**: Automated testing and validation of entire inventory suite
209
+
210
+ ```bash
211
+ # Test individual script
212
+ ./src/runbooks/inventory/inventory.sh list_ec2_instances.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
213
+
214
+ # Test specific script category with detailed analysis
215
+ ./src/runbooks/inventory/inventory.sh list_ec2_ebs_volumes.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
216
+
217
+ # Full autonomous test suite (20+ core scripts)
218
+ ./src/runbooks/inventory/inventory.sh all --profile $AWS_PROFILE --regions ap-southeast-2 --timing
219
+
220
+ # Review test results and analysis
221
+ ls test_logs_*/
222
+ cat test_logs_*/test_execution.log
223
+ ```
224
+
225
+ ### 🔬 Level 5: Advanced Integration & Analysis
226
+
227
+ **Goal**: Production-grade automation with comprehensive reporting
228
+
229
+ ```bash
230
+ # 1. VPC Network Discovery with Subnet Analysis
231
+ python src/runbooks/inventory/list_vpc_subnets.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
232
+ python src/runbooks/inventory/list_vpcs.py --profile $AWS_PROFILE --regions ap-southeast-2
233
+
234
+ # 2. Load Balancer Infrastructure Mapping
235
+ python src/runbooks/inventory/list_elbs_load_balancers.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
236
+
237
+ # 3. IAM Security Posture Assessment
238
+ python src/runbooks/inventory/list_iam_roles.py --profile $AWS_PROFILE --timing
239
+ python src/runbooks/inventory/list_iam_policies.py --profile $AWS_PROFILE --timing
240
+
241
+ # 4. ECS Container Platform Discovery
242
+ python src/runbooks/inventory/list_ecs_clusters_and_tasks.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
243
+
244
+ # 5. Network Interface and ENI Analysis
245
+ python src/runbooks/inventory/list_enis_network_interfaces.py --profile $AWS_PROFILE --regions ap-southeast-2 --timing
246
+ ```
247
+
248
+ ### 🎯 Level 6: Specialized Operations
249
+
250
+ **Goal**: Advanced scenarios for specific use cases
251
+
252
+ ```bash
253
+ # 1. Landing Zone Readiness Assessment
254
+ python src/runbooks/inventory/check_landingzone_readiness.py --profile $AWS_PROFILE
255
+
256
+ # 2. CloudFormation Drift Detection
257
+ python src/runbooks/inventory/find_cfn_drift_detection.py --profile $AWS_PROFILE --regions ap-southeast-2
258
+
259
+ # 3. Organizations Structure Analysis
260
+ python src/runbooks/inventory/list_org_accounts_users.py --profile $AWS_PROFILE --timing
261
+
262
+ # 4. Config Compliance Monitoring
263
+ python src/runbooks/inventory/list_config_recorders_delivery_channels.py --profile $AWS_PROFILE --regions ap-southeast-2
264
+
265
+ # 5. Route53 DNS Infrastructure
266
+ python src/runbooks/inventory/list_route53_hosted_zones.py --profile $AWS_PROFILE --timing
267
+ ```
268
+
269
+ ### 📊 Integration Examples
270
+
271
+ **Modern Architecture Integration:**
272
+
273
+ ```python
274
+ # collectors/ and core/ directories provide modern modular architecture
275
+ from runbooks.inventory.collectors.aws_compute import ComputeCollector
276
+ from runbooks.inventory.core.collector import InventoryCollector
277
+ from runbooks.inventory.core.formatter import OutputFormatter
278
+
279
+ # Enterprise-grade type-safe collection
280
+ collector = InventoryCollector(profile='production')
281
+ results = collector.collect_compute_resources(include_costs=True)
282
+ formatter = OutputFormatter()
283
+ report = formatter.generate_html_report(results)
284
+ ```
285
+
286
+ ## 🏢 **Level 7: Enterprise CLI Operations**
287
+
288
+ ### **AWS Resource Operations**
289
+
290
+ **Goal**: Comprehensive AWS resource lifecycle management with enterprise safety features
291
+
292
+ ```bash
293
+ # EC2 Instance Operations
294
+ runbooks operate ec2 start --instance-ids i-1234567890abcdef0 --profile production
295
+ runbooks operate ec2 stop --instance-ids i-1234567890abcdef0 i-0987654321fedcba0 --dry-run
296
+ runbooks operate ec2 terminate --instance-ids i-1234567890abcdef0 --force
297
+
298
+ # S3 Bucket Operations with Security Best Practices
299
+ runbooks operate s3 create-bucket --bucket-name secure-prod-bucket \
300
+ --encryption --versioning --public-access-block --region us-west-2
301
+ runbooks operate s3 delete-bucket-and-objects --bucket-name old-test-bucket --dry-run
302
+ runbooks operate s3 set-public-access-block --account-id 123456789012 --profile management
303
+
304
+ # CloudFormation StackSet Operations
305
+ runbooks operate cloudformation move-stack-instances \
306
+ --source-stackset-name old-baseline --target-stackset-name new-baseline \
307
+ --account-ids 111111111111,222222222222 --regions us-east-1,us-west-2 --dry-run
308
+ runbooks operate cloudformation lockdown-stackset-role \
309
+ --target-role-name AWSCloudFormationStackSetExecutionRole \
310
+ --management-account-id 123456789012
311
+
312
+ # IAM Cross-Account Role Management
313
+ runbooks operate iam update-roles-cross-accounts \
314
+ --role-name CrossAccountAccessRole \
315
+ --trusted-account-ids 111111111111,222222222222 \
316
+ --external-id MySecureExternalId --require-mfa
317
+
318
+ # CloudWatch Log Management
319
+ runbooks operate cloudwatch update-log-retention-policy \
320
+ --retention-days 30 --update-all-log-groups --profile production
321
+
322
+ # DynamoDB Table Operations
323
+ runbooks operate dynamodb create-table \
324
+ --table-name user-sessions --hash-key user_id --range-key session_id \
325
+ --billing-mode PAY_PER_REQUEST --tags Environment=production Team=backend
326
+ runbooks operate dynamodb backup-table --table-name critical-data --backup-name weekly-backup
327
+ runbooks operate dynamodb delete-table --table-name temp-table --confirm --dry-run
328
+
329
+ # Cross-Service Resource Tagging
330
+ runbooks operate tag apply-template --template production \
331
+ --resource-arns arn:aws:ec2:us-east-1:123456789012:instance/i-1234567890abcdef0
332
+ ```
333
+
334
+ ### **Cloud Foundations Assessment Tool (CFAT)**
335
+
336
+ **Goal**: Comprehensive AWS account assessment against best practices
337
+
338
+ ```bash
339
+ # Basic CFAT assessment with HTML report
340
+ runbooks cfat assess --profile production
341
+
342
+ # Multiple output formats with compliance framework
343
+ runbooks cfat assess --profile prod \
344
+ --compliance-framework "AWS Well-Architected" \
345
+ --output all \
346
+ --serve-web --web-port 8080
347
+
348
+ # Targeted assessment with specific categories
349
+ runbooks cfat assess --profile dev \
350
+ --categories iam,s3,vpc \
351
+ --severity CRITICAL \
352
+ --parallel --max-workers 10
353
+
354
+ # Export results to project management tools
355
+ runbooks cfat assess --profile staging \
356
+ --export-jira --export-asana \
357
+ --output json
358
+ ```
359
+
360
+ ### **Security Baseline Assessment**
361
+
362
+ **Goal**: Multi-language security compliance validation
363
+
364
+ ```bash
365
+ # Comprehensive security assessment (English)
366
+ runbooks security assess --profile production --language EN
367
+
368
+ # Localized security reports for global teams
369
+ runbooks security assess --profile prod-asia \
370
+ --language JP --format html --output /reports/security
371
+
372
+ # Run specific security checks
373
+ runbooks security check root_mfa --profile management
374
+ runbooks security check iam_password_policy --profile prod
375
+
376
+ # List available security checks
377
+ runbooks security list-checks
378
+
379
+ # Multiple checks with JSON output
380
+ runbooks security assess --profile dev \
381
+ --checks root_mfa --checks bucket_public_access \
382
+ --format json
383
+ ```
384
+
385
+ ### **AWS Organizations Management**
386
+
387
+ **Goal**: Enterprise OU structure setup and management
388
+
389
+ ```bash
390
+ # List current organizational structure
391
+ runbooks org list-ous --profile management --output table
392
+
393
+ # Setup standard OU structure (dry-run first)
394
+ runbooks org setup-ous --profile management \
395
+ --template standard --dry-run
396
+
397
+ # Create production OU structure
398
+ runbooks org setup-ous --profile management \
399
+ --template security
400
+
401
+ # Custom OU structure from file
402
+ runbooks org setup-ous --profile management \
403
+ --file custom-ou-structure.yaml
404
+
405
+ # Export OU structure to different formats
406
+ runbooks org list-ous --profile management --output json > ou-structure.json
407
+ runbooks org list-ous --profile management --output yaml > ou-structure.yaml
408
+
409
+ # Delete empty organizational unit (with confirmation)
410
+ runbooks org delete-ou ou-1234567890abcdef --confirm
411
+ ```
412
+
413
+ ### **Advanced Multi-Command Workflows**
414
+
415
+ **Goal**: Combine multiple tools for comprehensive AWS operations
416
+
417
+ ```bash
418
+ # 1. Complete AWS account assessment and remediation workflow
419
+ echo "🔍 Step 1: Security Baseline Assessment"
420
+ runbooks security assess --profile prod --language EN --format json > security-report.json
421
+
422
+ echo "🏗️ Step 2: Cloud Foundations Assessment"
423
+ runbooks cfat assess --profile prod --output all --compliance-framework "AWS Well-Architected"
424
+
425
+ echo "🏢 Step 3: Organizations Structure Review"
426
+ runbooks org list-ous --profile management --output yaml > current-ou-structure.yaml
427
+
428
+ echo "📊 Step 4: Resource Inventory"
429
+ runbooks inventory collect -r ec2 -r s3 --profile prod --output json > resource-inventory.json
430
+
431
+ echo "⚙️ Step 5: Automated Remediation"
432
+ runbooks operate s3 set-public-access-block --account-id 123456789012 --profile management
433
+ runbooks operate cloudwatch update-log-retention-policy --retention-days 90 --update-all
434
+ runbooks operate tag apply-template --template production --resource-arns $(cat resource-inventory.json | jq -r '.ec2[].arn')
435
+
436
+ # 2. Setup new AWS environment workflow with security hardening
437
+ echo "🚀 Setting up new secure AWS environment"
438
+ runbooks org setup-ous --template security --profile management
439
+ runbooks operate s3 set-public-access-block --account-id NEW_ACCOUNT_ID --profile management
440
+ runbooks operate iam update-roles-cross-accounts --role-name CrossAccountAuditRole --trusted-account-ids AUDIT_ACCOUNT_ID
441
+ runbooks security assess --profile new-account --language EN
442
+ runbooks cfat assess --profile new-account --categories iam,s3,vpc,security --output html
443
+
444
+ # 3. Disaster recovery and cleanup workflow
445
+ echo "🔧 Emergency cleanup and recovery"
446
+ runbooks operate ec2 stop --instance-ids $(runbooks inventory collect -r ec2 --filter state=running --output json | jq -r '.[].InstanceId') --dry-run
447
+ runbooks operate s3 delete-bucket-and-objects --bucket-name old-backup-bucket --dry-run
448
+ runbooks operate cloudformation move-stack-instances --source-stackset old-infra --target-stackset new-infra --dry-run
449
+
450
+ # 4. Compliance and governance workflow
451
+ echo "📋 Running compliance checks and governance"
452
+ runbooks security assess --profile all-accounts --format json
453
+ runbooks cfat assess --profile all-accounts --compliance-framework "SOC2" --export-jira
454
+ runbooks org list-ous --profile management --output json
455
+ runbooks operate tag apply-template --template compliance --resource-arns $(runbooks inventory collect --profile all-accounts | jq -r '.[].arn')
456
+ ```
457
+
458
+ ### 📈 Performance & Success Metrics
459
+
460
+ **Enterprise CLI Results (Latest v0.7.3):**
461
+ - ✅ **Production-Ready CLI**: 18+ complete AWS operations across all major services
462
+ - ✅ **Complete EC2 Operations**: 7/7 commands (start, stop, terminate, run, copy, cleanup)
463
+ - ✅ **Complete S3 Operations**: 3/3 commands (create, delete, public-access-block)
464
+ - ✅ **Enterprise CloudFormation**: 3/3 commands (move-instances, lockdown-role, update-stacksets)
465
+ - ✅ **IAM & CloudWatch**: Complete operational commands for enterprise management
466
+ - ✅ **DynamoDB Operations**: 3/3 commands (create-table, delete-table, backup-table)
467
+ - ✅ **KISS Architecture**: No legacy directories - clean, maintainable codebase
468
+ - ✅ **Standardized CLI**: Consistent options across all commands for human & AI-Agent use
469
+ - ✅ **Complete Migration**: All AWS operations properly categorized (inventory vs operate)
470
+ - ✅ **CFAT Module**: Fully integrated with enterprise features and web reporting
471
+ - ✅ **Security Module**: 15+ security checks with multi-language support (EN, JP, KR, VN)
472
+ - ✅ **Organizations Module**: Complete OU management with template-based setup
473
+ - ✅ **Legacy Inventory**: 20/43 core scripts passing (47% success rate) - maintained compatibility
474
+ - ⚡ **Performance**: 8-12 seconds average execution, parallel processing support
475
+ - 🏗️ **Architecture**: Modern modular design with collectors/, core/, operate/, and assessment/ directories
476
+ - 🔧 **Integration**: Enhanced with EC2, S3, CloudFormation, IAM, and CloudWatch operations
477
+ - 🤖 **AI-Agent Ready**: Predictable CLI patterns, consistent error handling, standardized outputs
478
+
479
+ ## 📋 Architecture Overview
480
+
481
+ ### 🏗️ **Enterprise Module Structure**
482
+
483
+ ```
484
+ src/runbooks/
485
+ ├── 🏛️ cfat/ # Cloud Foundations Assessment Tool
486
+ │ ├── assessment/ # Assessment engine and runners
487
+ │ │ ├── runner.py # CloudFoundationsAssessment (enhanced)
488
+ │ │ ├── collectors.py # AWS resource collection logic
489
+ │ │ └── validators.py # Compliance rule validation
490
+ │ ├── reporting/ # Multi-format report generation
491
+ │ │ ├── formatters.py # HTML, JSON, CSV, Markdown generators
492
+ │ │ ├── templates.py # Executive, Technical, Compliance templates
493
+ │ │ └── exporters.py # Jira, Asana, ServiceNow integration
494
+ │ ├── tests/ # Comprehensive test suite
495
+ │ ├── models.py # Pydantic data models with validation
496
+ │ └── cli.py # Enterprise CLI with web server
497
+ ├── 🔒 security/ # Security Baseline Assessment
498
+ │ ├── checklist/ # 15+ security validation modules
499
+ │ ├── security_baseline_tester.py # Multi-language assessment engine
500
+ │ ├── report_generator.py # HTML reports with remediation
501
+ │ └── utils/ # Security-specific utilities
502
+ ├── 📊 inventory/ # Multi-account Resource Discovery
503
+ │ ├── core/ # Business Logic & Orchestration
504
+ │ │ ├── collector.py # Main inventory orchestration engine
505
+ │ │ ├── formatter.py # Multi-format output handling
506
+ │ │ └── session_manager.py # AWS session management
507
+ │ ├── collectors/ # Specialized Resource Collectors
508
+ │ │ ├── base.py # Abstract base collector interface
509
+ │ │ ├── aws_compute.py # EC2, Lambda, ECS, Batch
510
+ │ │ ├── aws_networking.py # VPC, ELB, Route53, CloudFront
511
+ │ │ └── aws_management.py # Organizations, CloudFormation, SSM
512
+ │ ├── models/ # Type-safe Data Structures
513
+ │ │ ├── account.py # AWS account representation
514
+ │ │ ├── resource.py # Resource models with metadata
515
+ │ │ └── inventory.py # Collection results and analytics
516
+ │ ├── utils/ # Shared Utilities & Helpers
517
+ │ │ ├── aws_helpers.py # AWS session and API utilities
518
+ │ │ ├── threading_utils.py # Concurrent execution helpers
519
+ │ │ └── validation.py # Input validation and sanitization
520
+ │ └── 📜 legacy/ # Legacy Script Compatibility
521
+ │ └── migration_guide.md # Legacy script migration guide
522
+ ├── ⚙️ operate/ # AWS Resource Operations (v0.7.3 - KISS Principle)
523
+ │ ├── base.py # Abstract operation framework
524
+ │ ├── ec2_operations.py # Complete EC2 lifecycle operations
525
+ │ ├── s3_operations.py # Complete S3 bucket and object operations
526
+ │ ├── dynamodb_operations.py # DynamoDB table operations
527
+ │ ├── cloudformation_operations.py # CloudFormation and StackSet operations
528
+ │ ├── iam_operations.py # IAM role and policy operations
529
+ │ ├── cloudwatch_operations.py # CloudWatch logs and metrics
530
+ │ ├── tagging_operations.py # Cross-service resource tagging
531
+ │ └── tags.json # Shared tag templates (no legacy complexity)
532
+ ├── 💰 finops/ # Cost and Usage Analytics
533
+ ├── 🛠️ utils/ # Core Framework Utilities
534
+ ├── 🧪 tests/ # Enterprise Test Framework
535
+ └── 📖 docs/ # Comprehensive Documentation
536
+ ```
537
+
538
+ ## 🧪 Testing & Development
539
+
540
+ ### Running Tests
541
+
542
+ ```bash
543
+ # Run full test suite
544
+ task test
545
+
546
+ # Run specific test categories
547
+ pytest tests/unit/test_inventory.py -v
548
+ pytest tests/integration/test_collectors.py -v
549
+
550
+ # Test with coverage
551
+ task _test.coverage
552
+
553
+ # Test inventory module specifically
554
+ task inventory.test
555
+ ```
556
+
557
+ ### Development Workflow
558
+
559
+ ```bash
560
+ # Install development dependencies
561
+ task install
562
+
563
+ # Code quality checks
564
+ task code_quality
565
+
566
+ # Validate module structure
567
+ task inventory.validate
568
+
569
+ # Full validation workflow
570
+ task validate
571
+ ```
572
+
573
+ ## 📚 Documentation
574
+
575
+ - [API Reference](docs/api-reference.md)
576
+ - [Configuration Guide](docs/configuration.md)
577
+ - [Migration Guide](src/runbooks/inventory/legacy/migration_guide.md)
578
+ - [Contributing Guide](CONTRIBUTING.md)
579
+
580
+
581
+ ## 🚦 Roadmap
582
+
583
+ - **v1.0** (Q4 2025): Enhanced AI agent orchestration
584
+ - **v1.5** (Q1 2026): Self-healing infrastructure capabilities
585
+
586
+ ## 📝 License
587
+
588
+ This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.
589
+
590
+ ## 🆘 Support
591
+
592
+ ### Community
593
+ - [GitHub Issues](https://github.com/1xOps/CloudOps-Runbooks/issues)
594
+ - [Discussions](https://github.com/1xOps/CloudOps-Runbooks/discussions)
595
+
596
+ ### Enterprise Support
597
+ - Professional services and training available
598
+ - Custom collector development
599
+ - Enterprise deployment assistance
600
+ - Contact: [info@oceansoft.io](mailto:info@oceansoft.io)
601
+
602
+ ---
603
+
604
+ **Built with ❤️ by the xOps team at OceanSoft**
605
+
606
+ [Website](https://cloudops.oceansoft.io) • [Documentation](https://cloudops.oceansoft.io/runbooks/) • [GitHub](https://github.com/1xOps/CloudOps-Runbooks)
@@ -0,0 +1,68 @@
1
+ # CloudOps Runbooks - Manager Review
2
+
3
+ > * ✅ CLI Framework: python -m runbooks works perfectly
4
+ > * ✅ All Modules: cfat, inventory, operate, security, finops, utils (v0.7.3)
5
+ > * ✅ AWS Operations: Complete enterprise CLI with 15+ operations across all major services
6
+
7
+ ## ✅ VALIDATED DELIVERABLES
8
+
9
+ ### 🎯 Cross-Check Validation Commands
10
+
11
+ ```bash
12
+ ## Install & setup
13
+ task install
14
+
15
+ ## Core validation workflow
16
+ task test-cli ## CLI framework validation
17
+ task module.test-quick ## All modules validation (NEW)
18
+ task validate ## Complete validation
19
+ ```
20
+
21
+ ```bash
22
+ ## Test all runbooks modules
23
+ task module.test-quick ## Quick syntax + CLI validation
24
+ task module.test-all ## Complete test suite
25
+ task module.lint ## Code quality all modules
26
+ task module.validate ## Import validation all modules
27
+
28
+ ## Legacy commands still work
29
+ task inventory.test-quick ## Backward compatible
30
+ ```
31
+
32
+ ### 🎯 STANDARDIZED CLI (Human & AI-Agent Optimized) v0.7.3
33
+
34
+ ```bash
35
+ ## 🤖 AI-AGENT FRIENDLY: Consistent options across ALL commands
36
+ ## Standard options: --profile, --region, --dry-run, --output, --force
37
+
38
+ ## 📊 READ-ONLY Discovery & Analysis (inventory)
39
+ runbooks inventory collect --resources ec2,rds --dry-run --output json
40
+ runbooks inventory collect --all-accounts --regions us-east-1,us-west-2
41
+ runbooks inventory collect --tags Environment=prod --include-costs
42
+
43
+ ## ⚙️ RESOURCE Operations (operate) - KISS Architecture
44
+ runbooks operate ec2 start --instance-ids i-1234567890abcdef0 --dry-run
45
+ runbooks operate ec2 stop --instance-ids i-1234567890abcdef0 --force
46
+ runbooks operate s3 create-bucket --bucket-name secure-bucket --encryption
47
+ runbooks operate s3 create-bucket --bucket-name test --versioning --dry-run
48
+ runbooks operate dynamodb create-table --table-name users --hash-key id --billing-mode PAY_PER_REQUEST --dry-run
49
+ runbooks operate dynamodb backup-table --table-name critical-data --backup-name weekly-backup
50
+
51
+ ## 🏛️ Assessment & Compliance
52
+ runbooks cfat assess --categories security,cost --output html --dry-run
53
+ runbooks security assess --language EN --output json --profile production
54
+ runbooks org list-ous --output yaml --profile management
55
+
56
+ ## 💰 Cost & Analytics
57
+ runbooks finops dashboard --time-range 30 --report-type json,pdf
58
+
59
+ ## 🎯 PERFECT for AI-Agents: Predictable patterns, consistent outputs
60
+ ## No legacy complexity - clean KISS architecture
61
+ ```
62
+
63
+ ## 📈 PyPI Publication
64
+
65
+ ```bash
66
+ task build ## Build package
67
+ task publish ## Publish to PyPI
68
+ ```