docs: fix jobspec hcl2 locals example.

This commit is contained in:
James Rasell
2021-05-21 15:20:46 +02:00
parent 771aad241f
commit 17ff991a49

View File

@@ -31,7 +31,8 @@ locals {
}
# Local values can be interpolated elsewhere using the "local." prefix.
job "${local.name_prefix}_loadbalancer" {
job "example_loadbalancer" {
name = "${local.name_prefix}_loadbalancer"
# ...
}
```