Back to list
lovedragonball

cloud-migration

by lovedragonball

32🍴 4📅 Jan 17, 2026

SKILL.md


name: cloud-migration description: Cloud migration strategies for AWS, GCP, and Azure. Use for lift-and-shift, replatforming, and cloud-native architecture design.

☁️ Cloud Migration Skill

Migration Strategies (6 Rs)

StrategyDescriptionUse When
RehostLift-and-shiftQuick migration, no changes
ReplatformMinor optimizationsNeed some cloud benefits
RepurchaseSwitch to SaaSCommercial alternative exists
RefactorFull redesignNeed cloud-native features
RetireDecommissionApp no longer needed
RetainKeep on-premisesNot ready to migrate

AWS Migration

Common Services Mapping

On-PremisesAWS Equivalent
Web ServerEC2, ECS, Lambda
DatabaseRDS, DynamoDB, Aurora
File StorageS3, EFS
Load BalancerELB, ALB
DNSRoute 53
CDNCloudFront

Infrastructure as Code (Terraform)

# 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"
}

GCP Migration

Services Mapping

ConceptGCP Service
ComputeCompute Engine, Cloud Run
DatabaseCloud SQL, Firestore
StorageCloud Storage
ServerlessCloud Functions
KubernetesGKE

Azure Migration

Services Mapping

ConceptAzure Service
ComputeVirtual Machines, App Service
DatabaseAzure SQL, Cosmos DB
StorageBlob Storage
ServerlessAzure Functions
KubernetesAKS

Migration Checklist

Pre-Migration

  • Inventory all applications
  • Assess dependencies
  • Choose migration strategy
  • Estimate costs (TCO calculator)
  • Plan network architecture
  • Security compliance review

During Migration

  • Set up landing zone
  • Configure networking (VPC, VPN)
  • Migrate databases
  • Migrate applications
  • Update DNS records
  • Test thoroughly

Post-Migration

  • Monitor performance
  • Optimize costs
  • Implement auto-scaling
  • Set up backups
  • Document architecture

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon