Ensure you are authenticated in your AWS console. Click the button below to launch CloudShell in your browser:
🚀 Open AWS CloudShell in New Tab ↗Copy the following command and paste it into CloudShell. It clones the runner, prepares the Python virtual environment, downloads the upstream engine, and compiles the interface:
sh -c '
clear
cd /tmp && rm -rf wa-assessment-runner
git clone -q https://gitlab.com/roFriday/wa-assessment-runner.git
cd wa-assessment-runner
bash scripts/setup.sh
'
Select the type of cloud assessment you want to run against your AWS account:
Full Well-Architected assessment covering all 5 pillars (Security, Cost Optimization, Reliability, Performance, and Operational Excellence):
sh -c '
clear
cd /tmp/wa-assessment-runner
bash scripts/scan.sh --profile full
'
100% Cybersecurity audit: Compliance security frameworks (CIS Benchmark, NIST CSF, SSB, FTR, MSR) with cost reporting disabled:
sh -c '
clear
cd /tmp/wa-assessment-runner
bash scripts/scan.sh --profile security
'
100% FinOps audit: Runs assessment and slices report to highlight exclusively Cost Optimization and Cost Optimization Hub findings:
sh -c '
clear
cd /tmp/wa-assessment-runner
bash scripts/scan.sh --profile finops
'
Customize your access credentials and copy this command. It packages the report and deploys it to a global CDN with HTTP Basic Auth:
sh -c '
clear
cd /tmp/wa-assessment-runner
bash scripts/deploy.sh --user "admin" --pass "roFriday2026!"
'
Safely deletes the temporary Amplify app created for this report and cleans ephemeral CloudShell storage:
sh -c '
clear
cd /tmp/wa-assessment-runner
bash scripts/cleanup.sh
'