Stratpoint Engineering

Cloud Internship 2026

Sign in with your Stratpoint Google account to continue.

Cloud Engineering
Cloud Internship 2026
Chapter 9

Commands Reference

Terraform

CommandWhat it does
terraform initInitialise working directory, download providers
terraform fmtFormat all .tf files to canonical style
terraform validateCheck syntax and configuration validity
terraform planPreview changes before applying
terraform applyProvision or update resources
terraform apply -auto-approveApply without confirmation prompt (use carefully)
terraform destroyRemove all managed resources
terraform outputShow all output values
terraform state listList all resources in state
terraform state show <resource>Show details of a specific resource in state
terraform import <resource> <id>Import an existing resource into state

AWS CLI — Common Commands

CommandWhat it does
aws sts get-caller-identityConfirm which IAM user/role you are authenticated as
aws ec2 describe-vpcsList all VPCs in current region
aws ec2 describe-instancesList all EC2 instances
aws cloudformation describe-stacksList all CloudFormation stacks and their status
aws cloudformation delete-stack --stack-name XDelete a CloudFormation stack
aws s3 lsList all S3 buckets
aws rds describe-db-instancesList all RDS instances

Docker (Weeks 9–11)

CommandWhat it does
docker build -t name:tag .Build an image from a Dockerfile
docker run -p 8080:3000 name:tagRun a container mapping host port 8080 to container port 3000
docker psList running containers
docker ps -aList all containers including stopped
docker exec -it <id> shOpen a shell inside a running container
docker system prune -fRemove all stopped containers and dangling images