Files
nomad/terraform/shared/config/consul.hcl
Nick Wales e014e8411c terraform: updates AWS example packer and terraform code (#19512)
The "Provision a Nomad cluster in the cloud" works in AWS with these updates:

- use an available ubuntu version
- uses hashicorp packages where possible
- updates Nvidia installation
- installs CNI plugins
2024-04-16 10:47:31 -04:00

18 lines
330 B
HCL

advertise_addr = "IP_ADDRESS"
bind_addr = "0.0.0.0"
client_addr = "0.0.0.0"
bootstrap_expect = SERVER_COUNT
data_dir = "/opt/consul/data"
log_level = "INFO"
retry_join = ["RETRY_JOIN"]
server = true
ports = {
grpc = 8502
}
ui_config {
enabled = true
}
connect {
enabled = true
}