We are running Consul, Vault and Nomad all on a system using systemd.
There are all integrated fine and working, however we have a single service within nomad that is using the docker driver that is attempting to use Vault as a service using consul connect.
We have added the envoy proxy to the host for vault to expose it to the consul catalog, and it’s appearing on their. The health checks pass but no matter what we do we can’t use it as an upstream to connect to it. We keep getting connection closed by peer in downstream services trying to use it.
I did try look at the envoy admin config and found this, which seems to me that it’s being blocked but I can’t work out how/why this is appearing there.
{
"name": "envoy.filters.network.rbac",
"typed_config": {
"@type": "type.googleapis.com/envoy.extensions.filters.network.rbac.v3.RBAC",
"rules": {
"action": "DENY"
},
"stat_prefix": "connect_authz"
}
},