안녕하세요 ! BETTERMONDAY 입니다! 이번 포스팅에도 저번 포스팅에 이어 LB 생성을 해보도록 하겠습니다. 거의 다 왔습니다! 그럼 슈유우우웃!
1. ALB 생성
앞서 Web,Was 이중화를 위해 두개 씩 생성하였고, 이것을 LB생성 후 연결해줍니다. External LoaBalancer는 ALB를 사용하도록 하겠습니다.
※ALB : HTTP 및 HTTPS 트래픽 로드밸런싱 최적화 된 L7 로드밸런서
#외부ALB 생성(External)
resource "aws_lb" "tier-alb-web" {
name = "tier-alb-web"
internal = false #외부 로드밸런서(External)
load_balancer_type = "application"
security_groups = [aws_security_group.tier-sg-alb-web.id] #alb는 sg가 필요합니다.
subnets = [aws_subnet.public-a.id, aws_subnet.public-c.id] # public에서 web 통신
tags = {
"Name" = "tier-alb-web"
}
}
#TargetGroup 생성
resource "aws_lb_target_group" "tier-a-target-web" {
name = "tier-target-wb"
port = "80"
protocol = "HTTP"
vpc_id = aws_vpc.tier.id
target_type = "instance"
tags = {
"Name" = "tier-target-web"
}
}
#Listener 생성
resource "aws_lb_listener" "tier-a-listener-web" {
load_balancer_arn = aws_lb.tier-alb-web.arn
port = "80"
protocol = "HTTP"
default_action {
type = "forward"
target_group_arn = aws_lb_target_group.tier-a-target-web.arn
}
}
#2개의 Web Attachment
resource "aws_lb_target_group_attachment" "tier-a-attach-web1" {
target_group_arn = aws_lb_target_group.tier-a-target-web.arn
target_id = aws_instance.tier-ec2-pri-a-web1.id
port = 80
}
resource "aws_lb_target_group_attachment" "tier-a-attach-web2" {
target_group_arn = aws_lb_target_group.tier-a-target-web.arn
target_id = aws_instance.tier-ec2-pri-web2.id
port = 80
}
2. NLB
Was가 Ip port로 web -> Was 로 접근하므로 tcp 통신을 로드밸런싱 하는 NLB를 생성하여 줍니다.
※NLB : Network Load Balancer - TCP, UDP 등 서버 구축 시 최적의 성능을 보여주는 L4 로드밸런서
#NLB 생성
resource "aws_lb" "tier-nlb-was" {
name = "tier-nlb-was"
internal = true
load_balancer_type = "network"
subnets = [aws_subnet.web-sub-a.id, aws_subnet.web-sub-c.id] #Web Subnet에서 Was를 바라봄
tags = {
"Name" = "tier-nlb-was"
}
}
#Target Group
# Was 의 Tomcat은 8080 Port로 통신
resource "aws_lb_target_group" "tier-n-target-was" {
name = "tier-n-target-was"
port = 8080
protocol = "TCP"
vpc_id = aws_vpc.tier.id
target_type = "instance"
tags = {
"Name" = "tier-n-target-was"
}
}
#NLB Attachement 생성
resource "aws_lb_target_group_attachment" "tier-n-attache-was1" {
target_group_arn = aws_lb_target_group.tier-n-target-was.arn
target_id = aws_instance.tier-ec2-pri-a-was1.id
port = 8080
}
resource "aws_lb_target_group_attachment" "tier-n-attache-was2" {
target_group_arn = aws_lb_target_group.tier-n-target-was.arn
target_id = aws_instance.tier-ec2-pri-c-was2.id
port = 8080
}
여기까지가 Terraform 을 이용한 AWS 3Tier 만들기입니다! 콘솔에서 똑같이 3tier를 생성할 수 있지만, 이렇게 코드로 생성하는것도 편리하고, 관리가 편하니 한번 쯤 해보시는걸 추천드립니다! 수고하셨습니다! 그럼 베바~~
'CSP (Cloud Service Provider) > AWS' 카테고리의 다른 글
CPU/디스크/메모리 (1) (0) | 2022.12.20 |
---|---|
AWS Snow Family (2) | 2022.12.19 |
AWS Terraform 3tier (3) (0) | 2022.12.19 |
AWS Terraform 3tier (2) (0) | 2022.12.19 |
AWS Terraform 3tier (1) (0) | 2022.12.19 |
댓글