Skip to content

Commit 418efe8

Browse files
JiaDeclaude
andcommitted
fix: correct README inaccuracies found in deployment verification
- Remove CreateS3Bucket and InstallS3FilesSkill — these params don't exist in CFN - Fix default instance type: t4g.medium → c7g.large in cost table and instance table - Update cost estimate to match c7g.large ($65-90/mo); add t4g.medium note for budget users - Add missing EnableDataProtection and AllowedSSHCIDR parameters to params table - Remove broken demo/README.md link (demo/ directory doesn't exist) - Replace hardcoded --region us-west-2 with YOUR_REGION placeholder - Update tagline from ~$40/month to From ~$30/month (accurate for t4g.small baseline) Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
1 parent aed1a60 commit 418efe8

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

README.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# OpenClaw on AWS with Bedrock
22

3-
> Your own AI assistant on AWS — connects to WhatsApp, Telegram, Discord, Slack. Powered by Amazon Bedrock. No API keys. One-click deploy. ~$40/month.
3+
> Your own AI assistant on AWS — connects to WhatsApp, Telegram, Discord, Slack. Powered by Amazon Bedrock. No API keys. One-click deploy. From ~$30/month.
44
55
English | [简体中文](README_CN.md)
66

@@ -60,7 +60,7 @@ INSTANCE_ID=$(aws cloudformation describe-stacks \
6060

6161
aws ssm start-session \
6262
--target $INSTANCE_ID \
63-
--region us-west-2 \
63+
--region YOUR_REGION \
6464
--document-name AWS-StartPortForwardingSession \
6565
--parameters '{"portNumber":["18789"],"localPortNumber":["18789"]}'
6666

@@ -69,7 +69,7 @@ TOKEN=$(aws ssm get-parameter \
6969
--name /openclaw/openclaw-bedrock/gateway-token \
7070
--with-decryption \
7171
--query Parameter.Value \
72-
--output text --region us-west-2)
72+
--output text --region YOUR_REGION)
7373

7474
# 4. Open in browser
7575
echo "http://localhost:18789/?token=$TOKEN"
@@ -187,11 +187,13 @@ Switch models with one CloudFormation parameter — no code changes:
187187

188188
| Component | Cost |
189189
|-----------|------|
190-
| EC2 (t4g.medium, Graviton) | $24 |
190+
| EC2 (c7g.large, Graviton) | $58 |
191191
| EBS (30GB gp3) | $2.40 |
192192
| VPC Endpoints (optional) | $22 |
193193
| Bedrock (Nova 2 Lite, ~100 conv/day) | $5-8 |
194-
| **Total** | **$31-56** |
194+
| **Total** | **$65-90** |
195+
196+
> Use `t4g.medium` ($24/mo) to bring total down to ~$31-56 if you don't need the extra CPU headroom.
195197
196198
### Save Money
197199

@@ -217,8 +219,9 @@ Switch models with one CloudFormation parameter — no code changes:
217219
| Type | Monthly | RAM | Architecture | Use case |
218220
|------|---------|-----|-------------|----------|
219221
| t4g.small | $12 | 2GB | Graviton ARM | Personal |
220-
| **t4g.medium** | **$24** | **4GB** | **Graviton ARM** | **Small teams (default)** |
222+
| t4g.medium | $24 | 4GB | Graviton ARM | Small teams |
221223
| t4g.large | $48 | 8GB | Graviton ARM | Medium teams |
224+
| **c7g.large** | **$58** | **4GB** | **Graviton ARM** | **Balanced performance (default)** |
222225
| c7g.xlarge | $108 | 8GB | Graviton ARM | High performance |
223226
| t3.medium | $30 | 4GB | x86 | x86 compatibility |
224227

@@ -230,9 +233,9 @@ Switch models with one CloudFormation parameter — no code changes:
230233
| `InstanceType` | c7g.large | EC2 instance type |
231234
| `CreateVPCEndpoints` | true | Private networking (+$22/mo) |
232235
| `EnableSandbox` | true | Docker isolation for code execution |
233-
| `CreateS3Bucket` | true | S3 bucket for file sharing skill |
234-
| `InstallS3FilesSkill` | true | Auto-install S3 file sharing |
236+
| `EnableDataProtection` | false | Retain EBS volume on stack deletion |
235237
| `KeyPairName` | none | EC2 key pair (optional, for emergency SSH) |
238+
| `AllowedSSHCIDR` | _(empty)_ | CIDR for SSH access — leave empty to disable |
236239

237240
---
238241

@@ -277,7 +280,7 @@ Telegram/WhatsApp message
277280
| Cost for 50 users | ~$65-110/month (~$1.30-2.20/person) |
278281
| vs ChatGPT Plus (50 users) | $1,000/month |
279282

280-
**[→ Full Multi-Tenant Guide](README_AGENTCORE.md)** · **[Demo Guide](demo/README.md)** · **[Roadmap](ROADMAP.md)**
283+
**[→ Full Multi-Tenant Guide](README_AGENTCORE.md)** · **[→ Roadmap](ROADMAP.md)**
281284

282285
### 🏢 Enterprise Digital Workforce Platform — [enterprise/](enterprise/)
283286

0 commit comments

Comments
 (0)