1. Terraform Docs 예시 https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lb_target_group Terraform Registry registry.terraform.io 예시: 인수 등: 2. Terraform 코드 작성 # 13_albtg.tf resource "aws_lb_target_group" "pmh_albtg" { name = "pmh-albtg" port = 80 protocol = "HTTP" vpc_id = aws_vpc.pmh_vpc.id health_check { enabled = true healthy_threshold = 3 interval = 5 matcher = 200 pa..