mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 10:55:42 +03:00
* Move commands from docs to its own root-level directory * temporarily use modified dev-portal branch with nomad ia changes * explicitly clone nomad ia exp branch * retrigger build, fixed dev-portal broken build * architecture, concepts and get started individual pages * fix get started section destinations * reference section * update repo comment in website-build.sh to show branch * docs nav file update capitalization * update capitalization to force deploy * remove nomad-vs-kubernetes dir; move content to what is nomad pg * job section * Nomad operations category, deploy section * operations category, govern section * operations - manage * operations/scale; concepts scheduling fix * networking * monitor * secure section * remote auth-methods folder and move up pages to sso; linkcheck * Fix install2deploy redirects * fix architecture redirects * Job section: Add missing section index pages * Add section index pages so breadcrumbs build correctly * concepts/index fix front matter indentation * move task driver plugin config to new deploy section * Finish adding full URL to tutorials links in nav * change SSO to Authentication in nav and file system * Docs NomadIA: Move tutorials into NomadIA branch (#26132) * Move governance and policy from tutorials to docs * Move tutorials content to job-declare section * run jobs section * stateful workloads * advanced job scheduling * deploy section * manage section * monitor section * secure/acl and secure/authorization * fix example that contains an unseal key in real format * remove images from sso-vault * secure/traffic * secure/workload-identities * vault-acl change unseal key and root token in command output sample * remove lines from sample output * fix front matter * move nomad pack tutorials to tools * search/replace /nomad/tutorials links * update acl overview with content from deleted architecture/acl * fix spelling mistake * linkcheck - fix broken links * fix link to Nomad variables tutorial * fix link to Prometheus tutorial * move who uses Nomad to use cases page; move spec/config shortcuts add dividers * Move Consul out of Integrations; move namespaces to govern * move integrations/vault to secure/vault; delete integrations * move ref arch to docs; rename Deploy Nomad back to Install Nomad * address feedback * linkcheck fixes * Fixed raw_exec redirect * add info from /nomad/tutorials/manage-jobs/jobs * update page content with newer tutorial * link updates for architecture sub-folders * Add redirects for removed section index pages. Fix links. * fix broken links from linkcheck * Revert to use dev-portal main branch instead of nomadIA branch * build workaround: add intro-nav-data.json with single entry * fix content-check error * add intro directory to get around Vercel build error * workound for emtpry directory * remove mdx from /intro/ to fix content-check and git snafu * Add intro index.mdx so Vercel build should work --------- Co-authored-by: Tu Nguyen <im2nguyen@gmail.com>
116 lines
3.3 KiB
Plaintext
116 lines
3.3 KiB
Plaintext
---
|
|
layout: docs
|
|
page_title: flatten - Functions - Configuration Language
|
|
description: The flatten function eliminates nested lists from a list.
|
|
---
|
|
|
|
# `flatten` Function
|
|
|
|
`flatten` takes a list and replaces any elements that are lists with a
|
|
flattened sequence of the list contents.
|
|
|
|
## Examples
|
|
|
|
```shell-session
|
|
> flatten([["a", "b"], [], ["c"]])
|
|
["a", "b", "c"]
|
|
```
|
|
|
|
If any of the nested lists also contain directly-nested lists, these too are
|
|
flattened recursively:
|
|
|
|
```shell-session
|
|
> flatten([[["a", "b"], []], ["c"]])
|
|
["a", "b", "c"]
|
|
```
|
|
|
|
Indirectly-nested lists, such as those in maps, are _not_ flattened.
|
|
|
|
<!---
|
|
|
|
## TODO: revamp this section
|
|
|
|
## Flattening nested structures for `for_each`
|
|
|
|
The
|
|
[resource `for_each`](https://www.terraform.io/docs/configuration/resources.html#for_each-multiple-resource-instances-defined-by-a-map-or-set-of-strings)
|
|
and
|
|
[`dynamic` block](/nomad/docs/reference/hcl2/expressions#dynamic-blocks)
|
|
language features both require a collection value that has one element for
|
|
each repetition.
|
|
|
|
Sometimes your input data structure isn't naturally in a suitable shape for
|
|
use in a `for_each` argument, and `flatten` can be a useful helper function
|
|
when reducing a nested data structure into a flat one.
|
|
|
|
For example, consider a folder that declares a variable like the following:
|
|
|
|
```hcl
|
|
variable "networks" {
|
|
type = map(object({
|
|
cidr_block = string
|
|
subnets = map(object({
|
|
cidr_block = string
|
|
})
|
|
})
|
|
}
|
|
```
|
|
|
|
The above is a reasonable way to model objects that naturally form a tree,
|
|
such as top-level networks and their subnets. The repetition for the top-level
|
|
networks can use this variable directly, because it's already in a form
|
|
where the resulting instances match one-to-one with map elements:
|
|
|
|
```hcl
|
|
resource "aws_vpc" "example" {
|
|
for_each = var.networks
|
|
|
|
cidr_block = each.value.cidr_block
|
|
}
|
|
```
|
|
|
|
However, in order to declare all of the _subnets_ with a single `resource`
|
|
block, we must first flatten the structure to produce a collection where each
|
|
top-level element represents a single subnet:
|
|
|
|
```hcl
|
|
locals {
|
|
# flatten ensures that this local value is a flat list of objects, rather
|
|
# than a list of lists of objects.
|
|
network_subnets = flatten([
|
|
for network_key, network in var.networks : [
|
|
for subnet_key, subnet in network.subnets : {
|
|
network_key = network_key
|
|
subnet_key = subnet_key
|
|
network_id = aws_vpc.example[network_key].id
|
|
cidr_block = subnet.cidr_block
|
|
}
|
|
]
|
|
])
|
|
}
|
|
|
|
resource "aws_subnet" "example" {
|
|
# local.network_subnets is a list, so we must now project it into a map
|
|
# where each key is unique. We'll combine the network and subnet keys to
|
|
# produce a single unique key per instance.
|
|
for_each = {
|
|
for subnet in local.network_subnets : "${subnet.network_key}.${subnet.subnet_key}" => subnet
|
|
}
|
|
|
|
vpc_id = each.value.network_id
|
|
availability_zone = each.value.subnet_key
|
|
cidr_block = each.value_cidr_block
|
|
}
|
|
```
|
|
|
|
The above results in one subnet instance per subnet object, while retaining
|
|
the associations between the subnets and their containing networks.
|
|
|
|
-->
|
|
|
|
## Related Functions
|
|
|
|
- [`setproduct`](/nomad/docs/reference/hcl2/functions/collection/setproduct) finds all of the combinations of multiple
|
|
lists or sets of values, which can also be useful when preparing collections
|
|
for use with `for_each` constructs.
|