File size: 2,143 Bytes
d8fb01e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
AWSTemplateFormatVersion: "2010-09-09"

Description: 'Template creates a Network Load Balancer in 2 AZs with EIPs listening on TCP port 80. There are no registered targets these would either be EC2 instance IDs added to the targets property of the target group  or defined under the autoscaling group resources  '

Parameters:
  VPC:
    Type: List<AWS::EC2::VPC::Id>

  Subnet1:
    Description: ID of the Subnet the instance should be launched in, this will link the instance to the same VPC.
    Type: List<AWS::EC2::Subnet::Id>

  Subnet2:
    Description: ID of the Subnet the instance should be launched in, this will link the instance to the same VPC.
    Type: List<AWS::EC2::Subnet::Id>

  ELBType:
    Type: String
    Default: network

  ELBIpAddressType:
    Type: String
    AllowedValues:
      - ipv4
      - dualstack
    Default: ipv4

Resources:
  EIP1:
    Type: AWS::EC2::EIP
    Properties:
      Domain: vpc

  EIP2:
    Type: AWS::EC2::EIP
    Properties:
      Domain: vpc

  loadBalancer:
    Type: AWS::ElasticLoadBalancingV2::LoadBalancer
    DependsOn:
      - EIP2
      - EIP1
    Properties:
      SubnetMappings:
        - AllocationId: !GetAtt EIP1.AllocationId
          SubnetId: !Select
            - "0"
            - !Ref Subnet1
        - AllocationId: !GetAtt EIP2.AllocationId
          SubnetId: !Select
            - "0"
            - !Ref Subnet2
      Type: !Ref ELBType
      IpAddressType: !Ref ELBIpAddressType

  FirstEIP:
    Type: AWS::EC2::EIP
    Properties:
      Domain: vpc

  SecondEIP:
    Type: AWS::EC2::EIP
    Properties:
      Domain: vpc

  TargetGroup:
    Type: AWS::ElasticLoadBalancingV2::TargetGroup
    Properties:
      Name: MyTargets
      Port: 10
      Protocol: TCP
      TargetGroupAttributes:
        - Key: deregistration_delay.timeout_seconds
          Value: "20"
      VpcId: !Select
        - "0"
        - !Ref VPC

  Listener:
    Type: AWS::ElasticLoadBalancingV2::Listener
    Properties:
      DefaultActions:
        - Type: forward
          TargetGroupArn: !Ref TargetGroup
      LoadBalancerArn: !Ref loadBalancer
      Port: "80"
      Protocol: TCP