diff --git a/modules/service/README.md b/modules/service/README.md
index 4faaf8f..9296ad7 100644
--- a/modules/service/README.md
+++ b/modules/service/README.md
@@ -318,7 +318,7 @@ module "ecs_service" {
| [tasks\_iam\_role\_tags](#input\_tasks\_iam\_role\_tags) | A map of additional tags to add to the IAM role created | `map(string)` | `{}` | no |
| [tasks\_iam\_role\_use\_name\_prefix](#input\_tasks\_iam\_role\_use\_name\_prefix) | Determines whether the IAM role name (`tasks_iam_role_name`) is used as a prefix | `bool` | `true` | no |
| [timeouts](#input\_timeouts) | Create, update, and delete timeout configurations for the service | `map(string)` | `{}` | no |
-| [triggers](#input\_triggers) | Map of arbitrary keys and values that, when changed, will trigger an in-place update (redeployment). Useful with `timestamp()` | `any` | `{}` | no |
+| [triggers](#input\_triggers) | Map of arbitrary keys and values that, when changed, will trigger an in-place update (redeployment). Useful with `plantimestamp()` | `any` | `{}` | no |
| [volume](#input\_volume) | Configuration block for volumes that containers in your task may use | `any` | `{}` | no |
| [wait\_for\_steady\_state](#input\_wait\_for\_steady\_state) | If true, Terraform will wait for the service to reach a steady state before continuing. Default is `false` | `bool` | `null` | no |
| [wait\_until\_stable](#input\_wait\_until\_stable) | Whether terraform should wait until the task set has reached `STEADY_STATE` | `bool` | `null` | no |
diff --git a/modules/service/variables.tf b/modules/service/variables.tf
index 9a55e98..e457f7d 100644
--- a/modules/service/variables.tf
+++ b/modules/service/variables.tf
@@ -183,7 +183,7 @@ variable "timeouts" {
}
variable "triggers" {
- description = "Map of arbitrary keys and values that, when changed, will trigger an in-place update (redeployment). Useful with `timestamp()`"
+ description = "Map of arbitrary keys and values that, when changed, will trigger an in-place update (redeployment). Useful with `plantimestamp()`"
type = any
default = {}
}