25 lines
442 B
HCL
25 lines
442 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
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 = ""
|
|
}
|
|
|