- autoscaling_attachment 생성 # 19.autoattach.tf resource "aws_autoscaling_attachment" "tf-asattach" { autoscaling_group_name = aws_autoscaling_group.tf_atsg.id lb_target_group_arn = aws_lb_target_group.tf-albtg.id } - Load Balancer에 이전에 생성한 auto scaling group를 attachment 시킨다. - rds 생성 - sh 파일에 health.html 파일을 생성했기 때문에 albtg의 health check를 위한 path도 /health.html로 변경해주어야 한다. # 20.rds.tf resource "aw..