Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created March 2, 2019 03:25
Show Gist options
  • Select an option

  • Save 100daysofdevops/5323836250c27853c6b9771da650c886 to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/5323836250c27853c6b9771da650c886 to your computer and use it in GitHub Desktop.
resource "aws_lb_target_group_attachment" "my-tg-attachment1" {
target_group_arn = "${aws_lb_target_group.my-alb-tg.arn}"
target_id = "${var.instance_id1}"
port = 80
}
resource "aws_lb_target_group_attachment" "my-tg-attachment2" {
target_group_arn = "${aws_lb_target_group.my-alb-tg.arn}"
target_id = "${var.instance_id2}"
port = 80
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment