bad9a82df8
Running `make dev` runs `hclfmt`, but this isn't checked as part of CI. That makes it possible to merge un-formatted HCL and Nomad jobspecs that later will make for dirty git staging areas when developers pull master. This changeset adds HCL linting to the `make check` target.
19 lines
302 B
HCL
19 lines
302 B
HCL
job "connect-proxy-local-service" {
|
|
type = "service"
|
|
|
|
group "group" {
|
|
service {
|
|
name = "example"
|
|
|
|
connect {
|
|
sidecar_service {
|
|
proxy {
|
|
local_service_port = 9876
|
|
local_service_address = "10.0.1.2"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|