From b8ebba24fb62c270b5f720c5d3d751fa57f40fd9 Mon Sep 17 00:00:00 2001 From: neuroevolutus <19356702+neuroevolutus@users.noreply.github.com> Date: Sat, 13 Apr 2024 01:13:23 -0500 Subject: [PATCH 1/2] Fix typo --- chapter05/firewall5.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter05/firewall5.yaml b/chapter05/firewall5.yaml index c724a40..bd9c59e 100644 --- a/chapter05/firewall5.yaml +++ b/chapter05/firewall5.yaml @@ -48,7 +48,7 @@ Resources: SecurityGroupProxy: Type: 'AWS::EC2::SecurityGroup' Properties: - GroupDescription: 'Allowing incoming HTTP and ICPM from anywhere.' + GroupDescription: 'Allowing incoming HTTP and ICMP from anywhere.' VpcId: !Ref VPC SecurityGroupIngress: - Description: 'allowing inbound ICMP traffic' From a9c81f4be663cf60d213a4b027e2e0b8b4ada7e0 Mon Sep 17 00:00:00 2001 From: neuroevolutus <19356702+neuroevolutus@users.noreply.github.com> Date: Sat, 13 Apr 2024 01:13:23 -0500 Subject: [PATCH 2/2] Remove unnecessary key/value pairs from `chapter05/vpc.yaml` --- chapter05/vpc.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/chapter05/vpc.yaml b/chapter05/vpc.yaml index fe2e231..7e9d5a7 100644 --- a/chapter05/vpc.yaml +++ b/chapter05/vpc.yaml @@ -60,13 +60,11 @@ Resources: Type: 'AWS::EC2::VPC' Properties: CidrBlock: '10.0.0.0/16' - EnableDnsHostnames: 'true' Tags: - Key: Name Value: 'AWS in Action: chapter 5 (VPC)' InternetGateway: Type: 'AWS::EC2::InternetGateway' - Properties: {} VPCGatewayAttachment: Type: 'AWS::EC2::VPCGatewayAttachment' Properties: @@ -77,7 +75,6 @@ Resources: Properties: AvailabilityZone: !Select [0, !GetAZs ''] CidrBlock: '10.0.0.0/24' - MapPublicIpOnLaunch: true VpcId: !Ref VPC Tags: - Key: Name