Terraform
floor Function
⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️
[!IMPORTANT]
Documentation Update: Product documentation previously located in/website
has moved to thehashicorp/web-unified-docs
repository, where all product documentation is now centralized. Please make contributions directly toweb-unified-docs
, since changes to/website
in this repository will not appear on developer.hashicorp.com. ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️
floor
returns the closest whole number that is less than or equal to the
given value, which may be a fraction.
Examples
> floor(5)
5
> floor(4.9)
4
Related Functions
ceil
, which rounds to the nearest whole number greater than or equal.