Skip to content

Commit

Permalink
Use context tags (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocode authored Aug 16, 2022
1 parent b8f198b commit ce96659
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ resource "aws_lb_target_group" "default" {
protocol = var.protocol
protocol_version = var.protocol_version
slow_start = var.slow_start
tags = var.tags
target_type = var.target_type
vpc_id = var.vpc_id

Expand All @@ -42,6 +41,8 @@ resource "aws_lb_target_group" "default" {
matcher = var.health_check_matcher
}

tags = module.this.tags

lifecycle {
create_before_destroy = true
}
Expand Down

0 comments on commit ce96659

Please sign in to comment.