Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chapter05/firewall5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
3 changes: 0 additions & 3 deletions chapter05/vpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -77,7 +75,6 @@ Resources:
Properties:
AvailabilityZone: !Select [0, !GetAZs '']
CidrBlock: '10.0.0.0/24'
MapPublicIpOnLaunch: true
VpcId: !Ref VPC
Tags:
- Key: Name
Expand Down