Viewing docs for Auth0 v2.24.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Viewing docs for Auth0 v2.24.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Data source to retrieve a specific Auth0 connection by connection_id or name.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Auth0 = Pulumi.Auth0;
return await Deployment.RunAsync(() =>
{
var some_connection_by_name = Auth0.GetConnection.Invoke(new()
{
Name = "Acceptance-Test-Connection-{{.testName}}",
});
var some_connection_by_id = Auth0.GetConnection.Invoke(new()
{
ConnectionId = "con_abcdefghkijklmnopqrstuvwxyz0123456789",
});
});
package main
import (
"github.com/pulumi/pulumi-auth0/sdk/v2/go/auth0"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := auth0.LookupConnection(ctx, &auth0.LookupConnectionArgs{
Name: pulumi.StringRef("Acceptance-Test-Connection-{{.testName}}"),
}, nil)
if err != nil {
return err
}
_, err = auth0.LookupConnection(ctx, &auth0.LookupConnectionArgs{
ConnectionId: pulumi.StringRef("con_abcdefghkijklmnopqrstuvwxyz0123456789"),
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.auth0.Auth0Functions;
import com.pulumi.auth0.inputs.GetConnectionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var some-connection-by-name = Auth0Functions.getConnection(GetConnectionArgs.builder()
.name("Acceptance-Test-Connection-{{.testName}}")
.build());
final var some-connection-by-id = Auth0Functions.getConnection(GetConnectionArgs.builder()
.connectionId("con_abcdefghkijklmnopqrstuvwxyz0123456789")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as auth0 from "@pulumi/auth0";
const some-connection-by-name = auth0.getConnection({
name: "Acceptance-Test-Connection-{{.testName}}",
});
const some-connection-by-id = auth0.getConnection({
connectionId: "con_abcdefghkijklmnopqrstuvwxyz0123456789",
});
import pulumi
import pulumi_auth0 as auth0
some_connection_by_name = auth0.get_connection(name="Acceptance-Test-Connection-{{.testName}}")
some_connection_by_id = auth0.get_connection(connection_id="con_abcdefghkijklmnopqrstuvwxyz0123456789")
variables:
some-connection-by-name:
fn::invoke:
Function: auth0:getConnection
Arguments:
name: Acceptance-Test-Connection-{{.testName}}
some-connection-by-id:
fn::invoke:
Function: auth0:getConnection
Arguments:
connectionId: con_abcdefghkijklmnopqrstuvwxyz0123456789
Using getConnection
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getConnection(args: GetConnectionArgs, opts?: InvokeOptions): Promise<GetConnectionResult>
function getConnectionOutput(args: GetConnectionOutputArgs, opts?: InvokeOptions): Output<GetConnectionResult>def get_connection(connection_id: Optional[str] = None,
name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetConnectionResult
def get_connection_output(connection_id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetConnectionResult]func LookupConnection(ctx *Context, args *LookupConnectionArgs, opts ...InvokeOption) (*LookupConnectionResult, error)
func LookupConnectionOutput(ctx *Context, args *LookupConnectionOutputArgs, opts ...InvokeOption) LookupConnectionResultOutput> Note: This function is named LookupConnection in the Go SDK.
public static class GetConnection
{
public static Task<GetConnectionResult> InvokeAsync(GetConnectionArgs args, InvokeOptions? opts = null)
public static Output<GetConnectionResult> Invoke(GetConnectionInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetConnectionResult> getConnection(GetConnectionArgs args, InvokeOptions options)
public static Output<GetConnectionResult> getConnection(GetConnectionArgs args, InvokeOptions options)
fn::invoke:
function: auth0:index/getConnection:getConnection
arguments:
# arguments dictionaryThe following arguments are supported:
- Connection
Id string - The ID of the connection. If not provided,
namemust be set. - Name string
- The name of the connection. If not provided,
connection_idmust be set.
- Connection
Id string - The ID of the connection. If not provided,
namemust be set. - Name string
- The name of the connection. If not provided,
connection_idmust be set.
- connection
Id String - The ID of the connection. If not provided,
namemust be set. - name String
- The name of the connection. If not provided,
connection_idmust be set.
- connection
Id string - The ID of the connection. If not provided,
namemust be set. - name string
- The name of the connection. If not provided,
connection_idmust be set.
- connection_
id str - The ID of the connection. If not provided,
namemust be set. - name str
- The name of the connection. If not provided,
connection_idmust be set.
- connection
Id String - The ID of the connection. If not provided,
namemust be set. - name String
- The name of the connection. If not provided,
connection_idmust be set.
getConnection Result
The following output properties are available:
- Display
Name string - Name used in login screen.
- Enabled
Clients List<string> - IDs of the clients for which the connection is enabled.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Domain boolConnection - Indicates whether the connection is domain level.
- Metadata Dictionary<string, string>
- Metadata associated with the connection, in the form of a map of string values (max 255 chars).
- Options
List<Get
Connection Option> - Configuration settings for connection options.
- Realms List<string>
- Defines the realms for which the connection will be used (e.g., email domains). If not specified, the connection name is added as the realm.
- bool
- Display connection as a button. Only available on enterprise connections.
- Strategy string
- Type of the connection, which indicates the identity provider.
- Connection
Id string - The ID of the connection. If not provided,
namemust be set. - Name string
- The name of the connection. If not provided,
connection_idmust be set.
- Display
Name string - Name used in login screen.
- Enabled
Clients []string - IDs of the clients for which the connection is enabled.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Domain boolConnection - Indicates whether the connection is domain level.
- Metadata map[string]string
- Metadata associated with the connection, in the form of a map of string values (max 255 chars).
- Options
[]Get
Connection Option - Configuration settings for connection options.
- Realms []string
- Defines the realms for which the connection will be used (e.g., email domains). If not specified, the connection name is added as the realm.
- bool
- Display connection as a button. Only available on enterprise connections.
- Strategy string
- Type of the connection, which indicates the identity provider.
- Connection
Id string - The ID of the connection. If not provided,
namemust be set. - Name string
- The name of the connection. If not provided,
connection_idmust be set.
- display
Name String - Name used in login screen.
- enabled
Clients List<String> - IDs of the clients for which the connection is enabled.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Domain BooleanConnection - Indicates whether the connection is domain level.
- metadata Map<String,String>
- Metadata associated with the connection, in the form of a map of string values (max 255 chars).
- options
List<Get
Connection Option> - Configuration settings for connection options.
- realms List<String>
- Defines the realms for which the connection will be used (e.g., email domains). If not specified, the connection name is added as the realm.
- Boolean
- Display connection as a button. Only available on enterprise connections.
- strategy String
- Type of the connection, which indicates the identity provider.
- connection
Id String - The ID of the connection. If not provided,
namemust be set. - name String
- The name of the connection. If not provided,
connection_idmust be set.
- display
Name string - Name used in login screen.
- enabled
Clients string[] - IDs of the clients for which the connection is enabled.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Domain booleanConnection - Indicates whether the connection is domain level.
- metadata {[key: string]: string}
- Metadata associated with the connection, in the form of a map of string values (max 255 chars).
- options
Get
Connection Option[] - Configuration settings for connection options.
- realms string[]
- Defines the realms for which the connection will be used (e.g., email domains). If not specified, the connection name is added as the realm.
- boolean
- Display connection as a button. Only available on enterprise connections.
- strategy string
- Type of the connection, which indicates the identity provider.
- connection
Id string - The ID of the connection. If not provided,
namemust be set. - name string
- The name of the connection. If not provided,
connection_idmust be set.
- display_
name str - Name used in login screen.
- enabled_
clients Sequence[str] - IDs of the clients for which the connection is enabled.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
domain_ boolconnection - Indicates whether the connection is domain level.
- metadata Mapping[str, str]
- Metadata associated with the connection, in the form of a map of string values (max 255 chars).
- options
Sequence[Get
Connection Option] - Configuration settings for connection options.
- realms Sequence[str]
- Defines the realms for which the connection will be used (e.g., email domains). If not specified, the connection name is added as the realm.
- bool
- Display connection as a button. Only available on enterprise connections.
- strategy str
- Type of the connection, which indicates the identity provider.
- connection_
id str - The ID of the connection. If not provided,
namemust be set. - name str
- The name of the connection. If not provided,
connection_idmust be set.
- display
Name String - Name used in login screen.
- enabled
Clients List<String> - IDs of the clients for which the connection is enabled.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Domain BooleanConnection - Indicates whether the connection is domain level.
- metadata Map<String>
- Metadata associated with the connection, in the form of a map of string values (max 255 chars).
- options List<Property Map>
- Configuration settings for connection options.
- realms List<String>
- Defines the realms for which the connection will be used (e.g., email domains). If not specified, the connection name is added as the realm.
- Boolean
- Display connection as a button. Only available on enterprise connections.
- strategy String
- Type of the connection, which indicates the identity provider.
- connection
Id String - The ID of the connection. If not provided,
namemust be set. - name String
- The name of the connection. If not provided,
connection_idmust be set.
Supporting Types
GetConnectionOption
- Adfs
Server string - Allowed
Audiences List<string> - Api
Enable boolUsers - App
Id string - Auth
Params Dictionary<string, string> - string
- Brute
Force boolProtection - Client
Id string - Client
Secret string - Community
Base stringUrl - Configuration Dictionary<string, object>
- Custom
Scripts Dictionary<string, string> - Debug bool
- Digest
Algorithm string - Disable
Cache bool - Disable
Self boolService Change Password - Disable
Sign boolOut - Disable
Signup bool - Discovery
Url string - Domain string
- Domain
Aliases List<string> - Enable
Script boolContext - Enabled
Database boolCustomization - Entity
Id string - Fed
Metadata stringXml - Fields
Map string - Forward
Request boolInfo - From string
- Gateway
Authentications List<GetConnection Option Gateway Authentication> - Gateway
Url string - Icon
Url string - Identity
Api string - Idp
Initiateds List<GetConnection Option Idp Initiated> - Import
Mode bool - Ips List<string>
- Issuer string
- Jwks
Uri string - Key
Id string - Max
Groups stringTo Retrieve - Messaging
Service stringSid - Metadata
Url string - Metadata
Xml string - Mfas
List<Get
Connection Option Mfa> - Name string
- The name of the connection. If not provided,
connection_idmust be set. - Non
Persistent List<string>Attrs - Password
Complexity List<GetOptions Connection Option Password Complexity Option> - Password
Dictionaries List<GetConnection Option Password Dictionary> - Password
Histories List<GetConnection Option Password History> - Password
No List<GetPersonal Infos Connection Option Password No Personal Info> - Password
Policy string - Ping
Federate stringBase Url - Pkce
Enabled bool - Protocol
Binding string - Provider string
- Request
Template string - Requires
Username bool - Scopes List<string>
- Scripts Dictionary<string, string>
- Set
User stringRoot Attributes - Should
Trust stringEmail Verified Connection - Sign
In stringEndpoint - Sign
Out stringEndpoint - Sign
Saml boolRequest - Signature
Algorithm string - Signing
Cert string - Signing
Keys List<GetConnection Option Signing Key> - Strategy
Version int - Subject string
- Syntax string
- Team
Id string - Template string
- Tenant
Domain string - Token
Endpoint string - Totps
List<Get
Connection Option Totp> - Twilio
Sid string - Twilio
Token string - Type string
- Upstream
Params string - Use
Cert boolAuth - Use
Kerberos bool - Use
Wsfed bool - User
Id stringAttribute - Userinfo
Endpoint string - Validations
List<Get
Connection Option Validation> - Waad
Common boolEndpoint - Waad
Protocol string
- Adfs
Server string - Allowed
Audiences []string - Api
Enable boolUsers - App
Id string - Auth
Params map[string]string - string
- Brute
Force boolProtection - Client
Id string - Client
Secret string - Community
Base stringUrl - Configuration map[string]interface{}
- Custom
Scripts map[string]string - Debug bool
- Digest
Algorithm string - Disable
Cache bool - Disable
Self boolService Change Password - Disable
Sign boolOut - Disable
Signup bool - Discovery
Url string - Domain string
- Domain
Aliases []string - Enable
Script boolContext - Enabled
Database boolCustomization - Entity
Id string - Fed
Metadata stringXml - Fields
Map string - Forward
Request boolInfo - From string
- Gateway
Authentications []GetConnection Option Gateway Authentication - Gateway
Url string - Icon
Url string - Identity
Api string - Idp
Initiateds []GetConnection Option Idp Initiated - Import
Mode bool - Ips []string
- Issuer string
- Jwks
Uri string - Key
Id string - Max
Groups stringTo Retrieve - Messaging
Service stringSid - Metadata
Url string - Metadata
Xml string - Mfas
[]Get
Connection Option Mfa - Name string
- The name of the connection. If not provided,
connection_idmust be set. - Non
Persistent []stringAttrs - Password
Complexity []GetOptions Connection Option Password Complexity Option - Password
Dictionaries []GetConnection Option Password Dictionary - Password
Histories []GetConnection Option Password History - Password
No []GetPersonal Infos Connection Option Password No Personal Info - Password
Policy string - Ping
Federate stringBase Url - Pkce
Enabled bool - Protocol
Binding string - Provider string
- Request
Template string - Requires
Username bool - Scopes []string
- Scripts map[string]string
- Set
User stringRoot Attributes - Should
Trust stringEmail Verified Connection - Sign
In stringEndpoint - Sign
Out stringEndpoint - Sign
Saml boolRequest - Signature
Algorithm string - Signing
Cert string - Signing
Keys []GetConnection Option Signing Key - Strategy
Version int - Subject string
- Syntax string
- Team
Id string - Template string
- Tenant
Domain string - Token
Endpoint string - Totps
[]Get
Connection Option Totp - Twilio
Sid string - Twilio
Token string - Type string
- Upstream
Params string - Use
Cert boolAuth - Use
Kerberos bool - Use
Wsfed bool - User
Id stringAttribute - Userinfo
Endpoint string - Validations
[]Get
Connection Option Validation - Waad
Common boolEndpoint - Waad
Protocol string
- adfs
Server String - allowed
Audiences List<String> - api
Enable BooleanUsers - app
Id String - auth
Params Map<String,String> - String
- brute
Force BooleanProtection - client
Id String - client
Secret String - community
Base StringUrl - configuration Map<String,Object>
- custom
Scripts Map<String,String> - debug Boolean
- digest
Algorithm String - disable
Cache Boolean - disable
Self BooleanService Change Password - disable
Sign BooleanOut - disable
Signup Boolean - discovery
Url String - domain String
- domain
Aliases List<String> - enable
Script BooleanContext - enabled
Database BooleanCustomization - entity
Id String - fed
Metadata StringXml - fields
Map String - forward
Request BooleanInfo - from String
- gateway
Authentications List<GetConnection Option Gateway Authentication> - gateway
Url String - icon
Url String - identity
Api String - idp
Initiateds List<GetConnection Option Idp Initiated> - import
Mode Boolean - ips List<String>
- issuer String
- jwks
Uri String - key
Id String - max
Groups StringTo Retrieve - messaging
Service StringSid - metadata
Url String - metadata
Xml String - mfas
List<Get
Connection Option Mfa> - name String
- The name of the connection. If not provided,
connection_idmust be set. - non
Persistent List<String>Attrs - password
Complexity List<GetOptions Connection Option Password Complexity Option> - password
Dictionaries List<GetConnection Option Password Dictionary> - password
Histories List<GetConnection Option Password History> - password
No List<GetPersonal Infos Connection Option Password No Personal Info> - password
Policy String - ping
Federate StringBase Url - pkce
Enabled Boolean - protocol
Binding String - provider String
- request
Template String - requires
Username Boolean - scopes List<String>
- scripts Map<String,String>
- set
User StringRoot Attributes - should
Trust StringEmail Verified Connection - sign
In StringEndpoint - sign
Out StringEndpoint - sign
Saml BooleanRequest - signature
Algorithm String - signing
Cert String - signing
Keys List<GetConnection Option Signing Key> - strategy
Version Integer - subject String
- syntax String
- team
Id String - template String
- tenant
Domain String - token
Endpoint String - totps
List<Get
Connection Option Totp> - twilio
Sid String - twilio
Token String - type String
- upstream
Params String - use
Cert BooleanAuth - use
Kerberos Boolean - use
Wsfed Boolean - user
Id StringAttribute - userinfo
Endpoint String - validations
List<Get
Connection Option Validation> - waad
Common BooleanEndpoint - waad
Protocol String
- adfs
Server string - allowed
Audiences string[] - api
Enable booleanUsers - app
Id string - auth
Params {[key: string]: string} - string
- brute
Force booleanProtection - client
Id string - client
Secret string - community
Base stringUrl - configuration {[key: string]: any}
- custom
Scripts {[key: string]: string} - debug boolean
- digest
Algorithm string - disable
Cache boolean - disable
Self booleanService Change Password - disable
Sign booleanOut - disable
Signup boolean - discovery
Url string - domain string
- domain
Aliases string[] - enable
Script booleanContext - enabled
Database booleanCustomization - entity
Id string - fed
Metadata stringXml - fields
Map string - forward
Request booleanInfo - from string
- gateway
Authentications GetConnection Option Gateway Authentication[] - gateway
Url string - icon
Url string - identity
Api string - idp
Initiateds GetConnection Option Idp Initiated[] - import
Mode boolean - ips string[]
- issuer string
- jwks
Uri string - key
Id string - max
Groups stringTo Retrieve - messaging
Service stringSid - metadata
Url string - metadata
Xml string - mfas
Get
Connection Option Mfa[] - name string
- The name of the connection. If not provided,
connection_idmust be set. - non
Persistent string[]Attrs - password
Complexity GetOptions Connection Option Password Complexity Option[] - password
Dictionaries GetConnection Option Password Dictionary[] - password
Histories GetConnection Option Password History[] - password
No GetPersonal Infos Connection Option Password No Personal Info[] - password
Policy string - ping
Federate stringBase Url - pkce
Enabled boolean - protocol
Binding string - provider string
- request
Template string - requires
Username boolean - scopes string[]
- scripts {[key: string]: string}
- set
User stringRoot Attributes - should
Trust stringEmail Verified Connection - sign
In stringEndpoint - sign
Out stringEndpoint - sign
Saml booleanRequest - signature
Algorithm string - signing
Cert string - signing
Keys GetConnection Option Signing Key[] - strategy
Version number - subject string
- syntax string
- team
Id string - template string
- tenant
Domain string - token
Endpoint string - totps
Get
Connection Option Totp[] - twilio
Sid string - twilio
Token string - type string
- upstream
Params string - use
Cert booleanAuth - use
Kerberos boolean - use
Wsfed boolean - user
Id stringAttribute - userinfo
Endpoint string - validations
Get
Connection Option Validation[] - waad
Common booleanEndpoint - waad
Protocol string
- adfs_
server str - allowed_
audiences Sequence[str] - api_
enable_ boolusers - app_
id str - auth_
params Mapping[str, str] - str
- brute_
force_ boolprotection - client_
id str - client_
secret str - community_
base_ strurl - configuration Mapping[str, Any]
- custom_
scripts Mapping[str, str] - debug bool
- digest_
algorithm str - disable_
cache bool - disable_
self_ boolservice_ change_ password - disable_
sign_ boolout - disable_
signup bool - discovery_
url str - domain str
- domain_
aliases Sequence[str] - enable_
script_ boolcontext - enabled_
database_ boolcustomization - entity_
id str - fed_
metadata_ strxml - fields_
map str - forward_
request_ boolinfo - from_ str
- gateway_
authentications Sequence[GetConnection Option Gateway Authentication] - gateway_
url str - icon_
url str - identity_
api str - idp_
initiateds Sequence[GetConnection Option Idp Initiated] - import_
mode bool - ips Sequence[str]
- issuer str
- jwks_
uri str - key_
id str - max_
groups_ strto_ retrieve - messaging_
service_ strsid - metadata_
url str - metadata_
xml str - mfas
Sequence[Get
Connection Option Mfa] - name str
- The name of the connection. If not provided,
connection_idmust be set. - non_
persistent_ Sequence[str]attrs - password_
complexity_ Sequence[Getoptions Connection Option Password Complexity Option] - password_
dictionaries Sequence[GetConnection Option Password Dictionary] - password_
histories Sequence[GetConnection Option Password History] - password_
no_ Sequence[Getpersonal_ infos Connection Option Password No Personal Info] - password_
policy str - ping_
federate_ strbase_ url - pkce_
enabled bool - protocol_
binding str - provider str
- request_
template str - requires_
username bool - scopes Sequence[str]
- scripts Mapping[str, str]
- set_
user_ strroot_ attributes - should_
trust_ stremail_ verified_ connection - sign_
in_ strendpoint - sign_
out_ strendpoint - sign_
saml_ boolrequest - signature_
algorithm str - signing_
cert str - signing_
keys Sequence[GetConnection Option Signing Key] - strategy_
version int - subject str
- syntax str
- team_
id str - template str
- tenant_
domain str - token_
endpoint str - totps
Sequence[Get
Connection Option Totp] - twilio_
sid str - twilio_
token str - type str
- upstream_
params str - use_
cert_ boolauth - use_
kerberos bool - use_
wsfed bool - user_
id_ strattribute - userinfo_
endpoint str - validations
Sequence[Get
Connection Option Validation] - waad_
common_ boolendpoint - waad_
protocol str
- adfs
Server String - allowed
Audiences List<String> - api
Enable BooleanUsers - app
Id String - auth
Params Map<String> - String
- brute
Force BooleanProtection - client
Id String - client
Secret String - community
Base StringUrl - configuration Map<Any>
- custom
Scripts Map<String> - debug Boolean
- digest
Algorithm String - disable
Cache Boolean - disable
Self BooleanService Change Password - disable
Sign BooleanOut - disable
Signup Boolean - discovery
Url String - domain String
- domain
Aliases List<String> - enable
Script BooleanContext - enabled
Database BooleanCustomization - entity
Id String - fed
Metadata StringXml - fields
Map String - forward
Request BooleanInfo - from String
- gateway
Authentications List<Property Map> - gateway
Url String - icon
Url String - identity
Api String - idp
Initiateds List<Property Map> - import
Mode Boolean - ips List<String>
- issuer String
- jwks
Uri String - key
Id String - max
Groups StringTo Retrieve - messaging
Service StringSid - metadata
Url String - metadata
Xml String - mfas List<Property Map>
- name String
- The name of the connection. If not provided,
connection_idmust be set. - non
Persistent List<String>Attrs - password
Complexity List<Property Map>Options - password
Dictionaries List<Property Map> - password
Histories List<Property Map> - password
No List<Property Map>Personal Infos - password
Policy String - ping
Federate StringBase Url - pkce
Enabled Boolean - protocol
Binding String - provider String
- request
Template String - requires
Username Boolean - scopes List<String>
- scripts Map<String>
- set
User StringRoot Attributes - should
Trust StringEmail Verified Connection - sign
In StringEndpoint - sign
Out StringEndpoint - sign
Saml BooleanRequest - signature
Algorithm String - signing
Cert String - signing
Keys List<Property Map> - strategy
Version Number - subject String
- syntax String
- team
Id String - template String
- tenant
Domain String - token
Endpoint String - totps List<Property Map>
- twilio
Sid String - twilio
Token String - type String
- upstream
Params String - use
Cert BooleanAuth - use
Kerberos Boolean - use
Wsfed Boolean - user
Id StringAttribute - userinfo
Endpoint String - validations List<Property Map>
- waad
Common BooleanEndpoint - waad
Protocol String
GetConnectionOptionGatewayAuthentication
- Audience string
- Method string
- Secret string
- Secret
Base64Encoded bool - Subject string
- Audience string
- Method string
- Secret string
- Secret
Base64Encoded bool - Subject string
- audience String
- method String
- secret String
- secret
Base64Encoded Boolean - subject String
- audience string
- method string
- secret string
- secret
Base64Encoded boolean - subject string
- audience str
- method str
- secret str
- secret_
base64_ boolencoded - subject str
- audience String
- method String
- secret String
- secret
Base64Encoded Boolean - subject String
GetConnectionOptionIdpInitiated
- string
- Client
Id string - Client
Protocol string
- string
- Client
Id string - Client
Protocol string
- String
- client
Id String - client
Protocol String
- string
- client
Id string - client
Protocol string
- str
- client_
id str - client_
protocol str
- String
- client
Id String - client
Protocol String
GetConnectionOptionMfa
- Active bool
- Return
Enroll boolSettings
- Active bool
- Return
Enroll boolSettings
- active Boolean
- return
Enroll BooleanSettings
- active boolean
- return
Enroll booleanSettings
- active bool
- return_
enroll_ boolsettings
- active Boolean
- return
Enroll BooleanSettings
GetConnectionOptionPasswordComplexityOption
- Min
Length int
- Min
Length int
- min
Length Integer
- min
Length number
- min_
length int
- min
Length Number
GetConnectionOptionPasswordDictionary
- Dictionaries List<string>
- Enable bool
- Dictionaries []string
- Enable bool
- dictionaries List<String>
- enable Boolean
- dictionaries string[]
- enable boolean
- dictionaries Sequence[str]
- enable bool
- dictionaries List<String>
- enable Boolean
GetConnectionOptionPasswordHistory
GetConnectionOptionPasswordNoPersonalInfo
- Enable bool
- Enable bool
- enable Boolean
- enable boolean
- enable bool
- enable Boolean
GetConnectionOptionSigningKey
GetConnectionOptionTotp
GetConnectionOptionValidation
GetConnectionOptionValidationUsername
Package Details
- Repository
- Auth0 pulumi/pulumi-auth0
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
auth0Terraform Provider.
Viewing docs for Auth0 v2.24.3 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
