Hi all
I have registered the following service in my Consul cluster:
{
"Name": "AlarmManager",
"Tags": ["alarmmanager"],
"Address": "IP",
"Port": PORT,
"check": {
"name": "Check Alarm Manager",
"http": "http://IP:PORT",
"method": "GET",
"interval": "60s",
"timeout": "5s"
},
"Weights": {
"Passing": 10,
"Warning": 1
}
}
Using consul API:
curl --header "X-Consul-Token: ${CONSUL_HTTP_TOKEN}" --request PUT --data @alarmmanager.json http://127.0.0.1:8500/v1/agent/service/register?replace-existing-checks=true
After setting the following ACL:
service "AlarmManager" {
policy = "read"
}
After creating a token with only that policy attached, an API call using that token is able to list this service:
curl --header "X-Consul-Token: TOKEN" http://127.0.0.1:8500/v1/catalog/services
{"AlarmManager":["alarmmanager"]}
But there is no info when calling directly to service:
curl --header "X-Consul-Token: TOKEN" http://127.0.0.1:8500/v1/catalog/servic/AlarmManager
[]
Service Check is passing green and performing the same call with Consul Master Token retrieves Service info.
Could you please tell me what I am doing wrong?
Thank you,