Datasets:
File size: 4,587 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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | {
"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": {
"Fn::GetAtt": [
"EIP1",
"AllocationId"
]
},
"SubnetId": {
"Fn::Select": [
"0",
{
"Ref": "Subnet1"
}
]
}
},
{
"AllocationId": {
"Fn::GetAtt": [
"EIP2",
"AllocationId"
]
},
"SubnetId": {
"Fn::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": {
"Fn::Select": [
"0",
{
"Ref": "VPC"
}
]
}
}
},
"Listener": {
"Type": "AWS::ElasticLoadBalancingV2::Listener",
"Properties": {
"DefaultActions": [
{
"Type": "forward",
"TargetGroupArn": {
"Ref": "TargetGroup"
}
}
],
"LoadBalancerArn": {
"Ref": "loadBalancer"
},
"Port": "80",
"Protocol": "TCP"
}
}
}
}
|