From 43cac486f18cc1402064812fbda891d527fdcd7e Mon Sep 17 00:00:00 2001 From: Jainam Kashyap <93782361+Jai0987@users.noreply.github.com> Date: Wed, 15 Apr 2026 12:17:44 -0400 Subject: [PATCH 1/2] Update lab-guide.md Pulumi resource creation count fix --- undergrad/labs/3-VPC/lab-p1/lab-guide.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/undergrad/labs/3-VPC/lab-p1/lab-guide.md b/undergrad/labs/3-VPC/lab-p1/lab-guide.md index 9ac20d1..ed34df2 100644 --- a/undergrad/labs/3-VPC/lab-p1/lab-guide.md +++ b/undergrad/labs/3-VPC/lab-p1/lab-guide.md @@ -231,7 +231,17 @@ pulumi config set aws:region us-east-1 pulumi preview ``` -You should see approximately 16 resources listed: VPC, 4 subnets, IGW, EIP, NAT Gateway, 2 route tables, 4 route table associations, 2 routes, 2 security groups, 2 EC2 instances. +You should see approximately 20-21 resources listed: +- 1 VPC +- 4 subnets +- 1 IGW +- 1 EIP +- 1 NAT Gateway +- 2 route tables +- 4 route table associations +- 2 routes +- 2 security groups +- 2 EC2 instances If you see fewer than 16, check that all five TODOs are complete and that the private instance outputs are uncommented. From 9ad03868cddc8b85cfa8f4df5865d18d2028f4b5 Mon Sep 17 00:00:00 2001 From: Jainam Kashyap <93782361+Jai0987@users.noreply.github.com> Date: Wed, 15 Apr 2026 12:20:21 -0400 Subject: [PATCH 2/2] Update lab-guide.md --- undergrad/labs/3-VPC/lab-p1/lab-guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/undergrad/labs/3-VPC/lab-p1/lab-guide.md b/undergrad/labs/3-VPC/lab-p1/lab-guide.md index ed34df2..383575d 100644 --- a/undergrad/labs/3-VPC/lab-p1/lab-guide.md +++ b/undergrad/labs/3-VPC/lab-p1/lab-guide.md @@ -170,7 +170,7 @@ The egress rule is the same for both: allow all outbound traffic (the private in private_sg = aws.ec2.SecurityGroup( "private-sg", vpc_id=vpc.id, - description="Private instance — SSH from within VPC only, no internet inbound", + description="Private instance - SSH from within VPC only, no internet inbound", ingress=[{ "protocol": "tcp", "from_port": 22, @@ -183,7 +183,7 @@ private_sg = aws.ec2.SecurityGroup( "from_port": 0, "to_port": 0, "cidr_blocks": ["0.0.0.0/0"], - "description": "All outbound — traffic goes through NAT Gateway", + "description": "All outbound - traffic goes through NAT Gateway", }], tags={"Name": "NovaSpark-Private-SG", "Lab": "3"}, )