0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

GrafanaでAzureAD認証を使用する

Last updated at Posted at 2023-02-28

まだメモ書きです

  1. Azure ADアプリケーションの作成
    Azure PortalでAzure ADアプリケーションを作成します。作成時に、アプリケーションのタイプとして「Webアプリケーションとして登録する」を選択し、リダイレクトURIとしてGrafanaのログインページのURIを指定します。

  2. Grafanaの設定ファイルを変更する
    Grafanaの設定ファイル(grafana.ini)を編集し、以下のように設定を追加します。

[auth.azuread]
# name = Azure AD
enabled = true
# allow_sign_up = true
client_id = YOUR_CLIENT_ID
client_secret = YOUR_CLIENT_SECRET
scopes = openid email profile
auth_url = https://login.microsoftonline.com/YOUR_TENANT_ID/oauth2/authorize
token_url = https://login.microsoftonline.com/YOUR_TENANT_ID/oauth2/token
# api_url = https://graph.microsoft.com/v1.0
allowed_domains = yourdomain.com

client_idおよびclient_secretには、先ほど作成したAzure ADアプリケーションのクライアントIDとシークレットを指定します。auth_urlおよびtoken_urlには、Azure ADのOAuth2エンドポイントを指定します。allowed_domainsには、ログインを許可するドメインを指定します。

  1. Grafanaを再起動する
    設定ファイルを変更した後は、Grafanaを再起動します。

  2. Azure ADでの認証を有効にする
    最後に、GrafanaのWebインターフェースでAzure AD認証を有効にします。[サーバー]→[認証/承認]→[Azure AD]を選択し、Azure AD認証を有効にします。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?