Skip to content

Commit

Permalink
Update README with new configuration options (#381)
Browse files Browse the repository at this point in the history
Configuration options are taken from schema.json

Fixes pulumi/templates#716
  • Loading branch information
iwahbe authored Dec 19, 2023
1 parent 5bafc80 commit 55db940
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 8 deletions.
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
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.

0 comments on commit 55db940

Please sign in to comment.