* Update and pin dependencies * Update NextJS Scripts * npm run lint * npm run format * docs generator: indent docs by two and make spacing better Co-authored-by: Adrien Delorme <azr@users.noreply.github.com>
10 lines
204 B
Plaintext
10 lines
204 B
Plaintext
```hcl
|
|
# locals.pkr.hcl
|
|
locals {
|
|
# locals can be bare values like:
|
|
wee = local.baz
|
|
# locals can also be set with other variables :
|
|
baz = "Foo is '${var.foo}' but not '${local.wee}'"
|
|
}
|
|
```
|