Skip to content

Commit cdaba9d

Browse files
committed
chore: wip
1 parent 255f5a6 commit cdaba9d

5 files changed

Lines changed: 517 additions & 1 deletion

File tree

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,23 @@ Complete CloudFormation template builders for:
5555
- **Monitoring** - CloudWatch dashboards, alarms, and log groups
5656
- **Security** - ACM certificates, WAF rules, security groups
5757

58+
### 🔒 Pre-Deployment Security Scanning
59+
60+
Built-in secret detection to prevent accidental credential exposure:
61+
62+
- **35+ Secret Patterns** - AWS keys, API tokens, private keys, database credentials
63+
- **Automatic Scanning** - Runs before every deployment
64+
- **Configurable Severity** - Block on critical, high, medium, or low findings
65+
- **CI/CD Ready** - Integrate security checks into your pipeline
66+
67+
```bash
68+
# Scan for secrets before deploying
69+
cloud deploy:security-scan --source ./dist
70+
71+
# Deploy with automatic security scanning
72+
cloud deploy # Scans automatically before deployment
73+
```
74+
5875
### ☁️ Direct AWS Integration
5976

6077
No SDK, no CLI - pure AWS Signature V4 API calls:

docs/.vitepress/config.ts

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,33 @@ const sidebar = [
6060
{ text: 'Config', link: '/config' },
6161
],
6262
},
63+
{
64+
text: 'Guide',
65+
items: [
66+
{ text: 'Getting Started', link: '/guide/getting-started' },
67+
{ text: 'Deployment', link: '/guide/deployment' },
68+
{ text: 'Providers', link: '/guide/providers' },
69+
],
70+
},
71+
{
72+
text: 'Features',
73+
items: [
74+
{ text: 'Security', link: '/features/security' },
75+
{ text: 'AWS', link: '/features/aws' },
76+
{ text: 'Multi-Region', link: '/features/multi-region' },
77+
{ text: 'Environments', link: '/features/environments' },
78+
{ text: 'State Management', link: '/features/state' },
79+
],
80+
},
81+
{
82+
text: 'Advanced',
83+
items: [
84+
{ text: 'CI/CD Integration', link: '/advanced/cicd' },
85+
{ text: 'Rollback', link: '/advanced/rollback' },
86+
{ text: 'Custom Providers', link: '/advanced/providers' },
87+
{ text: 'Dependencies', link: '/advanced/dependencies' },
88+
],
89+
},
6390
{ text: 'Showcase', link: '/Showcase' },
6491
]
6592
const description = 'A TypeScript Starter Kit. For a better Development Experience.'

0 commit comments

Comments
 (0)