Skip to content

Commit

Permalink
In the readme docs AUTH0_EXCLUDED_CLIENTS should be the Application n…
Browse files Browse the repository at this point in the history
…ame and not Client ID
  • Loading branch information
kushalshit27 committed Aug 13, 2024
1 parent 6381ce6 commit 9ba2d83
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/excluding-from-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,15 @@ The following example dictates to _only_ manage `actions`, `clients` and `connec

## Excluding single resources by ID

Some resource types support exclusions of individual resource by ID. This is primarily useful if you work in a multi-environment context and wish to omit a production single, specific resource from your lower-level environments. The by-ID method of exclusion is supported for rules, clients, databases, connections and resource servers with the `AUTH0_EXCLUDED_RULES` ,`AUTH0_EXCLUDED_CLIENTS`, `AUTH0_EXCLUDED_DATABASES`, `AUTH0_EXCLUDED_CONNECTIONS`, `AUTH0_EXCLUDED_RESOURCE_SERVERS` configuration values respectively.
Some resource types support exclusions of individual resource by ID. This is primarily useful if you work in a multi-environment context and wish to omit a production single, specific resource from your lower-level environments.
- The by-ID method of exclusion is supported for rules, databases, connections and resource servers with the `AUTH0_EXCLUDED_RULES`, `AUTH0_EXCLUDED_DATABASES`, `AUTH0_EXCLUDED_CONNECTIONS`, `AUTH0_EXCLUDED_RESOURCE_SERVERS` configuration values respectively.
- The by-name method of exclusion is supported for clients with the `AUTH0_EXCLUDED_CLIENTS` configuration values.

```json
{
"AUTH0_DOMAIN": "example-site.us.auth0.com",
"AUTH0_CLIENT_ID": "<YOUR_AUTH0_CLIENT_ID>",
"AUTH0_EXCLUDED_CLIENTS": ["PdmQpGy72sHksV6ueVNZVrV4GDlDDm76"],
"AUTH0_EXCLUDED_CLIENTS": ["Your Application Name"],
"AUTH0_EXCLUDED_CONNECTIONS": ["con_O1H3KyRMFP1IWRq3", "con_9avEYuj19ihqKBOs"]
}
```
Expand Down

0 comments on commit 9ba2d83

Please sign in to comment.