-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
3,753 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
--- | ||
page_title: "Data Source: auth0_clients" | ||
description: |- | ||
Data source to retrieve a list of Auth0 application clients with optional filtering. | ||
--- | ||
|
||
# Data Source: auth0_clients | ||
|
||
Data source to retrieve a list of Auth0 application clients with optional filtering. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
# Auth0 clients with "External" in the name | ||
data "auth0_clients" "external_apps" { | ||
name_filter = "External" | ||
} | ||
# Auth0 clients filtered by non_interactive or spa app type | ||
data "auth0_clients" "m2m_apps" { | ||
app_types = ["non_interactive", "spa"] | ||
} | ||
# Auth0 clients filtered by is_first_party equal to true | ||
data "auth0_clients" "first_party_apps" { | ||
is_first_party = true | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `app_types` (Set of String) Filter clients by application types. | ||
- `is_first_party` (Boolean) Filter clients by first party status. | ||
- `name_filter` (String) Filter clients by name (partial matches supported). | ||
|
||
### Read-Only | ||
|
||
- `clients` (List of Object) List of clients matching the filter criteria. (see [below for nested schema](#nestedatt--clients)) | ||
- `id` (String) The ID of this resource. | ||
|
||
<a id="nestedatt--clients"></a> | ||
### Nested Schema for `clients` | ||
|
||
Read-Only: | ||
|
||
- `allowed_clients` (List of String) | ||
- `allowed_logout_urls` (List of String) | ||
- `allowed_origins` (List of String) | ||
- `app_type` (String) | ||
- `callbacks` (List of String) | ||
- `client_id` (String) | ||
- `client_metadata` (Map of String) | ||
- `client_secret` (String) | ||
- `description` (String) | ||
- `grant_types` (List of String) | ||
- `is_first_party` (Boolean) | ||
- `is_token_endpoint_ip_header_trusted` (Boolean) | ||
- `name` (String) | ||
- `oidc_logout` (List of Object) (see [below for nested schema](#nestedobjatt--clients--oidc_logout)) | ||
- `web_origins` (List of String) | ||
|
||
<a id="nestedobjatt--clients--oidc_logout"></a> | ||
### Nested Schema for `clients.oidc_logout` | ||
|
||
Read-Only: | ||
|
||
- `backchannel_logout_initiators` (List of Object) (see [below for nested schema](#nestedobjatt--clients--oidc_logout--backchannel_logout_initiators)) | ||
- `backchannel_logout_urls` (Set of String) | ||
|
||
<a id="nestedobjatt--clients--oidc_logout--backchannel_logout_initiators"></a> | ||
### Nested Schema for `clients.oidc_logout.backchannel_logout_initiators` | ||
|
||
Read-Only: | ||
|
||
- `mode` (String) | ||
- `selected_initiators` (Set of String) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
page_title: "Resource: auth0_self_service_profile_custom_text" | ||
description: |- | ||
With this resource, you can set custom text for Self-Service Profile | ||
--- | ||
|
||
# Resource: auth0_self_service_profile_custom_text | ||
|
||
With this resource, you can set custom text for Self-Service Profile | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "auth0_self_service_profile_custom_text" "sso_custom_text" { | ||
sso_id = "some-sso-id" | ||
language = "en" | ||
page = "get-started" | ||
body = jsonencode( | ||
{ | ||
"introduction" : "Welcome! With only a few steps you'll be able to setup your new custom text." | ||
} | ||
) | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `body` (String) The list of text keys and values to customize the self-service SSO page. Values can be plain text or rich HTML content limited to basic styling tags and hyperlinks | ||
- `language` (String) The language of the custom text | ||
- `page` (String) The page where the custom text is shown | ||
- `sso_id` (String) The id of the self-service profile | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
# This resource can be imported by specifying the | ||
# sso-profile-id, language and page separated by "::" (note the double colon) | ||
# <sso-profile-id>::<language>::<page> | ||
# | ||
# Example | ||
terraform import auth0_self_service_profile_custom_text.example "some-sso-id::en::get-started" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Auth0 clients with "External" in the name | ||
data "auth0_clients" "external_apps" { | ||
name_filter = "External" | ||
} | ||
|
||
# Auth0 clients filtered by non_interactive or spa app type | ||
data "auth0_clients" "m2m_apps" { | ||
app_types = ["non_interactive", "spa"] | ||
} | ||
|
||
# Auth0 clients filtered by is_first_party equal to true | ||
data "auth0_clients" "first_party_apps" { | ||
is_first_party = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# This resource can be imported by specifying the | ||
# organization ID and client grant ID separated by "::" (note the double colon) | ||
# <organizationID>::<clientGrantID> | ||
# | ||
# Example: | ||
terraform import auth0_organization_client_grant.my_org_client_grant "org_XXXXX::cgr_XXXXX" |
Oops, something went wrong.