From 40914df8679ad158c99441f50f4a41c77963bec2 Mon Sep 17 00:00:00 2001 From: rb-nr <59568085+rb-nr@users.noreply.github.com> Date: Thu, 21 Jan 2021 20:40:10 -0500 Subject: [PATCH] Add tags to aws_lb_target_group.target80 resource --- main.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.tf b/main.tf index ac767bb..f1ee9b8 100644 --- a/main.tf +++ b/main.tf @@ -184,6 +184,10 @@ resource aws_lb_target_group "target80" { healthy_threshold = 2 unhealthy_threshold = 2 } + + tags = merge(var.tags, { + Provider = "BanyanOps" + }) } resource aws_lb_listener "listener80" {