diff --git a/README.md b/README.md
index 2886bd0..cb445fd 100644
--- a/README.md
+++ b/README.md
@@ -142,13 +142,14 @@ In overview, this repository acts as a digestible module that allows you to crea
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.6 |
+| [null](#requirement\_null) | ~> 3.1.0 |
| [snowflake](#requirement\_snowflake) | ~> 0.90.0 |
## Providers
| Name | Version |
|------|---------|
-| [null](#provider\_null) | n/a |
+| [null](#provider\_null) | ~> 3.1.0 |
| [snowflake](#provider\_snowflake) | ~> 0.90.0 |
## Modules
@@ -166,7 +167,7 @@ No modules.
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
-| [after](#input\_after) | The after condition for the task. | `string` | `""` | no |
+| [after](#input\_after) | The predecessor task for the task | `list(string)` | `[]` | no |
| [allow\_overlapping\_execution](#input\_allow\_overlapping\_execution) | Allow overlapping execution setting for the task. | `bool` | `false` | no |
| [comment](#input\_comment) | The comment for the task. | `string` | `""` | no |
| [database](#input\_database) | The database for the task. | `string` | n/a | yes |
@@ -177,7 +178,6 @@ No modules.
| [session\_parameters](#input\_session\_parameters) | The session parameters for the task. | `map(string)` | `{}` | no |
| [sql\_statement](#input\_sql\_statement) | The SQL statement for the task. | `string` | n/a | yes |
| [suspend\_task\_after\_num\_failures](#input\_suspend\_task\_after\_num\_failures) | The number of failures after which the task should be suspended. | `number` | `3` | no |
-| [under\_task\_timeout\_ms](#input\_under\_task\_timeout\_ms) | The under task timeout in milliseconds. | `number` | `600000` | no |
| [user\_task\_managed\_initial\_warehouse\_size](#input\_user\_task\_managed\_initial\_warehouse\_size) | n/a | `string` | `"small"` | no |
| [warehouse](#input\_warehouse) | The warehouse for the task. | `string` | `null` | no |
| [when](#input\_when) | The when condition for the task. | `string` | `null` | no |
diff --git a/examples/complete/.terraform.lock.hcl b/examples/complete/.terraform.lock.hcl
index bce0cd5..fad013e 100644
--- a/examples/complete/.terraform.lock.hcl
+++ b/examples/complete/.terraform.lock.hcl
@@ -2,21 +2,22 @@
# Manual edits may be lost in future updates.
provider "registry.terraform.io/hashicorp/null" {
- version = "3.2.2"
+ version = "3.1.1"
+ constraints = "~> 3.1.0"
hashes = [
- "h1:m467k2tZ9cdFFgHW7LPBK2GLPH43LC6wc3ppxr8yvoE=",
- "zh:3248aae6a2198f3ec8394218d05bd5e42be59f43a3a7c0b71c66ec0df08b69e7",
- "zh:32b1aaa1c3013d33c245493f4a65465eab9436b454d250102729321a44c8ab9a",
- "zh:38eff7e470acb48f66380a73a5c7cdd76cc9b9c9ba9a7249c7991488abe22fe3",
- "zh:4c2f1faee67af104f5f9e711c4574ff4d298afaa8a420680b0cb55d7bbc65606",
- "zh:544b33b757c0b954dbb87db83a5ad921edd61f02f1dc86c6186a5ea86465b546",
- "zh:696cf785090e1e8cf1587499516b0494f47413b43cb99877ad97f5d0de3dc539",
- "zh:6e301f34757b5d265ae44467d95306d61bef5e41930be1365f5a8dcf80f59452",
+ "h1:1J3nqAREzuaLE7x98LEELCCaMV6BRiawHSg9MmFvfQo=",
+ "zh:063466f41f1d9fd0dd93722840c1314f046d8760b1812fa67c34de0afcba5597",
+ "zh:08c058e367de6debdad35fc24d97131c7cf75103baec8279aba3506a08b53faf",
+ "zh:73ce6dff935150d6ddc6ac4a10071e02647d10175c173cfe5dca81f3d13d8afe",
"zh:78d5eefdd9e494defcb3c68d282b8f96630502cac21d1ea161f53cfe9bb483b3",
- "zh:913a929070c819e59e94bb37a2a253c228f83921136ff4a7aa1a178c7cce5422",
- "zh:aa9015926cd152425dbf86d1abdbc74bfe0e1ba3d26b3db35051d7b9ca9f72ae",
- "zh:bb04798b016e1e1d49bcc76d62c53b56c88c63d6f2dfe38821afef17c416a0e1",
- "zh:c23084e1b23577de22603cff752e59128d83cfecc2e6819edadd8cf7a10af11e",
+ "zh:8fdd792a626413502e68c195f2097352bdc6a0df694f7df350ed784741eb587e",
+ "zh:976bbaf268cb497400fd5b3c774d218f3933271864345f18deebe4dcbfcd6afa",
+ "zh:b21b78ca581f98f4cdb7a366b03ae9db23a73dfa7df12c533d7c19b68e9e72e5",
+ "zh:b7fc0c1615dbdb1d6fd4abb9c7dc7da286631f7ca2299fb9cd4664258ccfbff4",
+ "zh:d1efc942b2c44345e0c29bc976594cb7278c38cfb8897b344669eafbc3cddf46",
+ "zh:e356c245b3cd9d4789bab010893566acace682d7db877e52d40fc4ca34a50924",
+ "zh:ea98802ba92fcfa8cf12cbce2e9e7ebe999afbf8ed47fa45fc847a098d89468b",
+ "zh:eff8872458806499889f6927b5d954560f3d74bf20b6043409edf94d26cd906f",
]
}
diff --git a/examples/complete/README.md b/examples/complete/README.md
index 35615dc..ba64155 100644
--- a/examples/complete/README.md
+++ b/examples/complete/README.md
@@ -6,6 +6,7 @@
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.6 |
+| [null](#requirement\_null) | ~> 3.1.0 |
| [snowflake](#requirement\_snowflake) | ~> 0.90.0 |
## Providers