Adrien Delorme 52ba74e3c9 better docs
2020-06-02 16:33:32 +02:00

9 lines
203 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}'"
}
```