Cloud Internship 2026
Chapter 6
How to Ask for Help
Asking well is a professional skill. A precise question with context gets answered fast.
The 30-Minute Rule
Quick Reference
Stuck less than 30 minutes — keep digging.
Stuck more than 30 minutes — post in the help channel immediately.
Never sit on a blocker until the standup. Raise it as soon as you hit it.
The Perfect Help Request
Problem: terraform apply fails with "Error: creating Security Group — the vpc_id is invalid."
What I tried:
1. Verified the VPC exists in the Console — it does
2. Ran terraform state list — vpc shows as created
3. Checked the module output — vpc_id is outputting correctly
Error output:
Error: creating Security Group (web-sg): InvalidVpcID.NotFound
with module.security_groups.aws_security_group.web
on modules/security-groups/main.tf line 4, in resource "aws_security_group" "web":
4: vpc_id = var.vpc_id
Repo branch: feat/security-groups
Watch Out
Never paste screenshots of text — paste the actual error text.
Never ask "why is it not working?" without including the error message.
Do not DM instructors — post publicly so others can learn from the answer too.