airbyte.SourceAuth0
Explore with Pulumi AI
SourceAuth0 Resource
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.airbyte.SourceAuth0;
import com.pulumi.airbyte.SourceAuth0Args;
import com.pulumi.airbyte.inputs.SourceAuth0ConfigurationArgs;
import com.pulumi.airbyte.inputs.SourceAuth0ConfigurationCredentialsArgs;
import com.pulumi.airbyte.inputs.SourceAuth0ConfigurationCredentialsOAuth2AccessTokenArgs;
import com.pulumi.airbyte.inputs.SourceAuth0ConfigurationCredentialsOAuth2ConfidentialApplicationArgs;
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) {
var mySourceAuth0 = new SourceAuth0("mySourceAuth0", SourceAuth0Args.builder()
.configuration(SourceAuth0ConfigurationArgs.builder()
.base_url("https://dev-yourOrg.us.auth0.com/")
.credentials(SourceAuth0ConfigurationCredentialsArgs.builder()
.oAuth2AccessToken(SourceAuth0ConfigurationCredentialsOAuth2AccessTokenArgs.builder()
.accessToken("...my_access_token...")
.build())
.oAuth2ConfidentialApplication(SourceAuth0ConfigurationCredentialsOAuth2ConfidentialApplicationArgs.builder()
.audience("https://dev-yourOrg.us.auth0.com/api/v2/")
.clientId("Client_ID")
.clientSecret("Client_Secret")
.build())
.build())
.start_date("2023-08-05T00:43:59.244Z")
.build())
.definitionId("c81522f4-2b1b-4d41-9891-5186609bc62d")
.secretId("...my_secret_id...")
.workspaceId("0f188999-803b-497f-bcdb-fe3868611adc")
.build());
}
}
resources:
mySourceAuth0:
type: airbyte:SourceAuth0
properties:
configuration:
base_url: https://dev-yourOrg.us.auth0.com/
credentials:
oAuth2AccessToken:
accessToken: '...my_access_token...'
oAuth2ConfidentialApplication:
audience: https://dev-yourOrg.us.auth0.com/api/v2/
clientId: Client_ID
clientSecret: Client_Secret
start_date: 2023-08-05T00:43:59.244Z
definitionId: c81522f4-2b1b-4d41-9891-5186609bc62d
secretId: '...my_secret_id...'
workspaceId: 0f188999-803b-497f-bcdb-fe3868611adc
Create SourceAuth0 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceAuth0(name: string, args: SourceAuth0Args, opts?: CustomResourceOptions);
@overload
def SourceAuth0(resource_name: str,
args: SourceAuth0Args,
opts: Optional[ResourceOptions] = None)
@overload
def SourceAuth0(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceAuth0ConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None)
func NewSourceAuth0(ctx *Context, name string, args SourceAuth0Args, opts ...ResourceOption) (*SourceAuth0, error)
public SourceAuth0(string name, SourceAuth0Args args, CustomResourceOptions? opts = null)
public SourceAuth0(String name, SourceAuth0Args args)
public SourceAuth0(String name, SourceAuth0Args args, CustomResourceOptions options)
type: airbyte:SourceAuth0
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SourceAuth0Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SourceAuth0Args
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SourceAuth0Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceAuth0Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceAuth0Args
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var sourceAuth0Resource = new Airbyte.SourceAuth0("sourceAuth0Resource", new()
{
Configuration = new Airbyte.Inputs.SourceAuth0ConfigurationArgs
{
BaseUrl = "string",
Credentials = new Airbyte.Inputs.SourceAuth0ConfigurationCredentialsArgs
{
OAuth2AccessToken = new Airbyte.Inputs.SourceAuth0ConfigurationCredentialsOAuth2AccessTokenArgs
{
AccessToken = "string",
},
OAuth2ConfidentialApplication = new Airbyte.Inputs.SourceAuth0ConfigurationCredentialsOAuth2ConfidentialApplicationArgs
{
Audience = "string",
ClientId = "string",
ClientSecret = "string",
},
},
StartDate = "string",
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
SecretId = "string",
});
example, err := airbyte.NewSourceAuth0(ctx, "sourceAuth0Resource", &airbyte.SourceAuth0Args{
Configuration: &.SourceAuth0ConfigurationArgs{
BaseUrl: pulumi.String("string"),
Credentials: &.SourceAuth0ConfigurationCredentialsArgs{
OAuth2AccessToken: &.SourceAuth0ConfigurationCredentialsOAuth2AccessTokenArgs{
AccessToken: pulumi.String("string"),
},
OAuth2ConfidentialApplication: &.SourceAuth0ConfigurationCredentialsOAuth2ConfidentialApplicationArgs{
Audience: pulumi.String("string"),
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
},
},
StartDate: pulumi.String("string"),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
SecretId: pulumi.String("string"),
})
var sourceAuth0Resource = new SourceAuth0("sourceAuth0Resource", SourceAuth0Args.builder()
.configuration(SourceAuth0ConfigurationArgs.builder()
.baseUrl("string")
.credentials(SourceAuth0ConfigurationCredentialsArgs.builder()
.oAuth2AccessToken(SourceAuth0ConfigurationCredentialsOAuth2AccessTokenArgs.builder()
.accessToken("string")
.build())
.oAuth2ConfidentialApplication(SourceAuth0ConfigurationCredentialsOAuth2ConfidentialApplicationArgs.builder()
.audience("string")
.clientId("string")
.clientSecret("string")
.build())
.build())
.startDate("string")
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.secretId("string")
.build());
source_auth0_resource = airbyte.SourceAuth0("sourceAuth0Resource",
configuration={
"base_url": "string",
"credentials": {
"o_auth2_access_token": {
"access_token": "string",
},
"o_auth2_confidential_application": {
"audience": "string",
"client_id": "string",
"client_secret": "string",
},
},
"start_date": "string",
},
workspace_id="string",
definition_id="string",
name="string",
secret_id="string")
const sourceAuth0Resource = new airbyte.SourceAuth0("sourceAuth0Resource", {
configuration: {
baseUrl: "string",
credentials: {
oAuth2AccessToken: {
accessToken: "string",
},
oAuth2ConfidentialApplication: {
audience: "string",
clientId: "string",
clientSecret: "string",
},
},
startDate: "string",
},
workspaceId: "string",
definitionId: "string",
name: "string",
secretId: "string",
});
type: airbyte:SourceAuth0
properties:
configuration:
baseUrl: string
credentials:
oAuth2AccessToken:
accessToken: string
oAuth2ConfidentialApplication:
audience: string
clientId: string
clientSecret: string
startDate: string
definitionId: string
name: string
secretId: string
workspaceId: string
SourceAuth0 Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SourceAuth0 resource accepts the following input properties:
- Configuration
Source
Auth0Configuration - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Configuration
Source
Auth0Configuration Args - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Auth0Configuration - workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Auth0Configuration - workspace
Id string - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Auth0Configuration Args - workspace_
id str - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- secret_
id str - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration Property Map
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the SourceAuth0 resource produces the following output properties:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Source
Id string - Source
Type string
- Created
At float64 - Id string
- The provider-assigned unique ID for this managed resource.
- Source
Id string - Source
Type string
- created
At Double - id String
- The provider-assigned unique ID for this managed resource.
- source
Id String - source
Type String
- created
At number - id string
- The provider-assigned unique ID for this managed resource.
- source
Id string - source
Type string
- created_
at float - id str
- The provider-assigned unique ID for this managed resource.
- source_
id str - source_
type str
- created
At Number - id String
- The provider-assigned unique ID for this managed resource.
- source
Id String - source
Type String
Look up Existing SourceAuth0 Resource
Get an existing SourceAuth0 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SourceAuth0State, opts?: CustomResourceOptions): SourceAuth0
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceAuth0ConfigurationArgs] = None,
created_at: Optional[float] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None,
source_id: Optional[str] = None,
source_type: Optional[str] = None,
workspace_id: Optional[str] = None) -> SourceAuth0
func GetSourceAuth0(ctx *Context, name string, id IDInput, state *SourceAuth0State, opts ...ResourceOption) (*SourceAuth0, error)
public static SourceAuth0 Get(string name, Input<string> id, SourceAuth0State? state, CustomResourceOptions? opts = null)
public static SourceAuth0 get(String name, Output<String> id, SourceAuth0State state, CustomResourceOptions options)
resources: _: type: airbyte:SourceAuth0 get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Configuration
Source
Auth0Configuration - Created
At double - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- Configuration
Source
Auth0Configuration Args - Created
At float64 - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- configuration
Source
Auth0Configuration - created
At Double - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
- configuration
Source
Auth0Configuration - created
At number - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id string - source
Type string - workspace
Id string
- configuration
Source
Auth0Configuration Args - created_
at float - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- secret_
id str - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source_
id str - source_
type str - workspace_
id str
- configuration Property Map
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
Supporting Types
SourceAuth0Configuration, SourceAuth0ConfigurationArgs
- Base
Url string - The Authentication API is served over HTTPS. All URLs referenced in the documentation have the following base
https://YOUR_DOMAIN
- Credentials
Source
Auth0Configuration Credentials - Start
Date string - UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. Default: "2023-08-05T00:43:59.244Z"
- Base
Url string - The Authentication API is served over HTTPS. All URLs referenced in the documentation have the following base
https://YOUR_DOMAIN
- Credentials
Source
Auth0Configuration Credentials - Start
Date string - UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. Default: "2023-08-05T00:43:59.244Z"
- base
Url String - The Authentication API is served over HTTPS. All URLs referenced in the documentation have the following base
https://YOUR_DOMAIN
- credentials
Source
Auth0Configuration Credentials - start
Date String - UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. Default: "2023-08-05T00:43:59.244Z"
- base
Url string - The Authentication API is served over HTTPS. All URLs referenced in the documentation have the following base
https://YOUR_DOMAIN
- credentials
Source
Auth0Configuration Credentials - start
Date string - UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. Default: "2023-08-05T00:43:59.244Z"
- base_
url str - The Authentication API is served over HTTPS. All URLs referenced in the documentation have the following base
https://YOUR_DOMAIN
- credentials
Source
Auth0Configuration Credentials - start_
date str - UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. Default: "2023-08-05T00:43:59.244Z"
- base
Url String - The Authentication API is served over HTTPS. All URLs referenced in the documentation have the following base
https://YOUR_DOMAIN
- credentials Property Map
- start
Date String - UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. Default: "2023-08-05T00:43:59.244Z"
SourceAuth0ConfigurationCredentials, SourceAuth0ConfigurationCredentialsArgs
SourceAuth0ConfigurationCredentialsOAuth2AccessToken, SourceAuth0ConfigurationCredentialsOAuth2AccessTokenArgs
- Access
Token string - Also called \n\nAPI Access Token \n\n The access token used to call the Auth0 Management API Token. It's a JWT that contains specific grant permissions knowns as scopes.
- Access
Token string - Also called \n\nAPI Access Token \n\n The access token used to call the Auth0 Management API Token. It's a JWT that contains specific grant permissions knowns as scopes.
- access
Token String - Also called \n\nAPI Access Token \n\n The access token used to call the Auth0 Management API Token. It's a JWT that contains specific grant permissions knowns as scopes.
- access
Token string - Also called \n\nAPI Access Token \n\n The access token used to call the Auth0 Management API Token. It's a JWT that contains specific grant permissions knowns as scopes.
- access_
token str - Also called \n\nAPI Access Token \n\n The access token used to call the Auth0 Management API Token. It's a JWT that contains specific grant permissions knowns as scopes.
- access
Token String - Also called \n\nAPI Access Token \n\n The access token used to call the Auth0 Management API Token. It's a JWT that contains specific grant permissions knowns as scopes.
SourceAuth0ConfigurationCredentialsOAuth2ConfidentialApplication, SourceAuth0ConfigurationCredentialsOAuth2ConfidentialApplicationArgs
- Audience string
- The audience for the token, which is your API. You can find this in the Identifier field on your \n\nAPI's settings tab\n\n
- Client
Id string - Your application's Client ID. You can find this value on the \n\napplication's settings tab\n\n after you login the admin portal.
- Client
Secret string - Your application's Client Secret. You can find this value on the \n\napplication's settings tab\n\n after you login the admin portal.
- Audience string
- The audience for the token, which is your API. You can find this in the Identifier field on your \n\nAPI's settings tab\n\n
- Client
Id string - Your application's Client ID. You can find this value on the \n\napplication's settings tab\n\n after you login the admin portal.
- Client
Secret string - Your application's Client Secret. You can find this value on the \n\napplication's settings tab\n\n after you login the admin portal.
- audience String
- The audience for the token, which is your API. You can find this in the Identifier field on your \n\nAPI's settings tab\n\n
- client
Id String - Your application's Client ID. You can find this value on the \n\napplication's settings tab\n\n after you login the admin portal.
- client
Secret String - Your application's Client Secret. You can find this value on the \n\napplication's settings tab\n\n after you login the admin portal.
- audience string
- The audience for the token, which is your API. You can find this in the Identifier field on your \n\nAPI's settings tab\n\n
- client
Id string - Your application's Client ID. You can find this value on the \n\napplication's settings tab\n\n after you login the admin portal.
- client
Secret string - Your application's Client Secret. You can find this value on the \n\napplication's settings tab\n\n after you login the admin portal.
- audience str
- The audience for the token, which is your API. You can find this in the Identifier field on your \n\nAPI's settings tab\n\n
- client_
id str - Your application's Client ID. You can find this value on the \n\napplication's settings tab\n\n after you login the admin portal.
- client_
secret str - Your application's Client Secret. You can find this value on the \n\napplication's settings tab\n\n after you login the admin portal.
- audience String
- The audience for the token, which is your API. You can find this in the Identifier field on your \n\nAPI's settings tab\n\n
- client
Id String - Your application's Client ID. You can find this value on the \n\napplication's settings tab\n\n after you login the admin portal.
- client
Secret String - Your application's Client Secret. You can find this value on the \n\napplication's settings tab\n\n after you login the admin portal.
Import
$ pulumi import airbyte:index/sourceAuth0:SourceAuth0 my_airbyte_source_auth0 ""
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- airbyte airbytehq/terraform-provider-airbyte
- License
- Notes
- This Pulumi package is based on the
airbyte
Terraform Provider.