Provide documentation on authentication #101
-
We currently use Durable Functions Monitor in read-only mode but would like to integrate authentication. However, it's not 100% how it works and how to configure it. What are the options? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Info on how to protect your standalone DfMon endpoint is documented here. See the section on how to deploy it as a separate Function App instance. Additionally please see this Config Setting Reference. Programmatic config options that are available to your code in 'injected' mode are described here. These options mostly map the app config settings, so normally you go either one way or another. In short, in 'injected' mode DfMon endpoint inherits authentication settings of your app, whatever those settings are. You can then adjust DfMon's authZ behavior with DfMon-specific settings like Does it explain that enough, or you still fell like something is missing in the above-mentioned docs? |
Beta Was this translation helpful? Give feedback.
Info on how to protect your standalone DfMon endpoint is documented here. See the section on how to deploy it as a separate Function App instance. Additionally please see this Config Setting Reference.
Programmatic config options that are available to your code in 'injected' mode are described here. These options mostly map the app config settings, so normally you go either one way or another.
In short, in 'injected' mode DfMon endpoint inherits authentication settings of your app, whatever those settings are. You can then adjust DfMon's authZ behavior with DfMon-specific settings like
DFM_ALLOWED_USER_NAMES
, but there's no way for you to override main application's authN settings.Does i…