bashadvanced
Aws Cdk
DevOps practice: aws-cdk
bashPress ⌘/Ctrl + Shift + C to copy
#!/usr/bin/env bash
set -euo pipefail
echo "Running workflow: aws-cdk"
mkdir -p .ops/logs
printf '%s %s\n' "$(date -u +%FT%TZ)" "aws-cdk" >> .ops/logs/run.log
cat .ops/logs/run.log | tail -n 5Use 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
typescriptintermediate
AWS SDK v3 — S3 Operations in TypeScript
Perform S3 operations with AWS SDK v3: upload, download, list, presigned URLs, and multipart upload.
Best for: Server-side file uploads to S3
#aws#s3
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