terraform/website/docs
Martin Atkins 140c613ae8 lang/funcs: "one" function
In the Terraform language we typically use lists of zero or one values in
some sense interchangably with single values that might be null, because
various Terraform language constructs are designed to work with
collections rather than with nullable values.

In Terraform v0.12 we made the splat operator [*] have a "special power"
of concisely converting from a possibly-null single value into a
zero-or-one list as a way to make that common operation more concise.

In a sense this "one" function is the opposite operation to that special
power: it goes from a zero-or-one collection (list, set, or tuple) to a
possibly-null single value.

This is a concise alternative to the following clunky conditional
expression, with the additional benefit that the following expression is
also not viable for set values, and it also properly handles the case
where there's unexpectedly more than one value:

    length(var.foo) != 0 ? var.foo[0] : null

Instead, we can write:

    one(var.foo)

As with the splat operator, this is a tricky tradeoff because it could be
argued that it's not something that'd be immediately intuitive to someone
unfamiliar with Terraform. However, I think that's justified given how
often zero-or-one collections arise in typical Terraform configurations.
Unlike the splat operator, it should at least be easier to search for its
name and find its documentation the first time you see it in a
configuration.

My expectation that this will become a common pattern is also my
justification for giving it a short, concise name. Arguably it could be
better named something like "oneornull", but that's a pretty clunky name
and I'm not convinced it really adds any clarity for someone who isn't
already familiar with it.
2021-04-12 15:32:03 -07:00
..
cli Merge pull request #28164 from hashicorp/rln-add-resource-targeting-tutorial-callout 2021-03-29 09:12:30 -05:00
configuration website: Move hidden attr-as-blocks page into new URL structure 2021-01-22 12:22:21 -08:00
configuration-0-11 website: CLI: Update links to moved docs pages 2021-01-22 12:22:21 -08:00
internals Accept TF_LOG=json to enable TRACE logs in JSON format 2021-03-16 14:59:15 -07:00
language lang/funcs: "one" function 2021-04-12 15:32:03 -07:00
providers website: Remove links to legacy provider docs for GitHub, ksyun 2021-01-22 12:51:35 -08:00