Cloud Computing
knowledge skill
Deploys and configures cloud infrastructure resources such as virtual machines, storage buckets, or networking components using provider APIs. Produces a declarative configuration file or API response confirming resource provisioning and status.
Worked examples
- {"input": {"provider": "aws", "resource_type": "ec2", "config": {"instance_type": "t3.micro", "ami_id": "ami-0abcdef1234567890", "key_name": "my-keypair"}}, "output": {"status": "success", "resource_id": "i-0123456789abcdef0", "config_hash": "a1b2c3d4e5f678901234567890abcdef1234567890abcdef1234567890ab"}}
- {"input": {"provider": "gcp", "resource_type": "gcs_bucket", "config": {"name": "my-data-bucket", "location": "us-central1", "storage_class": "standard"}}, "output": {"status": "success", "resource_id": "gs://my-data-bucket", "config_hash": "f1e2d3c4b5a678901234567890abcdef1234567890abcdef1234567890ab"}}
Input
- provider: string (aws|gcp|azure)
- resource_type: string (ec2|gcs_bucket|vnet)
- config: object (provider-specific parameters for the resource)
Output
- status: string (success|failed)
- resource_id: string (unique identifier of the provisioned resource)
- config_hash: string (SHA-256 hash of the applied configuration)
Details
- Skill type: knowledge skill
- Safety level: safe_public_research
- Version: 1.0.0