Untitled
unknown
plain_text
3 years ago
1.5 kB
5
Indexable
# fist sg ALBSecurityGroup: Type: AWS::EC2::SecurityGroup Properties: GroupDescription: Allow http to client host VpcId: !Ref VPC SecurityGroupIngress: - IpProtocol: tcp FromPort: 80 ToPort: 80 CidrIp: 0.0.0.0/0 # second sg WebSecurityGroup: Type: AWS::EC2::SecurityGroup Properties: GroupDescription: Allow ALB to reach the web services. VpcId: !Ref VPC SecurityGroupIngress: - IpProtocol: tcp FromPort: 80 ToPort: 80 SourceSecurityGroupId: !Ref ALBSecurityGroup # third sg EFSSecurityGroup: Type: AWS::EC2::SecurityGroup Properties: GroupDescription: Allow VpcId: !Ref VPC SecurityGroupIngress: - IpProtocol: tcp FromPort: 2049 ToPort: 2049 SourceSecurityGroupId: !Ref WebSecurityGroup ElasticacheSecurityGroup: Type: AWS::EC2::SecurityGroup Properties: GroupDescription: Elasticcache to instance VpcId: !Ref VPC SecurityGroupIngress: - IpProtocol: tcp FromPort: 11211 ToPort: 11211 SourceSecurityGroupId: !Ref WebSecurityGroup DatabaseSecurityGroup: Type: AWS::EC2::SecurityGroup Properties: GroupDescription: Database to the instance VpcId: !Ref VPC SecurityGroupIngress: - IpProtocol: tcp FromPort: 3306 ToPort: 3306 SourceSecurityGroupId: !Ref WebSecurityGroup
Editor is loading...