plantimestamp Function
Note: This function is only available in Terraform v1.5 and later.
plantimestamp
returns a UTC timestamp string in RFC 3339 format.
In the Terraform language, timestamps are conventionally represented as
strings using RFC 3339
"Date and Time format" syntax, and so plantimestamp
returns a string
in this format.
The result of this function will change for every plan operation. It is intended for use within Custom Conditions as a way to validate time sensitive resources such as TLS certificates.
There are circumstances, such as during a Terraform Refresh-only plan, where the value for this function will be recomputed but not propagated to resources defined within the configuration. As such, it is recommended that this function only be used to compare against timestamps exported by providers and not against timestamps generated in the configuration.
The plantimestamp
function is not available within the Terraform console.
Examples
Related Functions
timestamp
returns the current timestamp when it is evaluated during the apply step.