Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ffsshhttiikk/opencode-agents-skills --skill multi-cloud명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | multi-cloud |
| description | Multi-cloud architecture and management |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"architect, devops-engineer","category":"devops"} |
┌──────────────────┐
│ Internet │
└────────┬─────────┘
│
┌──────────────┼──────────────┐
│ │ │
┌──────▼──────┐ ┌─────▼─────┐ ┌──────▼──────┐
│ AWS │ │ Azure │ │ GCP │
│ (Primary) │ │(Secondary)│ │ (Backup) │
└──────┬──────┘ └─────┬─────┘ └──────┬──────┘
│ │ │
└──────────────┼──────────────┘
│
┌────────▼─────────┐
│ Cross-Cloud │
│ Load Balancer │
└──────────────────┘
# AWS to GCP via Cloud Interconnect
resource "aws_dx_connection" "aws_to_gcp" {
name = "aws-gcp-interconnect"
bandwidth = "1Gbps"
location = "EqDC2"
provider = aws.aws_primary
}
# Azure to AWS via VPN
resource "azurerm_virtual_network_gateway" "azure_to_aws" {
name = "azure-vpn-gateway"
location = "eastus"
resource_group_name = "rg-main"
type = "Vpn"
vpn_type = "RouteBased"
ip_configuration {
public_ip_address_id = azurerm_public_ip.vpn.id
subnet_id = azurerm_subnet.gateway.id
}
}
# Federation V2
apiVersion: core.kubefed.io/v1beta1
kind: KubeFedConfig
metadata:
name: kubefed
spec:
scope: Namespaced
featureGates:
- name: PushReconciler
configuration: Enabled
- name: SchedulerPreferences
configuration: Enabled
---
# Federated Deployment
apiVersion: types.kubefed.io/v1beta1
kind: FederatedDeployment
metadata:
name: myapp
spec:
template:
spec:
replicas: 3
selector:
matchLabels:
app: myapp
placement:
clusters:
- name: aws-cluster
- name: azure-cluster
| Category | Tools |
|---|---|
| IaC | Terraform, Pulumi |
| Containers | Kubernetes, Docker |
| Orchestration | Nomad, Kubernetes |
| Monitoring | Prometheus, Grafana |
| Service Mesh | Istio, Linkerd |
| Serverless | Knative, OpenFaaS |
# AWS IAM Roles Anywhere
- role:
arn: arn:aws:iam::123456789012:role/CrossCloudRole
credential_source:
environment:
name: AWS_ACCESS_KEY_ID
# Azure AD with AWS
resource "azuread_application" "multi_cloud" {
display_name = "MultiCloudApp"
}
resource "azuread_service_principal" "multi_cloud" {
application_id = azuread_application.multi_cloud.application_id
}
RTO (Recovery Time Objective): 1 hour
RPO (Recovery Point Objective): 15 minutes
Active-Passive:
Primary: AWS (eu-west-1)
Secondary: Azure (eastus)
Replication: Async database replication
Failover: DNS switch
Active-Active:
Primary: AWS (us-east-1)
Secondary: GCP (us-central1)
Sync: Multi-region database
Traffic: Weighted DNS
# Multi-cloud cost analysis
class CloudCostAnalyzer:
def __init__(self):
self.aws_client = boto3.client('ce')
self.azure_client = azure.mgmt.costmanagement.QueryClient()
def get_total_cost(self):
aws_costs = self.aws_client.get_cost_and_usage(
TimePeriod={'Start': '2024-01-01', 'End': '2024-01-31'},
Granularity='MONTHLY',
Metrics=['UnblendedCost']
)
azure_costs = self.azure_client.query(
scope=f"/subscriptions/{self.azure_sub_id}",
parameters={
'type': 'ActualCost',
'timeframe': 'MonthToDate',
}
)
return self.aggregate_costs(aws_costs, azure_costs)