Setting up connection using Terraform with selected fields issue

Summary

The user is facing an issue where the Terraform configuration successfully applies but does not set up the selected fields as expected. They are using Airbyte version 0.63.4 and Terraform version 0.5.2.


Question

I am trying to set up connection using terraform with selected fields (airbyte version: 0.63.4, terraform version: 0.5.2).
Though the terraform get applied successfully, it does not set the fields up, but instead selects all the fields.
Can you please suggest what I might be missing here? Thanks!

  data_residency                       = "auto"
  destination_id                       = "<dest-id>"
  source_id                            = "<src-id>"
  status                               = "active"
  name                                 = "Test Connection"
  namespace_definition                 = "destination"
  non_breaking_schema_updates_behavior = "propagate_columns"
  schedule = {
    schedule_type   = "cron"
    cron_expression = "0 0 * * * ?"
  }
  configurations = {
    streams = [
      {
        name      = "MyCollection"
        sync_mode = "incremental_deduped_history",
        cursor_field = [
          "SystemDateTime"
        ]
        selected_fields = [
          {
            field_path = [
              "Id",
              "Name",
              "SystemDateTime"
            ]
          }
        ]
      }
    ]
  }
}```


<br>

---

This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. [Click here](https://airbytehq.slack.com/archives/C021JANJ6TY/p1720646015241139) if you want 
to access the original thread.

[Join the conversation on Slack](https://slack.airbyte.com)

<sub>
["terraform", "airbyte-connection", "selected-fields", "issue"]
</sub>

if I understand correctly that’s not possible yet, but you could subscribe to this issue for future updates:
https://github.com/airbytehq/terraform-provider-airbyte/issues/69

thanks for pointing that out, will keep an eye.