PrefectHQ / terraform-provider-prefect

Terraform Provider for Prefect Cloud
https://registry.terraform.io/providers/PrefectHQ/prefect/latest/docs
Apache License 2.0
29 stars 13 forks source link

bug: specifying a work-pool base_job_template (on update or create) is causing an inconsistent update error #102

Closed parkedwards closed 8 months ago

parkedwards commented 8 months ago
resource "prefect_work_pool" "kubernetes" {
  name              = "test-k8s-work-pool"
  type              = "Kubernetes"
  workspace_id      = prefect_workspace.internal["integration-tests"].id
  base_job_template = file("./job-template/base.json")
}

Image

however, the update call is happening correctly, as I see the job template update correctly in the UI

parkedwards commented 8 months ago

relates to #35