Terragrunt Timestamp

Hello, how can I put a timestamp into my inputs inside terragrunt.hcl file?

Use the timestamp function. E.g.,

inputs = {
  foo = timestamp()
}

Terragrunt supports all built-in Terraform functions.

1 Like

@jim Thank you very much for your help