79274688

Date: 2024-12-12 10:22:04
Score: 0.5
Natty:
Report link

So, guys, the issue was caused by the absence of this tag in the Auto Scaling Group configuration:

resource "aws_autoscaling_group" "test" {
  # ... other configuration, including potentially other tags ...

  tag {
    key                 = "AmazonECSManaged"
    value               = true
    propagate_at_launch = true
  }
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dyedfox