* website: remove obselete sidebar_title frontmatter from docs * website: bump to latest docs-page * website: update plugin creation and registration docs * website: fix broken links
26 lines
527 B
Plaintext
26 lines
527 B
Plaintext
---
|
|
page_title: ceil - Functions - Configuration Language
|
|
description: |-
|
|
The ceil function returns the closest whole number greater than or equal to
|
|
the given value.
|
|
---
|
|
|
|
# `ceil` Function
|
|
|
|
`ceil` returns the closest whole number that is greater than or equal to the
|
|
given value, which may be a fraction.
|
|
|
|
## Examples
|
|
|
|
```shell-session
|
|
> ceil(5)
|
|
5
|
|
> ceil(5.1)
|
|
6
|
|
```
|
|
|
|
## Related Functions
|
|
|
|
- [`floor`](/docs/templates/hcl_templates/functions/numeric/floor), which rounds to the nearest whole number _less than_
|
|
or equal.
|