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