Skip to content

Commit

Permalink
docs: Add note for next breaking change to remove load_balancers an…
Browse files Browse the repository at this point in the history
…d `target_group_arns` from use (#253)

* docs: Add note for next breaking change to remove `load_balancers` and `target_group_arns` from use

* fix: Formatting
  • Loading branch information
bryantbiggs authored Nov 30, 2023
1 parent e5b9fe4 commit 62b879b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,9 @@ resource "aws_autoscaling_group" "this" {
default_instance_warmup = var.default_instance_warmup
protect_from_scale_in = var.protect_from_scale_in

load_balancers = var.load_balancers
# TODO - remove at next breaking change. Use `traffic_source_identifier`/`traffic_source_type` instead
load_balancers = var.load_balancers
# TODO - remove at next breaking change. Use `traffic_source_identifier`/`traffic_source_type` instead
target_group_arns = var.target_group_arns
placement_group = var.placement_group
health_check_type = var.health_check_type
Expand Down

0 comments on commit 62b879b

Please sign in to comment.