We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e8b83a commit 6edb6ffCopy full SHA for 6edb6ff
1 file changed
modules/jobs/main.tf
@@ -50,6 +50,10 @@ resource "dbtcloud_job" "job" {
50
schedule_interval = lookup(each.value, "schedule_interval", null)
51
schedule_type = lookup(each.value, "schedule_type", null)
52
target_name = lookup(each.value, "target_name", null)
53
- timeout_seconds = lookup(each.value, "timeout_seconds", 0)
54
triggers_on_draft_pr = lookup(each.value, "triggers_on_draft_pr", false)
+
55
+ # Provider v1.3+ execution block
56
+ execution {
57
+ timeout_seconds = lookup(each.value, "timeout_seconds", 0)
58
+ }
59
}
0 commit comments