Amazon web services – How I can specify the domain in AWS LB for different target groups?
Upon terraform I did: resource "aws_lb" "test_lb" { name = "test-lb-tf" internal = false load_balancer_type = "application" security_groups = [aws_security_group.lb_sg.id] enable_deletion_protection = true access_logs { bucket = "logs.example.com" prefix = "test-lb" enabled = true } } #Test 1 resource "aws_route53_record"…