Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
b8aff96
Add multi-region scanning support with parallel execution
agasthik Jun 6, 2026
64eb8fc
Add .ash/ to .gitignore
agasthik Jun 12, 2026
c7bd203
Deduplicate global findings and gate regional availability in multi-r…
agasthik Jun 14, 2026
9fa7d18
Upgrade CodeBuild image to Amazon Linux 2023 standard 6.0
agasthik Jun 14, 2026
8debcf0
Derive Step Function poll timeout from CodeBuild timeout
agasthik Jun 14, 2026
ce24543
Remove unused imports and fix f-string flagged by ruff
agasthik Jun 14, 2026
eceaa2f
Add Global region option to HTML report filters
agasthik Jun 14, 2026
84c543b
Gate regional Bedrock/AgentCore findings on resource footprint
agasthik Jun 14, 2026
2380404
Prevent TargetRegions whitespace from truncating multi-region scans
agasthik Jun 14, 2026
6eb00aa
Extend regional footprint gating to BR-04, BR-06, and BR-09
agasthik Jun 14, 2026
1fa8bb1
Rename CODEBUILD_TIMEOUT_MINUTES to avoid reserved CodeBuild prefix
agasthik Jun 14, 2026
a0dee96
Merge remote-tracking branch 'origin/main' into multiregion-support
agasthik Jun 19, 2026
4c7231f
Add FinServ region scope to reports
agasthik Jun 19, 2026
a9c3ffc
Split FinServ region filter values
agasthik Jun 19, 2026
b58d653
Show FinServ in assessment scope
agasthik Jun 19, 2026
a2c504a
Add FinServ guide references to report
agasthik Jun 19, 2026
b38eac9
Improve FinServ regional handling and report UI
agasthik Jun 19, 2026
a003928
Update report scope references
agasthik Jun 20, 2026
0d435af
Improve CloudFormation parameter validation
agasthik Jun 20, 2026
8f29016
Consolidate FinServ documentation and reports
agasthik Jun 20, 2026
3ed453c
Anonymize sample report account IDs
agasthik Jun 20, 2026
797fb5f
Apply Ruff formatting
agasthik Jun 20, 2026
6a35b3f
Update project documentation and remove stale followups
agasthik Jun 20, 2026
f07d845
Fix README reference links
agasthik Jun 21, 2026
015f9e3
Merge remote-tracking branch 'origin/main' into multiregion-support
agasthik Jun 22, 2026
3e70eed
Fix duplicate Bedrock test name
agasthik Jun 23, 2026
61d48db
Fix AgentCore pagination test hang
agasthik Jun 23, 2026
9b41a7e
Fix FinServ test patch targets
agasthik Jun 23, 2026
5c36c29
Fix empty TargetRegions SAM deploy override
agasthik Jun 23, 2026
20d71be
Normalize multi-value deployment inputs
agasthik Jun 23, 2026
0072e02
Fix AgentCore gateway lookup parameter
agasthik Jun 24, 2026
71b591a
Disable stale Bedrock access check
agasthik Jun 24, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
235 changes: 0 additions & 235 deletions .ash/.ash.yaml

This file was deleted.

2 changes: 0 additions & 2 deletions .ash/.gitignore

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ on:
- "aiml-security-assessment/functions/security/**"
- "tests/**"
- "consolidate_html_reports.py"
- "test_consolidate_finserv.py"
- "tests/test_consolidate_finserv.py"
- ".github/workflows/python-tests.yml"
pull_request:
branches: [main]
paths:
- "aiml-security-assessment/functions/security/**"
- "tests/**"
- "consolidate_html_reports.py"
- "test_consolidate_finserv.py"
- "tests/test_consolidate_finserv.py"
- ".github/workflows/python-tests.yml"

jobs:
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
AWS_ACCESS_KEY_ID: testing
AWS_SECRET_ACCESS_KEY: testing # pragma: allowlist secret
run: |
python -m pytest test_consolidate_finserv.py -v --tb=short
python -m pytest tests/test_consolidate_finserv.py -v --tb=short
cd aiml-security-assessment/functions/security/generate_consolidated_report
python -m pytest test_generate_report.py -v --tb=short

Expand Down
Loading
Loading