-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlb.tf
136 lines (116 loc) · 3.57 KB
/
lb.tf
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
# resource "aws_security_group" "lb" {
# name_prefix = "${var.name}-${var.environment}-cluster-ecs-"
# vpc_id = data.aws_vpc.this.id
# tags = {
# Name = "${var.name}-${var.environment}-cluster-ecs"
# Network = var.vpc_name
# Terraform = "terraform-aws-cluster"
# }
# }
# resource "aws_vpc_security_group_ingress_rule" "lb_http" {
# security_group_id = aws_security_group.lb.id
# cidr_ipv4 = "0.0.0.0/0"
# from_port = 80
# ip_protocol = "tcp"
# to_port = 80
# tags = {
# Name = "${var.name}-${var.environment}-cluster-ecs"
# Network = var.vpc_name
# Terraform = "terraform-aws-cluster"
# }
# }
# resource "aws_vpc_security_group_egress_rule" "lb_all" {
# security_group_id = aws_security_group.lb.id
# cidr_ipv4 = "0.0.0.0/0"
# ip_protocol = "-1"
# tags = {
# Name = "${var.name}-${var.environment}-cluster-ecs"
# Network = var.vpc_name
# Terraform = "terraform-aws-cluster"
# }
# }
# resource "aws_lb" "this_public" {
# enable_deletion_protection = false
# idle_timeout = 300
# internal = false
# load_balancer_type = "application"
# preserve_host_header = false
# security_groups = [aws_security_group.lb.id]
# subnets = data.aws_subnets.this_public.ids
# tags = {
# Name = "${var.name}-${var.environment}-cluster-ecs"
# Network = var.vpc_name
# Terraform = "terraform-aws-cluster"
# }
# }
# resource "aws_lb_listener" "http" {
# load_balancer_arn = aws_lb.this_public.arn
# port = "80"
# protocol = "HTTP"
# default_action {
# type = "fixed-response"
# fixed_response {
# content_type = "application/json"
# message_body = jsonencode({ message = "not found" })
# status_code = "404"
# }
# }
# tags = {
# Name = "${var.name}-${var.environment}-cluster-ecs"
# Network = var.vpc_name
# Terraform = "terraform-aws-cluster"
# }
# }
# # resource "aws_lb_listener" "http" {
# # load_balancer_arn = aws_lb.this.arn
# # port = "80"
# # protocol = "HTTP"
# # default_action {
# # type = "redirect"
# # redirect {
# # port = "443"
# # protocol = "HTTPS"
# # status_code = "HTTP_301"
# # }
# # }
# # }
# # resource "aws_lb_listener" "https" {
# # certificate_arn = "<insert your certificate ARN here>"
# # load_balancer_arn = aws_lb.this.arn
# # port = "443"
# # protocol = "HTTPS"
# # ssl_policy = "ELBSecurityPolicy-2016-08"
# # default_action {
# # type = "fixed-response"
# # fixed_response {
# # content_type = "application/json"
# # message_body = jsonencode({ message = "not found" })
# # status_code = "404"
# # }
# # }
# # }
# resource "aws_lb_target_group" "service" {
# deregistration_delay = 60
# load_balancing_cross_zone_enabled = true
# port = 80
# protocol = "HTTP"
# vpc_id = data.aws_vpc.this.id
# tags = {
# Cluster = "${var.name}-${var.environment}"
# Name = "fem-eci-service-${var.environment}"
# Network = var.vpc_name
# Terraform = "terraform-aws-cluster"
# }
# }
# resource "aws_lb_listener_rule" "service" {
# listener_arn = aws_lb_listener.http.arn
# action {
# target_group_arn = aws_lb_target_group.service.arn
# type = "forward"
# }
# condition {
# host_header {
# values = ["${var.name}.${var.domain}"]
# }
# }
# }