hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.61k stars 8.99k forks source link

[Bug]: ecs_task_definition → volume → configure_at_launch attribute change not detected #38153

Open izeau opened 4 days ago

izeau commented 4 days ago

Terraform Core Version

1.9.0

AWS Provider Version

5.55.0

Affected Resource(s)

Expected Behavior

A diff is detected and a new task definition revision is created

Actual Behavior

No diff detected

Relevant Error/Panic Output Snippet

No response

Terraform Configuration Files

resource "aws_ecs_task_definition" "service" {
  family                   = "test"
  network_mode             = "awsvpc"
  requires_compatibilities = ["FARGATE"]
  cpu                      = 1024
  memory                   = 2048

  container_definitions = jsonencode([{
    name = "demo"
    image = "alpine"
  }])

  volume {
    name = "test"
  }
}
resource "aws_ecs_task_definition" "service" {
  ...

  volume {
    name                = "test"
    configure_at_launch = true
  }
}

Steps to Reproduce

Debug Output

No response

Panic Output

No response

Important Factoids

No response

References

No response

Would you like to implement a fix?

None

github-actions[bot] commented 4 days ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue