Comprehensive cloud deployment and management for AWS, Google Cloud, and Azure platforms with production-ready automation scripts, infrastructure templates, and multi-cloud testing.
Inherits all available tools
Additional assets for this skill
This skill inherits all available tools. When active, it can use any tool Claude has access to.
examples/example-1-aws-lambda.mdexamples/example-2-gcp-cloud-run.mdexamples/example-3-azure-functions.mdgraphviz/workflow.dotreadme.mdreferences/aws-services.mdreferences/terraform-iac.mdreferences/upgrade-complete.mdresources/readme.mdresources/scripts/deploy_aws.pyresources/scripts/deploy_k8s.shresources/scripts/gcp_deploy.shresources/scripts/terraform_apply.pyresources/templates/aws-infra.tfresources/templates/docker-compose.yamlresources/templates/gcp-config.jsonresources/templates/k8s-deployment.yamltests/test-1-aws-deployment.mdtests/test-2-k8s-cluster.mdtests/test-3-multi-cloud.mdBEFORE any deployment, validate:
NEVER:
ALWAYS:
Evidence-Based Techniques for Deployment:
name: cloud-platforms description: Multi-cloud deployment and infrastructure management across AWS, GCP, and Azure. Use when deploying applications to cloud platforms, implementing serverless architectures, or managing cloud infrastructure as code. Supports containers, serverless, and traditional compute. tier: gold version: 2.0.0 last_updated: 2025-11-02 category: operations tags:
Comprehensive cloud deployment and management for AWS, Google Cloud, and Azure platforms with production-ready automation scripts, infrastructure templates, and multi-cloud testing.
Tier: Gold Version: 2.0.0 Files: 20 Scripts: 4 automation tools Templates: 4 IaC configurations Tests: 3 comprehensive suites
Use when deploying applications to cloud platforms, implementing serverless architectures (Lambda, Cloud Functions), managing containerized workloads (ECS, GKE, AKS), or provisioning cloud infrastructure with Terraform/CloudFormation.
Define requirements
Select platform and services
Provision infrastructure
Deploy applications
Monitor and optimize
Located in resources/scripts/:
deploy_aws.py (14 KB)
python deploy_aws.py lambda --name func --zip code.zip --handler index.handlerdeploy_k8s.sh (8.3 KB)
./deploy_k8s.sh helm myapp ./charts/app production values.yamlterraform_apply.py (13 KB)
python terraform_apply.py apply --var-file prod.tfvarsgcp_deploy.sh (10 KB)
./gcp_deploy.sh cloud-run myservice gcr.io/project/image us-central1Located in resources/templates/:
aws-infra.tf (14 KB)
k8s-deployment.yaml (7.2 KB)
gcp-config.json (8.9 KB)
docker-compose.yaml (7.5 KB)
Located in tests/:
test-1-aws-deployment.md (9 KB)
test-2-k8s-cluster.md (12 KB)
test-3-multi-cloud.md (19 KB)
cd resources/templates
cp aws-infra.tf main.tf
echo 'project_name = "myapp"
environment = "prod"
container_image = "nginx:latest"' > terraform.tfvars
python ../scripts/terraform_apply.py init
python ../scripts/terraform_apply.py apply --var-file terraform.tfvars
# Using kubectl
./resources/scripts/deploy_k8s.sh kubectl resources/templates/k8s-deployment.yaml production
# Using Helm
./resources/scripts/deploy_k8s.sh helm myapp ./charts/myapp production values.yaml
# Cloud Run
./resources/scripts/gcp_deploy.sh cloud-run myservice gcr.io/project/image us-central1
# GKE cluster
./resources/scripts/gcp_deploy.sh create-gke mycluster us-central1-a e2-medium 3 true
Run comprehensive test suites:
# AWS deployment tests
cd tests
bash test-1-aws-deployment.md
# Kubernetes cluster tests
bash test-2-k8s-cluster.md
# Multi-cloud tests
bash test-3-multi-cloud.md
See ENHANCEMENT-SUMMARY.md for complete Gold tier enhancement details including: