Grafana
Use Hanzo IAM as the OAuth provider for Grafana sign-in.
Grafana supports generic OAuth. Use Hanzo IAM as the IdP so users sign in to Grafana with their Hanzo IAM accounts. Ensure Grafana is installed and running.
Step 1: Create a Hanzo IAM application for Grafana
Create an application in Hanzo IAM and add Grafana’s callback URL. Default Grafana OAuth callback path: /login/generic_oauth, so the full redirect URL is https://<grafana-host>/login/generic_oauth. Copy the Client ID and Client Secret.

Step 2: Configure Grafana
Edit the Grafana config (e.g. conf/defaults.ini or your custom config). Find or add [auth.generic_oauth] and set:
[auth.generic_oauth]
name = Hanzo IAM
icon = signin
enabled = true
allow_sign_up = true
client_id = <client ID from previous step>
client_secret = <client secret from previous step>
auth_url = <Hanzo IAM endpoint>/oauth/authorize
token_url = <Hanzo IAM endpoint>/oauth/token
### HTTPS
If Hanzo IAM or Grafana is not using HTTPS, set `tls_skip_verify_insecure = true`.
### Redirect after sign-in
If the post-login redirect is wrong, set [root_url](https://grafana.com/docs/grafana/latest/setup-grafana/configure-grafana/#root_url) in `[server]`:
```ini
[server]
http_port = 3000
# The public-facing domain name used to access Grafana from a browser
domain = <your IP here>
# The full public-facing URL
root_url = %(protocol)s://%(domain)s:%(http_port)s/
Related links:
1. [Grafana documentation](https://grafana.com/docs/grafana/latest/setup-grafana/configure-grafana/#root_url)
2. [Grafana defaults.ini](https://github.com/grafana/grafana/blob/main/conf/defaults.ini)
### About Role Mapping
You may want to configure `role_attribute_path` to map your user's role to Grafana via [role_attribute_path](https://grafana.com/docs/grafana/latest/setup-grafana/configure-security/configure-authentication/generic-oauth/#role-mapping).
```ini
[auth.generic_oauth]
role_attribute_path = contains(roles[*].name, 'admin') && 'Admin' || contains(roles[*].name, 'editor') && 'Editor' || 'Viewer'
role_attribute_strict = true
allow_assign_grafana_admin = true
The JMESPath expression after `role_attribute_path` is important; see the [Grafana docs](https://grafana.com/docs/).
## Step 3: See if it works
Shutdown Grafana and restart it.
Go to the login page. You should see something like this:
How is this guide?
Last updated on