According to the docs this is valid in the group stanza
group "somegroup" {
network {
port "whatever" {
static = 5555
}
}
task "sometask" {
service {
name = "somename"
port "whatever" {}
}
}
}
Yet when I try and run the job I get
* 'port' expected type 'string', got unconvertible type '[]map[string]interface {}'
What is wrong with this configuration?