From b2101bc569b421a7c96117cfa9a3f183bab81e79 Mon Sep 17 00:00:00 2001 From: Ben Date: Sat, 24 Apr 2021 18:25:30 -0400 Subject: [PATCH 01/22] update index.html --- route53/s3/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/route53/s3/index.html b/route53/s3/index.html index 426ff77..4d47f54 100644 --- a/route53/s3/index.html +++ b/route53/s3/index.html @@ -11,5 +11,5 @@ -All servers are down. Please try again later. ☹ +All servers are down. Please try again later. :( \ No newline at end of file From 3ef6a9f7a5dcc7a8e7b7fc8c47b89a0419168d2d Mon Sep 17 00:00:00 2001 From: Ben Date: Sat, 24 Apr 2021 22:55:02 -0400 Subject: [PATCH 02/22] Add progress bar --- route53/dnstest.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/route53/dnstest.ps1 b/route53/dnstest.ps1 index 5ec8f4a..686eba0 100644 --- a/route53/dnstest.ps1 +++ b/route53/dnstest.ps1 @@ -40,6 +40,7 @@ function Iterate-NSLookup { $responses.Add($ip,1) Write-Host Resolved unique IP: $ip } + Write-Progress -Activity "Resolving $hostname" -Status $ip -PercentComplete (($stepcounter++ / $iterations) * 100) Start-Sleep -seconds $sleeptime } @@ -54,6 +55,7 @@ function Iterate-NSLookup { return $recordlist } +$stepCounter = 0 $records = Iterate-NSLookup -hostname $hostname -nameserver $nameserver -iterations $iterations -sleeptime $sleeptime $records | Format-Table -Property ip,count,percent Write-Host $records.count "unique responses" for $hostname \ No newline at end of file From 3cad0a180a0d9cfe7fc00a2259d52a8212a21e63 Mon Sep 17 00:00:00 2001 From: Ben Date: Mon, 26 Apr 2021 18:05:41 -0400 Subject: [PATCH 03/22] modify security group --- route53/lab-setup.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/route53/lab-setup.ps1 b/route53/lab-setup.ps1 index 6461d0b..eaffec4 100644 --- a/route53/lab-setup.ps1 +++ b/route53/lab-setup.ps1 @@ -211,6 +211,7 @@ $itype = "t3.micro" $sship.IpProtocol = "tcp" $sship.FromPort = 22 $sship.ToPort = 22 + $sship.IpRanges.Add("172.3.0.0/16") $sship.IpRanges.Add($myIP) Grant-EC2SecurityGroupIngress -GroupId $sg -IpPermissions @( $httpip, $httpsip, $sship ) From 0dc5d7404d8d9150d3be44ef656e203a588dfe2e Mon Sep 17 00:00:00 2001 From: Ben Date: Mon, 26 Apr 2021 18:05:47 -0400 Subject: [PATCH 04/22] add confirmation check --- route53/lab-cleanup.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/route53/lab-cleanup.ps1 b/route53/lab-cleanup.ps1 index 5edc5da..1698ede 100644 --- a/route53/lab-cleanup.ps1 +++ b/route53/lab-cleanup.ps1 @@ -1,3 +1,5 @@ +Write-Warning "This will destroy AWS resources." -WarningAction Inquire + $cidr = "172.9.0.0/16" $region = "us-west-1" From b0a76e9516b4fcd261ca4a12d70a330bf0ea8d53 Mon Sep 17 00:00:00 2001 From: Ben Piper Date: Wed, 28 Jul 2021 14:27:23 -0400 Subject: [PATCH 05/22] Update README.md add link to terraform repo --- route53/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/route53/README.md b/route53/README.md index eb95937..2c34969 100644 --- a/route53/README.md +++ b/route53/README.md @@ -1,3 +1,7 @@ ## Lab setup -[lab-setup.ps1](lab-setup.ps1) - View [lab-setup.md](lab-setup.md) for instructions \ No newline at end of file +[lab-setup.ps1](lab-setup.ps1) - View [lab-setup.md](lab-setup.md) for instructions + +### Terraform (Optional) + +Emmanuel Ojeah has created Terraform templates for the course. You can find them at https://github.com/EOjeah/route53-ps From bbb1bee231b5a332a5bfb70d5df5cbd4ebd3760b Mon Sep 17 00:00:00 2001 From: Ben Piper <4343814+benpiper@users.noreply.github.com> Date: Thu, 10 Feb 2022 17:46:37 -0500 Subject: [PATCH 06/22] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 35e4ec7..5b0736a 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ If you don't already have the AWS PowerShell SDK installed, [install-awspowershe ``` I recommend using [Visual Studio Code with the PowerShell extension](https://benpiper.com/2017/08/visual-studio-code-as-a-powershell-integrated-scripting-environment/). It works on Linux, Mac, and Windows! -#### AWS Networking Deep Dive: Virtual Private Cloud (VPC) lab setup +#### [AWS Networking Deep Dive: Virtual Private Cloud (VPC)](https://pluralsight.pxf.io/c/1191775/424552/7490?subId1=github&u=https%3A%2F%2Fwww.pluralsight.com%2Fcourses%2Faws-networking-deep-dive-vpc) lab setup Refer to [vpc/lab-setup.md](vpc/lab-setup.md) for the lab setup for this course. #### AWS Networking Deep Dive: Elastic Load Balancing (ELB) lab setup From 0de296c4ee4f694ea449a915118e0bcc2640da12 Mon Sep 17 00:00:00 2001 From: Ben Piper <4343814+benpiper@users.noreply.github.com> Date: Thu, 10 Feb 2022 17:49:03 -0500 Subject: [PATCH 07/22] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5b0736a..d124d17 100644 --- a/README.md +++ b/README.md @@ -13,10 +13,10 @@ I recommend using [Visual Studio Code with the PowerShell extension](https://ben #### [AWS Networking Deep Dive: Virtual Private Cloud (VPC)](https://pluralsight.pxf.io/c/1191775/424552/7490?subId1=github&u=https%3A%2F%2Fwww.pluralsight.com%2Fcourses%2Faws-networking-deep-dive-vpc) lab setup Refer to [vpc/lab-setup.md](vpc/lab-setup.md) for the lab setup for this course. -#### AWS Networking Deep Dive: Elastic Load Balancing (ELB) lab setup +#### [AWS Networking Deep Dive: Elastic Load Balancing (ELB)](https://pluralsight.pxf.io/6bXjBK) lab setup Refer to [elb/lab-setup.md](elb/lab-setup.md) for the lab setup for this course. -#### AWS Networking Deep Dive: Route 53 DNS lab setup +#### [AWS Networking Deep Dive: Route 53 DNS](https://pluralsight.pxf.io/n1jM96) lab setup Refer to [route53/lab-setup.md](route53/lab-setup.md) for the lab setup for this course. *Baked with love for PowerShell Core!* From 42f9486752442cd7c1fb7a4994b3bc5473cc0efa Mon Sep 17 00:00:00 2001 From: Ben Piper <4343814+benpiper@users.noreply.github.com> Date: Thu, 10 Feb 2022 17:50:21 -0500 Subject: [PATCH 08/22] Update lab-setup.md --- route53/lab-setup.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/route53/lab-setup.md b/route53/lab-setup.md index ce2d43c..c5ad14f 100644 --- a/route53/lab-setup.md +++ b/route53/lab-setup.md @@ -1,3 +1,5 @@ +Course link: [AWS Networking Deep Dive: Route 53 DNS](https://pluralsight.pxf.io/n1jM96) + 1. You will need the AWS PowerShell SDK installed and loaded. Run [install-awspowershell.ps1](/install-awspowershell.ps1) as root/administrator to take care of this, or do it manually. 2. Edit the file [_credentials.ps1](_credentials.ps1), replace the AWS secret key and access key with your own, and save the file as credentials.ps1 3. Edit [lab-setup.ps1](lab-setup.ps1) and customize the variables for your preferred AWS regions, AMI IDs, IP range, keypair names, and instance type. From 0392b2361997a6c98a598a81bb6a67bfb88d38da Mon Sep 17 00:00:00 2001 From: Ben Piper <4343814+benpiper@users.noreply.github.com> Date: Thu, 10 Feb 2022 17:50:59 -0500 Subject: [PATCH 09/22] Update README.md --- route53/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/route53/README.md b/route53/README.md index 2c34969..5412268 100644 --- a/route53/README.md +++ b/route53/README.md @@ -1,3 +1,5 @@ +Course link: [AWS Networking Deep Dive: Route 53 DNS](https://pluralsight.pxf.io/n1jM96) + ## Lab setup [lab-setup.ps1](lab-setup.ps1) - View [lab-setup.md](lab-setup.md) for instructions From 2ad90b5763b6c37a87d5273843534a32ed83d8d6 Mon Sep 17 00:00:00 2001 From: Ben Piper <4343814+benpiper@users.noreply.github.com> Date: Thu, 10 Feb 2022 17:51:39 -0500 Subject: [PATCH 10/22] Update README.md --- elb/README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/elb/README.md b/elb/README.md index 83ee50f..650bf9d 100644 --- a/elb/README.md +++ b/elb/README.md @@ -1 +1,4 @@ -[lab-setup.ps1](lab-setup.ps1) - Refer to lab-setup.md for instructions \ No newline at end of file + +Course link: [AWS Networking Deep Dive: Elastic Load Balancing (ELB)](https://pluralsight.pxf.io/6bXjBK) + +[lab-setup.ps1](lab-setup.ps1) - Refer to lab-setup.md for instructions From 7533bac82da6b3ced8688f89d7818c4e545c57b8 Mon Sep 17 00:00:00 2001 From: Ben Piper <4343814+benpiper@users.noreply.github.com> Date: Thu, 10 Feb 2022 17:51:55 -0500 Subject: [PATCH 11/22] Update lab-setup.md --- elb/lab-setup.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/elb/lab-setup.md b/elb/lab-setup.md index 7e3224d..ea906d9 100644 --- a/elb/lab-setup.md +++ b/elb/lab-setup.md @@ -1,3 +1,5 @@ +Course link: [AWS Networking Deep Dive: Elastic Load Balancing (ELB)](https://pluralsight.pxf.io/6bXjBK) + 1. You will need the AWS PowerShell SDK installed and loaded. Run [install-awspowershell.ps1](/install-awspowershell.ps1) to take care of this, or do it manually. 2. Edit the file [_credentials.ps1](_credentials.ps1), replace the AWS secret key and access key with your own, and save the file as credentials.ps1 3. Edit [lab-setup.ps1](lab-setup.ps1) and modify the AWS region (default is us-east-1), SSH keypair name, and your public IP address accordingly. From 046b4738fba89da4c40157ff666b078471815847 Mon Sep 17 00:00:00 2001 From: Ben Piper <4343814+benpiper@users.noreply.github.com> Date: Thu, 10 Feb 2022 17:52:25 -0500 Subject: [PATCH 12/22] Update lab-setup.md --- vpc/lab-setup.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vpc/lab-setup.md b/vpc/lab-setup.md index b2fc35f..612c16c 100644 --- a/vpc/lab-setup.md +++ b/vpc/lab-setup.md @@ -1,3 +1,5 @@ +Course link: [AWS Networking Deep Dive: VPC](https://pluralsight.pxf.io/c/1191775/424552/7490?subId1=github&u=https%3A%2F%2Fwww.pluralsight.com%2Fcourses%2Faws-networking-deep-dive-vpc) + 1. You will need the AWS PowerShell SDK installed and loaded. Run [install-awspowershell.ps1](/install-awspowershell.ps1) to take care of this, or do it manually. 2. Edit the file [_credentials.ps1](_credentials.ps1), replace the AWS secret key and access key with your own, and save the file as credentials.ps1 3. Edit [lab-setup.ps1](lab-setup.ps1) and modify the AWS region accordingly (default is us-east-1) From 5eb8f57da4801aaf1d481b43015eedd547b2f8e2 Mon Sep 17 00:00:00 2001 From: Ben Piper <4343814+benpiper@users.noreply.github.com> Date: Thu, 10 Feb 2022 17:52:46 -0500 Subject: [PATCH 13/22] Update README.md --- vpc/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vpc/README.md b/vpc/README.md index 83ee50f..d3626bb 100644 --- a/vpc/README.md +++ b/vpc/README.md @@ -1 +1,3 @@ -[lab-setup.ps1](lab-setup.ps1) - Refer to lab-setup.md for instructions \ No newline at end of file +Course link: [AWS Networking Deep Dive: VPC](https://pluralsight.pxf.io/c/1191775/424552/7490?subId1=github&u=https%3A%2F%2Fwww.pluralsight.com%2Fcourses%2Faws-networking-deep-dive-vpc) + +[lab-setup.ps1](lab-setup.ps1) - Refer to lab-setup.md for instructions From 41f3d12dc6587d773fbb01e7bed629734d07256b Mon Sep 17 00:00:00 2001 From: Ben Piper Date: Thu, 3 Mar 2022 00:14:10 -0500 Subject: [PATCH 14/22] update --- route53/lab-cleanup.ps1 | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/route53/lab-cleanup.ps1 b/route53/lab-cleanup.ps1 index 1698ede..6ad386c 100644 --- a/route53/lab-cleanup.ps1 +++ b/route53/lab-cleanup.ps1 @@ -9,9 +9,28 @@ $instances = Get-EC2Instance foreach ($instance in $instances) { Remove-EC2Instance $instances.Instances.InstanceId -Force } Write-Host Proceed when instances are terminated pause +# Remove network interfaces # Remove VPCs -$vpc = Get-EC2Vpc -Region $region -Filter @( @{name="cidr";value=$cidr}) -Remove-EC2Vpc -VpcId $vpc.VpcId -Force +$vpcs = Get-EC2Vpc -Region $region -Filter @( @{name="cidr";value=$cidr}) +foreach ($vpc in $vpcs) { Remove-EC2Vpc -VpcId $vpc.VpcId -Force } +# Remove resource record sets +# Remove zones +# Remove reusable delegation sets + + +$cidr = "172.3.0.0/16" +$region = "us-east-1" + +Set-DefaultAWSRegion $region +# Remove instances +$instances = Get-EC2Instance +foreach ($instance in $instances) { Remove-EC2Instance $instances.Instances.InstanceId -Force } +Write-Host Proceed when instances are terminated +pause +# Remove network interfaces +# Remove VPCs +$vpcs = Get-EC2Vpc -Region $region -Filter @( @{name="cidr";value=$cidr}) +foreach ($vpc in $vpcs) { Remove-EC2Vpc -VpcId $vpc.VpcId -Force } # Remove resource record sets # Remove zones # Remove reusable delegation sets \ No newline at end of file From 0b6a9e629584ac934369dfd1dc826ee85c73f68a Mon Sep 17 00:00:00 2001 From: Ben Piper <4343814+benpiper@users.noreply.github.com> Date: Fri, 27 May 2022 11:02:47 -0400 Subject: [PATCH 15/22] Update lab-setup.ps1 --- vpc/lab-setup.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vpc/lab-setup.ps1 b/vpc/lab-setup.ps1 index 53fb68b..e787dd8 100644 --- a/vpc/lab-setup.ps1 +++ b/vpc/lab-setup.ps1 @@ -3,8 +3,8 @@ #Import AWS credentials . ./credentials.ps1 #The credentials file should contain the following two variables: -# $AWSAccessKey="" # Your access key -# $AWSSecretKey="" # Your secret key +# $AWSAccessKey="KIAYVP4CIPPKKEX3NUX" # Replace with your access key +# $AWSSecretKey="mpCNyY4qm3YvBH1f8WQjVQQ6j1Y7kiRkgvl4bbr+" # Replace with your secret key # Set AWS credentials and region $AWSProfileName="aws-networking-deep-dive-vpc" @@ -21,4 +21,4 @@ Set-DefaultAWSRegion -Region $AWSRegion Get-DefaultAWSRegion # Test functionality -if ((Get-EC2Vpc).count -ge 1) { Write-Host Connectivity to AWS established! } \ No newline at end of file +if ((Get-EC2Vpc).count -ge 1) { Write-Host Connectivity to AWS established! } From 94f8141afea444a9301a043c0d09f405d3108267 Mon Sep 17 00:00:00 2001 From: Ben Piper <4343814+benpiper@users.noreply.github.com> Date: Fri, 27 May 2022 11:03:17 -0400 Subject: [PATCH 16/22] Update lab-setup.ps1 --- vpc/lab-setup.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vpc/lab-setup.ps1 b/vpc/lab-setup.ps1 index e787dd8..92fbe96 100644 --- a/vpc/lab-setup.ps1 +++ b/vpc/lab-setup.ps1 @@ -3,7 +3,7 @@ #Import AWS credentials . ./credentials.ps1 #The credentials file should contain the following two variables: -# $AWSAccessKey="KIAYVP4CIPPKKEX3NUX" # Replace with your access key +# $AWSAccessKey="AKIAYVP4CIPPKKEX3NUX" # Replace with your access key # $AWSSecretKey="mpCNyY4qm3YvBH1f8WQjVQQ6j1Y7kiRkgvl4bbr+" # Replace with your secret key # Set AWS credentials and region From 7bf48d91d68991bfb1cdac972c3c30c68eb53ca5 Mon Sep 17 00:00:00 2001 From: Ben Piper <4343814+benpiper@users.noreply.github.com> Date: Wed, 30 Nov 2022 09:53:12 -0500 Subject: [PATCH 17/22] Update lab-setup.md --- elb/lab-setup.md | 56 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/elb/lab-setup.md b/elb/lab-setup.md index ea906d9..660ea33 100644 --- a/elb/lab-setup.md +++ b/elb/lab-setup.md @@ -1,6 +1,60 @@ -Course link: [AWS Networking Deep Dive: Elastic Load Balancing (ELB)](https://pluralsight.pxf.io/6bXjBK) +AWS Networking Deep Dive: Elastic Load Balancing (ELB) +## Automated lab setup 1. You will need the AWS PowerShell SDK installed and loaded. Run [install-awspowershell.ps1](/install-awspowershell.ps1) to take care of this, or do it manually. 2. Edit the file [_credentials.ps1](_credentials.ps1), replace the AWS secret key and access key with your own, and save the file as credentials.ps1 3. Edit [lab-setup.ps1](lab-setup.ps1) and modify the AWS region (default is us-east-1), SSH keypair name, and your public IP address accordingly. 4. Run [. ./lab-setup.ps1](lab-setup.ps1) + +## Manual lab setup + +VPC: webapp-vpc 172.31.0.0/16 + +Subnets: +web-1a 172.31.1.0/24 +web-1b 172.31.2.0/24 +App-1a 172.31.101.0/24 +App-1b 172.31.102.0/24 + +Internet gateway: webapp-igw + +Route tables: +webapp-rt (associate with all subnets): +Default IPv4 (0.0.0.0/0) and IPv6 (::0/0) routes with internet gateway as target + +Security groups: +web-sg: +Inbound tcp/80,443 from 0.0.0.0/0 +Inbound tcp/81 from 172.31.0.0/16 +Inbound tcp/22 (SSH) from your IP + +app-sg: +Inbound tcp/8080,8443 from 172.31.0.0/16 +Inbound tcp/22 (SSH) from your IP + +db-sg: +Inbound tcp/3306 (MySQL) from 172.31.101.0/24,172.31.102.0/24 +Inbound tcp/22 (SSH) from your IP + +Instances: +All instances use the AMI named "aws-elasticbeanstalk-amzn-2017.03.1.x86_64-ecs-hvm-201709251832" (AMI ID ami-c710e7bd in N. Virginia region) +Auto-assign all instances a public IP + +Web tier: +Assign the web-sg security group to all +Name, subnet, IP +Web1, web-1a, 172.31.1.21 +Web2, web-1b, 172.31.2.22 +Web3, web-1b, 172.31.2.23 + +App tier: +Assign the app-sg security group to all +Name, subnet, IP +App1, app-1a, 172.31.101.21 +App2, app-1b, 172.31.102.22 +App3, app-1b, 172.31.102.23 + +Database tier: +Assign the db-sg security group +Name, subnet, IP +db, app-1a, 172.31.101.99 From 2452825cce819e0a68c9896bd66b5799f8f2f60b Mon Sep 17 00:00:00 2001 From: Denis Grinceac Date: Thu, 8 Jun 2023 16:02:42 +0200 Subject: [PATCH 18/22] Update lab-cleanup.ps1 Fixing filter. 1) "value" is not accepted argument. Replacing with "Values" 2) Updating "name" with "Name". Cosmetic update. --- route53/lab-cleanup.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/route53/lab-cleanup.ps1 b/route53/lab-cleanup.ps1 index 6ad386c..ad59dfd 100644 --- a/route53/lab-cleanup.ps1 +++ b/route53/lab-cleanup.ps1 @@ -11,7 +11,7 @@ Write-Host Proceed when instances are terminated pause # Remove network interfaces # Remove VPCs -$vpcs = Get-EC2Vpc -Region $region -Filter @( @{name="cidr";value=$cidr}) +$vpcs = Get-EC2Vpc -Region $region -Filter @( @{Name="cidr";Values=$cidr}) foreach ($vpc in $vpcs) { Remove-EC2Vpc -VpcId $vpc.VpcId -Force } # Remove resource record sets # Remove zones @@ -29,8 +29,8 @@ Write-Host Proceed when instances are terminated pause # Remove network interfaces # Remove VPCs -$vpcs = Get-EC2Vpc -Region $region -Filter @( @{name="cidr";value=$cidr}) +$vpcs = Get-EC2Vpc -Region $region -Filter @( @{Name="cidr";Values=$cidr}) foreach ($vpc in $vpcs) { Remove-EC2Vpc -VpcId $vpc.VpcId -Force } # Remove resource record sets # Remove zones -# Remove reusable delegation sets \ No newline at end of file +# Remove reusable delegation sets From 7c30aad63e09d1c58c9d3d2f8ee46160b7dfe678 Mon Sep 17 00:00:00 2001 From: Ben Piper <4343814+benpiper@users.noreply.github.com> Date: Fri, 24 Oct 2025 21:22:16 -0400 Subject: [PATCH 19/22] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d124d17..34dfb97 100644 --- a/README.md +++ b/README.md @@ -10,13 +10,13 @@ If you don't already have the AWS PowerShell SDK installed, [install-awspowershe ``` I recommend using [Visual Studio Code with the PowerShell extension](https://benpiper.com/2017/08/visual-studio-code-as-a-powershell-integrated-scripting-environment/). It works on Linux, Mac, and Windows! -#### [AWS Networking Deep Dive: Virtual Private Cloud (VPC)](https://pluralsight.pxf.io/c/1191775/424552/7490?subId1=github&u=https%3A%2F%2Fwww.pluralsight.com%2Fcourses%2Faws-networking-deep-dive-vpc) lab setup +#### Virtual Private Cloud (VPC) lab setup Refer to [vpc/lab-setup.md](vpc/lab-setup.md) for the lab setup for this course. -#### [AWS Networking Deep Dive: Elastic Load Balancing (ELB)](https://pluralsight.pxf.io/6bXjBK) lab setup +#### Elastic Load Balancing (ELB) lab setup Refer to [elb/lab-setup.md](elb/lab-setup.md) for the lab setup for this course. -#### [AWS Networking Deep Dive: Route 53 DNS](https://pluralsight.pxf.io/n1jM96) lab setup +#### Route 53 DNS] lab setup Refer to [route53/lab-setup.md](route53/lab-setup.md) for the lab setup for this course. *Baked with love for PowerShell Core!* From 78566ba9825a49c66fdff079d01fb9b8612f7853 Mon Sep 17 00:00:00 2001 From: Ben Piper <4343814+benpiper@users.noreply.github.com> Date: Fri, 24 Oct 2025 21:22:36 -0400 Subject: [PATCH 20/22] Update lab-setup.md --- vpc/lab-setup.md | 1 - 1 file changed, 1 deletion(-) diff --git a/vpc/lab-setup.md b/vpc/lab-setup.md index 612c16c..ff91744 100644 --- a/vpc/lab-setup.md +++ b/vpc/lab-setup.md @@ -1,4 +1,3 @@ -Course link: [AWS Networking Deep Dive: VPC](https://pluralsight.pxf.io/c/1191775/424552/7490?subId1=github&u=https%3A%2F%2Fwww.pluralsight.com%2Fcourses%2Faws-networking-deep-dive-vpc) 1. You will need the AWS PowerShell SDK installed and loaded. Run [install-awspowershell.ps1](/install-awspowershell.ps1) to take care of this, or do it manually. 2. Edit the file [_credentials.ps1](_credentials.ps1), replace the AWS secret key and access key with your own, and save the file as credentials.ps1 From fb231e6c781aaf5febe8972ce3a5e6dabad273e7 Mon Sep 17 00:00:00 2001 From: Ben Piper <4343814+benpiper@users.noreply.github.com> Date: Fri, 24 Oct 2025 21:22:56 -0400 Subject: [PATCH 21/22] Update lab-setup.md --- elb/lab-setup.md | 1 - 1 file changed, 1 deletion(-) diff --git a/elb/lab-setup.md b/elb/lab-setup.md index 660ea33..d4bd8c9 100644 --- a/elb/lab-setup.md +++ b/elb/lab-setup.md @@ -1,4 +1,3 @@ -AWS Networking Deep Dive: Elastic Load Balancing (ELB) ## Automated lab setup 1. You will need the AWS PowerShell SDK installed and loaded. Run [install-awspowershell.ps1](/install-awspowershell.ps1) to take care of this, or do it manually. From 7c9b09e25bf135d843f64aae70d9c47936700702 Mon Sep 17 00:00:00 2001 From: Ben Piper <4343814+benpiper@users.noreply.github.com> Date: Fri, 24 Oct 2025 21:23:11 -0400 Subject: [PATCH 22/22] Update lab-setup.md --- route53/lab-setup.md | 1 - 1 file changed, 1 deletion(-) diff --git a/route53/lab-setup.md b/route53/lab-setup.md index c5ad14f..ae291b9 100644 --- a/route53/lab-setup.md +++ b/route53/lab-setup.md @@ -1,4 +1,3 @@ -Course link: [AWS Networking Deep Dive: Route 53 DNS](https://pluralsight.pxf.io/n1jM96) 1. You will need the AWS PowerShell SDK installed and loaded. Run [install-awspowershell.ps1](/install-awspowershell.ps1) as root/administrator to take care of this, or do it manually. 2. Edit the file [_credentials.ps1](_credentials.ps1), replace the AWS secret key and access key with your own, and save the file as credentials.ps1