Pick a depth. Each prompt opens in your AI pre-loaded with the lesson. Click a row to preview the prompt.
Each provider has a personality: AWS is the most complete and the most byzantine, Azure is the enterprise/Microsoft shop default, GCP is the data and ML house, and DigitalOcean is the developer-experience and predictable-pricing play. You will pick differently for a side project, a Series B SaaS, and a regulated bank — and the wrong default costs you both money and migration pain.
Query each provider's compute catalog for a comparable small instance to feel the shape of each CLI and pricing surface.
# AWS — t3.micro on-demand price in us-east-1
aws pricing get-products --service-code AmazonEC2 --region us-east-1 \
--filters Type=TERM_MATCH,Field=instanceType,Value=t3.micro \
Type=TERM_MATCH,Field=location,Value="US East (N. Virginia)" \
Type=TERM_MATCH,Field=operatingSystem,Value=Linux \
Type=TERM_MATCH,Field=tenancy,Value=Shared \
Type=TERM_MATCH,Field=preInstalledSw,Value=NA \
Type=TERM_MATCH,Field=capacitystatus,Value=Used \
--max-results 1