Changing ```terraform output "test" { value = ["first", "second"] } ``` to ```terraform output "test" { value = true ? ["first", "second"] : [] # ["first", "second"] } ``` unexpectedly and incorrectly produces a plan with a change like ``` Changes to Outputs: ~ test = [ - "first", - "second", ] -> [ + "first", + "second", ] ``` This occurs in Terraform v1.2.0 and earlier versions, such as 1.1.7. ### Terraform Version ``` Terraform v1.2.0 on darwin_amd64 + provider registry.terraform.io/hashicorp/aws v4.15.1 ```