Temporal web UI extension for restart , reply tctl commands

To allow or deny a user to perform a certain operation, such as terminating a workflow, you will need to:

  • configure users permissions in your auth provider. Typically you would give permissions to users for example read:my-namespace if you want them to have read access but not perform Terminate and other “write” operations (you can have your own pattern for the permission naming).

  • secure Temporal server endpoints

  • once the Web UI’s oidc is configured (oidc is enabled, client_id and other oidc params are passed) and a user is authenticated, Web UI will start passing the JWT token with each request to your Temporal server. Here is when the claim mapper and authorizer plugins will process the JWT token and make a decision

As for Active Directory and OIDC, i haven’t personally tried using it with Temporal Web UI, though have seen few docs Issue in Enabling SSO for Web - #10 by Ruslan

Let me know if this answers some of your questions and helps to understand how the OIDC integration works