Making Infrastructure as Code Fun
Illustrated learning resources and interactive tools for DevOps engineers and teams tired of boring documentation.
resource "aws_instance" "web_server" {
ami = "ami-0abcdef1234567890"
instance_type = "t3.micro"
key_name = var.key_pair
vpc_security_group_ids = [
aws_security_group.web.id
]
tags = {
Name = "web-${var.environment}"
}
provisioner "remote-exec" {
inline = [
"sudo apt-get update",
"sudo apt-get install -y nginx"
]
}
}
Essential DevOps Toolkit
Master the tools that power modern infrastructure
Get Free DevOps Resources
Join 100+ DevOps engineers getting free tips, templates, and early access to new products.
No spam. Unsubscribe anytime.
Our DevOps Learning Resources
Terraform Playground Vol. 1
Illustrated eBook with ready-to-apply modules and cheat sheet. Go from "undefined variable" to infrastructure master.
DevOps Bingo Pack
12 unique printable cards featuring real DevOps scenarios. Perfect for team standups, on-call training, and breaking the ice during deployments.
Also Check Out
Because life is more than just infrastructure as code
Adulting Survival Kit
Funny checklists for people who are absolutely winging it.
Parenting Survival
Is your child still alive? Checklists for keeping tiny humans alive.