Cloud migration strategies for AWS, GCP, and Azure. Use for lift-and-shift, replatforming, and cloud-native architecture design.
| Strategy | Description | Use When | |----------|-------------|----------| | Rehost | Lift-and-shift | Quick migration, no changes | | Replatform | Minor optimizations | Need some cloud benefits | | Repurchase | Switch to SaaS | Commercial alternative exists | | Refactor | Full redesign | Need cloud-native features | | Retire | Decommission | App no longer needed | | Retain | Keep on-premises | Not ready to migrate |
| On-Premises | AWS Equivalent | |-------------|----------------| | Web Server | EC2, ECS, Lambda | | Database | RDS, DynamoDB, Aurora | | File Storage | S3, EFS | | Load Balancer | ELB, ALB | | DNS | Route 53 | | CDN | CloudFront |
# AWS EC2 Instance
resource "aws_instance" "web" {
ami = "ami-0c55b159cbfafe1f0"
instance_type = "t3.micro"
tags = {
Name = "web-server"
Environment = "production"
}
}
# S3 Bucket
resource "aws_s3_bucket" "assets" {
bucket = "my-app-assets"
}
| Concept | GCP Service | |---------|-------------| | Compute | Compute Engine, Cloud Run | | Database | Cloud SQL, Firestore | | Storage | Cloud Storage | | Serverless | Cloud Functions | | Kubernetes | GKE |
| Concept | Azure Service | |---------|---------------| | Compute | Virtual Machines, App Service | | Database | Azure SQL, Cosmos DB | | Storage | Blob Storage | | Serverless | Azure Functions | | Kubernetes | AKS |
npx skills add lovedragonball/cloud-migration下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer