📊
Interactive Example Report LIVE DEMO

Explore a pre-generated sample assessment hosted live on AWS Amplify with real audit findings.

User: admin Pass: roFriday2026!
🚀 Open Sample Report ↗
🛡️ roFriday Cloud Security 100% FOSS Core 📊 Live Demo ↗ 🌐 rofriday.com ↗ 🦊 GitLab Repo ↗

roFriday Cloud Assessment Runner

Interactive guide for Well-Architected, Cybersecurity, and FinOps audits in AWS CloudShell, deployed to AWS Amplify Hosting with password protection.

1
Open AWS CloudShell

Ensure you are authenticated in your AWS console. Click the button below to launch CloudShell in your browser:

🚀 Open AWS CloudShell in New Tab ↗
2
Environment Setup (Download & Build)

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:

Bash Shell
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
'


3
Run Assessment (Choose Your Profile)

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):

Bash Shell
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:

Bash Shell
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:

Bash Shell
sh -c '
clear
cd /tmp/wa-assessment-runner
bash scripts/scan.sh --profile finops
'


4
Publish to AWS Amplify with Password Protection

Customize your access credentials and copy this command. It packages the report and deploys it to a global CDN with HTTP Basic Auth:

Bash Shell
sh -c '
clear
cd /tmp/wa-assessment-runner
bash scripts/deploy.sh --user "admin" --pass "roFriday2026!"
'


5
Teardown & Clean Created Resources

Safely deletes the temporary Amplify app created for this report and cleans ephemeral CloudShell storage:

Bash Shell
sh -c '
clear
cd /tmp/wa-assessment-runner
bash scripts/cleanup.sh
'