Back openDesk Edu for a sovereign, open-source education — every vote counts.
Vote nowSave products you love by clicking the heart icon.
Every cheatsheet — 20+ pages covering Docker, K8s, Terraform, Ansible, PostgreSQL, Redis, Neo4j, Nginx, SSH, Git, CI/CD, and more
No payment required
The complete collection — every cheatsheet on the site in one download.
Containers & Orchestration: Docker, Docker Compose, Kubernetes, Helm Infrastructure as Code: Terraform, Ansible, Systemd Databases: PostgreSQL, Redis, Neo4j Networking: Nginx, SSH, Network Tools CI/CD: Git, CI/CD Pipeline Patterns Editors & Tools: Vim, Emacs, Nano, Markdown, Bash Monitoring: Monitoring & Observability
Over 20 cheatsheets in total, covering the full DevOps stack.
€49.00 (Save €35 compared to buying all bundles individually)
# Initialize working directory
terraform init
# Validate configuration
terraform validate
# Plan changes before applying
terraform plan -out plan.tfplan
# Apply infrastructure changes
terraform apply plan.tfplan
# Destroy all managed resources
terraform destroy