Hey all,
This is my first foray into RabbitMq, coming from Azure Service Bus land. I'm setting RabbitMq (v 3.13.0) up on my windows laptop using the chocolaty install method. I am now trying to configure it for OAuth2 authentication with Auth0 as the Idp.
And I've ended up with a rabbitmq.conf file that looks like this :
log.console.level = debug
log.file.level = debug
auth_backends.1 = rabbit_auth_backend_oauth2
auth_oauth2.resource_server_id = rabbitmq
auth_oauth2.signing_keys.id1 = d:/Temp/public.pem
auth_oauth2.algorithms.1 = RS256
management.disable_basic_auth = true
management.oauth_enabled = true
management.oauth_client_id = <<redacted clientId from single page app>>
management.oauth_provider_url = https://<auth0tenant-redacted>.
au.auth0.commanagement.oauth_scopes = openid profile rabbitmq.*
But the management UI keeps coming up with this message :
I just can't see for the life of me what I've done wrong or am missing.