Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README with new configuration options #381

Merged
merged 2 commits into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,20 @@ To use from .NET, install using `dotnet add package`:

The following configuration points are available:

- `auth0:domain` - (Required) Your Auth0 domain name. It can also be sourced from the `AUTH0_DOMAIN` environment variable.
- `auth0:client_id` - (Required) Your Auth0 client ID. It can also be sourced from the `AUTH0_CLIENT_ID` environment variable.
- `auth0:client_secret` - (Required) Your Auth0 client secret. It can also be sourced from the `AUTH0_CLIENT_SECRET` environment variable.
- `auth0:debug` - (Optional) Indicates whether or not to turn on debug mode.
- `auth0:apiToken` - (Optional) Your Auth0 [management api access
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Passing in the auth0:apiToken looks like it will satisfy my needs.

token](https://auth0.com/docs/security/tokens/access-tokens/management-api-access-tokens). It can also be
sourced from the `AUTH0_API_TOKEN` environment variable. It can be used instead of `auth0:clientId` +
`auth0:clientSecret`. If both are specified, `auth0:apiToken` will be used over `auth0:clientId` +
`auth0:clientSecret` fields.
- `auth0:audience` - (Optional) Your Auth0 audience when using a custom domain. It can also be sourced from
the `AUTH0_AUDIENCE` environment variable.
- `auth0:clientId` - (Optional) Your Auth0 client ID. It can also be sourced from the `AUTH0_CLIENT_ID`
environment variable.
- `auth0:clientSecret` - (Optional) Your Auth0 client secret. It can also be sourced from the
`AUTH0_CLIENT_SECRET` environment variable.
- `auth0:debug` - (Optional) Indicates whether to turn on debug mode.
- `auth0:domain` - (Required) Your Auth0 domain name. It can also be sourced from the
`AUTH0_DOMAIN` environment variable.

## Reference

Expand Down
18 changes: 14 additions & 4 deletions sdk/python/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading