906528c197
Also format terraform scripts with hclfmt, equivalent to terraform fmt. I opted not to use terraform fmt, because I didn't want to introduce dev dependency on the terraform CLI. Also, I've optimized the find command to ignore spurious directories (e.g. .git, node_modules) that seem to be populated with too many files! make hclfmt takes 0.3s on my mac down from 7 seconds!
22 lines
374 B
HCL
22 lines
374 B
HCL
data_dir = "/opt/nomad/data"
|
|
bind_addr = "0.0.0.0"
|
|
|
|
# Enable the server
|
|
server {
|
|
enabled = true
|
|
bootstrap_expect = SERVER_COUNT
|
|
}
|
|
|
|
consul {
|
|
address = "127.0.0.1:8500"
|
|
}
|
|
|
|
vault {
|
|
enabled = false
|
|
address = "http://active.vault.service.consul:8200"
|
|
task_token_ttl = "1h"
|
|
create_from_role = "nomad-cluster"
|
|
token = ""
|
|
}
|
|
|