@pulumi/auth0 3.2.0-alpha.1702587608 → 3.2.0-alpha.1703039767
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,10 +46,20 @@ To use from .NET, install using `dotnet add package`:
|
|
|
46
46
|
|
|
47
47
|
The following configuration points are available:
|
|
48
48
|
|
|
49
|
-
- `auth0:
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
49
|
+
- `auth0:apiToken` - (Optional) Your Auth0 [management api access
|
|
50
|
+
token](https://auth0.com/docs/security/tokens/access-tokens/management-api-access-tokens). It can also be
|
|
51
|
+
sourced from the `AUTH0_API_TOKEN` environment variable. It can be used instead of `auth0:clientId` +
|
|
52
|
+
`auth0:clientSecret`. If both are specified, `auth0:apiToken` will be used over `auth0:clientId` +
|
|
53
|
+
`auth0:clientSecret` fields.
|
|
54
|
+
- `auth0:audience` - (Optional) Your Auth0 audience when using a custom domain. It can also be sourced from
|
|
55
|
+
the `AUTH0_AUDIENCE` environment variable.
|
|
56
|
+
- `auth0:clientId` - (Optional) Your Auth0 client ID. It can also be sourced from the `AUTH0_CLIENT_ID`
|
|
57
|
+
environment variable.
|
|
58
|
+
- `auth0:clientSecret` - (Optional) Your Auth0 client secret. It can also be sourced from the
|
|
59
|
+
`AUTH0_CLIENT_SECRET` environment variable.
|
|
60
|
+
- `auth0:debug` - (Optional) Indicates whether to turn on debug mode.
|
|
61
|
+
- `auth0:domain` - (Required) Your Auth0 domain name. It can also be sourced from the
|
|
62
|
+
`AUTH0_DOMAIN` environment variable.
|
|
53
63
|
|
|
54
64
|
## Reference
|
|
55
65
|
|
package/package.json
CHANGED