bashadvanced
Terraform Aws
DevOps practice: terraform-aws
bashPress ⌘/Ctrl + Shift + C to copy
#!/usr/bin/env bash
set -euo pipefail
terraform init
terraform plan -out=tfplan
terraform apply -auto-approve tfplanUse Cases
- infrastructure management
- automation
Tags
Related Snippets
Similar patterns you can reuse in the same workflow.
bashadvanced
Terraform — AWS S3 + CloudFront Static Site
Provision an S3 static website with CloudFront CDN, SSL certificate, and origin access control.
Best for: Deploying static sites with global CDN distribution
#terraform#aws
bashbeginner
Docker Swarm
DevOps practice: docker-swarm
Best for: infrastructure management
#devops#infrastructure
bashintermediate
Docker Network
DevOps practice: docker-network
Best for: infrastructure management
#devops#infrastructure
bashadvanced
Docker Volume
DevOps practice: docker-volume
Best for: infrastructure management
#devops#infrastructure