0
0

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.

Azure AD の「外部ユーザーの招待」を Azure CLI でやってみた

Posted at

Azure ポータルで Azure AD の「外部ユーザーの招待」をする事があると思います。数人ならそんなに苦ではないのですが、片手を超えてくると流石に CLI でやりたくなってきます。また、招待メールが届いて承諾した後 account.activedirectory.windowsazure.com に飛ばされてしまい、Azure AD に招待したのにユーザーエクスペリエンスがイケていません。そこで、Azure CLI を使って「外部ユーザーの招待」を行う際に、承諾後のリダイレクト先に Azure ポータル指定してゲストユーザーを作成してみました。

外部ユーザーの招待を Azure CLI で実行

bash
tenant=examplejp.onmicrosoft.com
guest=user@example.jp

az rest \
  --method post \
  --url "https://graph.microsoft.com/v1.0/invitations" \
  --body '{
    "invitedUserEmailAddress": "'$guest'",
    "inviteRedirectUrl": "https://portal.azure.com/'$tenant'",
    "sendInvitationMessage": true
  }'

参考

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?