Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[airbyte_connection] Support basic schedule type #106

Open
ivan-sukhomlyn opened this issue May 21, 2024 · 0 comments
Open

[airbyte_connection] Support basic schedule type #106

ivan-sukhomlyn opened this issue May 21, 2024 · 0 comments

Comments

@ivan-sukhomlyn
Copy link

Actually, due to limitations on the provider's side, the basic connection schedule type cannot be configured.
For example, the manually created connection object structure got from API:

      "schedule": {
        "scheduleType": "basic",
        "basicTiming": "Every 24 hours"
      }

terraform config

resource "airbyte_connection" "test" {
...
  schedule = {
    schedule_type  = "basic"
    basic_schedule = "Every 24 hours"
  }

terraform plan error:

│ Error: Invalid Attribute Value Match
│ 
│   with airbyte_connection.test,
│   on airbyte-connections.tf line 164, in resource "airbyte_connection" "test":
│  164: resource "airbyte_connection" "test" {
│ 
│ Attribute schedule.schedule_type value must be one of: ["\"manual\"" "\"cron\""], got: "basic"

It would be very nice to have this possibility 🙂 🙏

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant