1. Packages
  2. Auth0
  3. API Docs
  4. LogStream
Auth0 v3.3.1 published on Thursday, Mar 14, 2024 by Pulumi

auth0.LogStream

Explore with Pulumi AI

auth0 logo
Auth0 v3.3.1 published on Thursday, Mar 14, 2024 by Pulumi

    With this resource, you can manage your Auth0 log streams.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as auth0 from "@pulumi/auth0";
    
    // This is an example of an http log stream.
    const myWebhook = new auth0.LogStream("myWebhook", {
        filters: [
            {
                name: "auth.login.fail",
                type: "category",
            },
            {
                name: "auth.signup.fail",
                type: "category",
            },
        ],
        sink: {
            httpAuthorization: "AKIAXXXXXXXXXXXXXXXX",
            httpContentFormat: "JSONOBJECT",
            httpContentType: "application/json",
            httpCustomHeaders: [{
                header: "foo",
                value: "bar",
            }],
            httpEndpoint: "https://example.com/logs",
        },
        type: "http",
    });
    // This is an example of an Amazon EventBridge log stream.
    const exampleAws = new auth0.LogStream("exampleAws", {
        sink: {
            awsAccountId: "my_account_id",
            awsRegion: "us-east-2",
        },
        status: "active",
        type: "eventbridge",
    });
    
    import pulumi
    import pulumi_auth0 as auth0
    
    # This is an example of an http log stream.
    my_webhook = auth0.LogStream("myWebhook",
        filters=[
            {
                "name": "auth.login.fail",
                "type": "category",
            },
            {
                "name": "auth.signup.fail",
                "type": "category",
            },
        ],
        sink=auth0.LogStreamSinkArgs(
            http_authorization="AKIAXXXXXXXXXXXXXXXX",
            http_content_format="JSONOBJECT",
            http_content_type="application/json",
            http_custom_headers=[{
                "header": "foo",
                "value": "bar",
            }],
            http_endpoint="https://example.com/logs",
        ),
        type="http")
    # This is an example of an Amazon EventBridge log stream.
    example_aws = auth0.LogStream("exampleAws",
        sink=auth0.LogStreamSinkArgs(
            aws_account_id="my_account_id",
            aws_region="us-east-2",
        ),
        status="active",
        type="eventbridge")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-auth0/sdk/v3/go/auth0"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// This is an example of an http log stream.
    		_, err := auth0.NewLogStream(ctx, "myWebhook", &auth0.LogStreamArgs{
    			Filters: pulumi.StringMapArray{
    				pulumi.StringMap{
    					"name": pulumi.String("auth.login.fail"),
    					"type": pulumi.String("category"),
    				},
    				pulumi.StringMap{
    					"name": pulumi.String("auth.signup.fail"),
    					"type": pulumi.String("category"),
    				},
    			},
    			Sink: &auth0.LogStreamSinkArgs{
    				HttpAuthorization: pulumi.String("AKIAXXXXXXXXXXXXXXXX"),
    				HttpContentFormat: pulumi.String("JSONOBJECT"),
    				HttpContentType:   pulumi.String("application/json"),
    				HttpCustomHeaders: pulumi.StringMapArray{
    					pulumi.StringMap{
    						"header": pulumi.String("foo"),
    						"value":  pulumi.String("bar"),
    					},
    				},
    				HttpEndpoint: pulumi.String("https://example.com/logs"),
    			},
    			Type: pulumi.String("http"),
    		})
    		if err != nil {
    			return err
    		}
    		// This is an example of an Amazon EventBridge log stream.
    		_, err = auth0.NewLogStream(ctx, "exampleAws", &auth0.LogStreamArgs{
    			Sink: &auth0.LogStreamSinkArgs{
    				AwsAccountId: pulumi.String("my_account_id"),
    				AwsRegion:    pulumi.String("us-east-2"),
    			},
    			Status: pulumi.String("active"),
    			Type:   pulumi.String("eventbridge"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Auth0 = Pulumi.Auth0;
    
    return await Deployment.RunAsync(() => 
    {
        // This is an example of an http log stream.
        var myWebhook = new Auth0.LogStream("myWebhook", new()
        {
            Filters = new[]
            {
                
                {
                    { "name", "auth.login.fail" },
                    { "type", "category" },
                },
                
                {
                    { "name", "auth.signup.fail" },
                    { "type", "category" },
                },
            },
            Sink = new Auth0.Inputs.LogStreamSinkArgs
            {
                HttpAuthorization = "AKIAXXXXXXXXXXXXXXXX",
                HttpContentFormat = "JSONOBJECT",
                HttpContentType = "application/json",
                HttpCustomHeaders = new[]
                {
                    
                    {
                        { "header", "foo" },
                        { "value", "bar" },
                    },
                },
                HttpEndpoint = "https://example.com/logs",
            },
            Type = "http",
        });
    
        // This is an example of an Amazon EventBridge log stream.
        var exampleAws = new Auth0.LogStream("exampleAws", new()
        {
            Sink = new Auth0.Inputs.LogStreamSinkArgs
            {
                AwsAccountId = "my_account_id",
                AwsRegion = "us-east-2",
            },
            Status = "active",
            Type = "eventbridge",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.auth0.LogStream;
    import com.pulumi.auth0.LogStreamArgs;
    import com.pulumi.auth0.inputs.LogStreamSinkArgs;
    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 myWebhook = new LogStream("myWebhook", LogStreamArgs.builder()        
                .filters(            
                    Map.ofEntries(
                        Map.entry("name", "auth.login.fail"),
                        Map.entry("type", "category")
                    ),
                    Map.ofEntries(
                        Map.entry("name", "auth.signup.fail"),
                        Map.entry("type", "category")
                    ))
                .sink(LogStreamSinkArgs.builder()
                    .httpAuthorization("AKIAXXXXXXXXXXXXXXXX")
                    .httpContentFormat("JSONOBJECT")
                    .httpContentType("application/json")
                    .httpCustomHeaders(Map.ofEntries(
                        Map.entry("header", "foo"),
                        Map.entry("value", "bar")
                    ))
                    .httpEndpoint("https://example.com/logs")
                    .build())
                .type("http")
                .build());
    
            var exampleAws = new LogStream("exampleAws", LogStreamArgs.builder()        
                .sink(LogStreamSinkArgs.builder()
                    .awsAccountId("my_account_id")
                    .awsRegion("us-east-2")
                    .build())
                .status("active")
                .type("eventbridge")
                .build());
    
        }
    }
    
    resources:
      # This is an example of an http log stream.
      myWebhook:
        type: auth0:LogStream
        properties:
          filters:
            - name: auth.login.fail
              type: category
            - name: auth.signup.fail
              type: category
          sink:
            httpAuthorization: AKIAXXXXXXXXXXXXXXXX
            httpContentFormat: JSONOBJECT
            httpContentType: application/json
            httpCustomHeaders:
              - header: foo
                value: bar
            httpEndpoint: https://example.com/logs
          type: http
      # This is an example of an Amazon EventBridge log stream.
      exampleAws:
        type: auth0:LogStream
        properties:
          sink:
            awsAccountId: my_account_id
            awsRegion: us-east-2
          status: active
          type: eventbridge
    

    Create LogStream Resource

    new LogStream(name: string, args: LogStreamArgs, opts?: CustomResourceOptions);
    @overload
    def LogStream(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  filters: Optional[Sequence[Mapping[str, str]]] = None,
                  name: Optional[str] = None,
                  sink: Optional[LogStreamSinkArgs] = None,
                  status: Optional[str] = None,
                  type: Optional[str] = None)
    @overload
    def LogStream(resource_name: str,
                  args: LogStreamArgs,
                  opts: Optional[ResourceOptions] = None)
    func NewLogStream(ctx *Context, name string, args LogStreamArgs, opts ...ResourceOption) (*LogStream, error)
    public LogStream(string name, LogStreamArgs args, CustomResourceOptions? opts = null)
    public LogStream(String name, LogStreamArgs args)
    public LogStream(String name, LogStreamArgs args, CustomResourceOptions options)
    
    type: auth0:LogStream
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args LogStreamArgs
    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 LogStreamArgs
    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 LogStreamArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LogStreamArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LogStreamArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    LogStream Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The LogStream resource accepts the following input properties:

    Sink LogStreamSink
    The sink configuration for the log stream.
    Type string
    Type of the log stream, which indicates the sink provider. Options include: eventbridge, eventgrid, http, datadog, splunk, sumo, mixpanel, segment.
    Filters List<ImmutableDictionary<string, string>>
    Only logs events matching these filters will be delivered by the stream. If omitted or empty, all events will be delivered. Filters available: auth.ancillary.fail, auth.ancillary.success, auth.login.fail, auth.login.notification, auth.login.success, auth.logout.fail, auth.logout.success, auth.signup.fail, auth.signup.success, auth.silent_auth.fail, auth.silent_auth.success, auth.token_exchange.fail, auth.token_exchange.success, management.fail, management.success, system.notification, user.fail, user.notification, user.success, other.
    Name string
    Name of the log stream.
    Status string
    The current status of the log stream. Options are "active", "paused", "suspended".
    Sink LogStreamSinkArgs
    The sink configuration for the log stream.
    Type string
    Type of the log stream, which indicates the sink provider. Options include: eventbridge, eventgrid, http, datadog, splunk, sumo, mixpanel, segment.
    Filters []map[string]string
    Only logs events matching these filters will be delivered by the stream. If omitted or empty, all events will be delivered. Filters available: auth.ancillary.fail, auth.ancillary.success, auth.login.fail, auth.login.notification, auth.login.success, auth.logout.fail, auth.logout.success, auth.signup.fail, auth.signup.success, auth.silent_auth.fail, auth.silent_auth.success, auth.token_exchange.fail, auth.token_exchange.success, management.fail, management.success, system.notification, user.fail, user.notification, user.success, other.
    Name string
    Name of the log stream.
    Status string
    The current status of the log stream. Options are "active", "paused", "suspended".
    sink LogStreamSink
    The sink configuration for the log stream.
    type String
    Type of the log stream, which indicates the sink provider. Options include: eventbridge, eventgrid, http, datadog, splunk, sumo, mixpanel, segment.
    filters List<Map<String,String>>
    Only logs events matching these filters will be delivered by the stream. If omitted or empty, all events will be delivered. Filters available: auth.ancillary.fail, auth.ancillary.success, auth.login.fail, auth.login.notification, auth.login.success, auth.logout.fail, auth.logout.success, auth.signup.fail, auth.signup.success, auth.silent_auth.fail, auth.silent_auth.success, auth.token_exchange.fail, auth.token_exchange.success, management.fail, management.success, system.notification, user.fail, user.notification, user.success, other.
    name String
    Name of the log stream.
    status String
    The current status of the log stream. Options are "active", "paused", "suspended".
    sink LogStreamSink
    The sink configuration for the log stream.
    type string
    Type of the log stream, which indicates the sink provider. Options include: eventbridge, eventgrid, http, datadog, splunk, sumo, mixpanel, segment.
    filters {[key: string]: string}[]
    Only logs events matching these filters will be delivered by the stream. If omitted or empty, all events will be delivered. Filters available: auth.ancillary.fail, auth.ancillary.success, auth.login.fail, auth.login.notification, auth.login.success, auth.logout.fail, auth.logout.success, auth.signup.fail, auth.signup.success, auth.silent_auth.fail, auth.silent_auth.success, auth.token_exchange.fail, auth.token_exchange.success, management.fail, management.success, system.notification, user.fail, user.notification, user.success, other.
    name string
    Name of the log stream.
    status string
    The current status of the log stream. Options are "active", "paused", "suspended".
    sink LogStreamSinkArgs
    The sink configuration for the log stream.
    type str
    Type of the log stream, which indicates the sink provider. Options include: eventbridge, eventgrid, http, datadog, splunk, sumo, mixpanel, segment.
    filters Sequence[Mapping[str, str]]
    Only logs events matching these filters will be delivered by the stream. If omitted or empty, all events will be delivered. Filters available: auth.ancillary.fail, auth.ancillary.success, auth.login.fail, auth.login.notification, auth.login.success, auth.logout.fail, auth.logout.success, auth.signup.fail, auth.signup.success, auth.silent_auth.fail, auth.silent_auth.success, auth.token_exchange.fail, auth.token_exchange.success, management.fail, management.success, system.notification, user.fail, user.notification, user.success, other.
    name str
    Name of the log stream.
    status str
    The current status of the log stream. Options are "active", "paused", "suspended".
    sink Property Map
    The sink configuration for the log stream.
    type String
    Type of the log stream, which indicates the sink provider. Options include: eventbridge, eventgrid, http, datadog, splunk, sumo, mixpanel, segment.
    filters List<Map<String>>
    Only logs events matching these filters will be delivered by the stream. If omitted or empty, all events will be delivered. Filters available: auth.ancillary.fail, auth.ancillary.success, auth.login.fail, auth.login.notification, auth.login.success, auth.logout.fail, auth.logout.success, auth.signup.fail, auth.signup.success, auth.silent_auth.fail, auth.silent_auth.success, auth.token_exchange.fail, auth.token_exchange.success, management.fail, management.success, system.notification, user.fail, user.notification, user.success, other.
    name String
    Name of the log stream.
    status String
    The current status of the log stream. Options are "active", "paused", "suspended".

    Outputs

    All input properties are implicitly available as output properties. Additionally, the LogStream resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing LogStream Resource

    Get an existing LogStream 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?: LogStreamState, opts?: CustomResourceOptions): LogStream
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            filters: Optional[Sequence[Mapping[str, str]]] = None,
            name: Optional[str] = None,
            sink: Optional[LogStreamSinkArgs] = None,
            status: Optional[str] = None,
            type: Optional[str] = None) -> LogStream
    func GetLogStream(ctx *Context, name string, id IDInput, state *LogStreamState, opts ...ResourceOption) (*LogStream, error)
    public static LogStream Get(string name, Input<string> id, LogStreamState? state, CustomResourceOptions? opts = null)
    public static LogStream get(String name, Output<String> id, LogStreamState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    Filters List<ImmutableDictionary<string, string>>
    Only logs events matching these filters will be delivered by the stream. If omitted or empty, all events will be delivered. Filters available: auth.ancillary.fail, auth.ancillary.success, auth.login.fail, auth.login.notification, auth.login.success, auth.logout.fail, auth.logout.success, auth.signup.fail, auth.signup.success, auth.silent_auth.fail, auth.silent_auth.success, auth.token_exchange.fail, auth.token_exchange.success, management.fail, management.success, system.notification, user.fail, user.notification, user.success, other.
    Name string
    Name of the log stream.
    Sink LogStreamSink
    The sink configuration for the log stream.
    Status string
    The current status of the log stream. Options are "active", "paused", "suspended".
    Type string
    Type of the log stream, which indicates the sink provider. Options include: eventbridge, eventgrid, http, datadog, splunk, sumo, mixpanel, segment.
    Filters []map[string]string
    Only logs events matching these filters will be delivered by the stream. If omitted or empty, all events will be delivered. Filters available: auth.ancillary.fail, auth.ancillary.success, auth.login.fail, auth.login.notification, auth.login.success, auth.logout.fail, auth.logout.success, auth.signup.fail, auth.signup.success, auth.silent_auth.fail, auth.silent_auth.success, auth.token_exchange.fail, auth.token_exchange.success, management.fail, management.success, system.notification, user.fail, user.notification, user.success, other.
    Name string
    Name of the log stream.
    Sink LogStreamSinkArgs
    The sink configuration for the log stream.
    Status string
    The current status of the log stream. Options are "active", "paused", "suspended".
    Type string
    Type of the log stream, which indicates the sink provider. Options include: eventbridge, eventgrid, http, datadog, splunk, sumo, mixpanel, segment.
    filters List<Map<String,String>>
    Only logs events matching these filters will be delivered by the stream. If omitted or empty, all events will be delivered. Filters available: auth.ancillary.fail, auth.ancillary.success, auth.login.fail, auth.login.notification, auth.login.success, auth.logout.fail, auth.logout.success, auth.signup.fail, auth.signup.success, auth.silent_auth.fail, auth.silent_auth.success, auth.token_exchange.fail, auth.token_exchange.success, management.fail, management.success, system.notification, user.fail, user.notification, user.success, other.
    name String
    Name of the log stream.
    sink LogStreamSink
    The sink configuration for the log stream.
    status String
    The current status of the log stream. Options are "active", "paused", "suspended".
    type String
    Type of the log stream, which indicates the sink provider. Options include: eventbridge, eventgrid, http, datadog, splunk, sumo, mixpanel, segment.
    filters {[key: string]: string}[]
    Only logs events matching these filters will be delivered by the stream. If omitted or empty, all events will be delivered. Filters available: auth.ancillary.fail, auth.ancillary.success, auth.login.fail, auth.login.notification, auth.login.success, auth.logout.fail, auth.logout.success, auth.signup.fail, auth.signup.success, auth.silent_auth.fail, auth.silent_auth.success, auth.token_exchange.fail, auth.token_exchange.success, management.fail, management.success, system.notification, user.fail, user.notification, user.success, other.
    name string
    Name of the log stream.
    sink LogStreamSink
    The sink configuration for the log stream.
    status string
    The current status of the log stream. Options are "active", "paused", "suspended".
    type string
    Type of the log stream, which indicates the sink provider. Options include: eventbridge, eventgrid, http, datadog, splunk, sumo, mixpanel, segment.
    filters Sequence[Mapping[str, str]]
    Only logs events matching these filters will be delivered by the stream. If omitted or empty, all events will be delivered. Filters available: auth.ancillary.fail, auth.ancillary.success, auth.login.fail, auth.login.notification, auth.login.success, auth.logout.fail, auth.logout.success, auth.signup.fail, auth.signup.success, auth.silent_auth.fail, auth.silent_auth.success, auth.token_exchange.fail, auth.token_exchange.success, management.fail, management.success, system.notification, user.fail, user.notification, user.success, other.
    name str
    Name of the log stream.
    sink LogStreamSinkArgs
    The sink configuration for the log stream.
    status str
    The current status of the log stream. Options are "active", "paused", "suspended".
    type str
    Type of the log stream, which indicates the sink provider. Options include: eventbridge, eventgrid, http, datadog, splunk, sumo, mixpanel, segment.
    filters List<Map<String>>
    Only logs events matching these filters will be delivered by the stream. If omitted or empty, all events will be delivered. Filters available: auth.ancillary.fail, auth.ancillary.success, auth.login.fail, auth.login.notification, auth.login.success, auth.logout.fail, auth.logout.success, auth.signup.fail, auth.signup.success, auth.silent_auth.fail, auth.silent_auth.success, auth.token_exchange.fail, auth.token_exchange.success, management.fail, management.success, system.notification, user.fail, user.notification, user.success, other.
    name String
    Name of the log stream.
    sink Property Map
    The sink configuration for the log stream.
    status String
    The current status of the log stream. Options are "active", "paused", "suspended".
    type String
    Type of the log stream, which indicates the sink provider. Options include: eventbridge, eventgrid, http, datadog, splunk, sumo, mixpanel, segment.

    Supporting Types

    LogStreamSink, LogStreamSinkArgs

    AwsAccountId string
    The AWS Account ID.
    AwsPartnerEventSource string
    Name of the Partner Event Source to be used with AWS. Generally generated by Auth0 and passed to AWS, so this should be an output attribute.
    AwsRegion string
    The region in which the EventBridge event source will be created. Possible values: ap-east-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, cn-north-1, cn-northwest-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, me-south-1, sa-east-1, us-gov-east-1, us-gov-west-1, us-east-1, us-east-2, us-west-1, us-west-2.
    AzurePartnerTopic string
    Name of the Partner Topic to be used with Azure. Generally should not be specified.
    AzureRegion string
    The Azure region code. Possible values: australiacentral, australiaeast, australiasoutheast, brazilsouth, canadacentral, canadaeast, centralindia, centralus, eastasia, eastus, eastus2, francecentral, germanywestcentral, japaneast, japanwest, koreacentral, koreasouth, northcentralus, northeurope, norwayeast, southafricanorth, southcentralus, southeastasia, southindia, switzerlandnorth, uaenorth, uksouth, ukwest, westcentralus, westeurope, westindia, westus, westus2.
    AzureResourceGroup string
    The Azure EventGrid resource group which allows you to manage all Azure assets within one subscription.
    AzureSubscriptionId string
    The unique alphanumeric string that identifies your Azure subscription.
    DatadogApiKey string
    The Datadog API key.
    DatadogRegion string
    The Datadog region. Possible values: us, eu, us3, us5.
    HttpAuthorization string
    Sent in the HTTP "Authorization" header with each request.
    HttpContentFormat string
    The format of data sent over HTTP. Options are "JSONLINES", "JSONARRAY" or "JSONOBJECT"
    HttpContentType string
    The "Content-Type" header to send over HTTP. Common value is "application/json".
    HttpCustomHeaders List<ImmutableDictionary<string, string>>
    Additional HTTP headers to be included as part of the HTTP request.
    HttpEndpoint string
    The HTTP endpoint to send streaming logs.
    MixpanelProjectId string
    The Mixpanel project ID, found on the Project Settings page.
    MixpanelRegion string
    The Mixpanel region. Options are ["us", "eu"]. EU is required for customers with EU data residency requirements.
    MixpanelServiceAccountPassword string
    The Mixpanel Service Account password.
    MixpanelServiceAccountUsername string
    The Mixpanel Service Account username. Services Accounts can be created in the Project Settings page.
    SegmentWriteKey string
    The Segment Write Key.
    SplunkDomain string
    The Splunk domain name.
    SplunkPort string
    The Splunk port.
    SplunkSecure bool
    This toggle should be turned off when using self-signed certificates.
    SplunkToken string
    The Splunk access token.
    SumoSourceAddress string
    Generated URL for your defined HTTP source in Sumo Logic for collecting streaming data from Auth0.
    AwsAccountId string
    The AWS Account ID.
    AwsPartnerEventSource string
    Name of the Partner Event Source to be used with AWS. Generally generated by Auth0 and passed to AWS, so this should be an output attribute.
    AwsRegion string
    The region in which the EventBridge event source will be created. Possible values: ap-east-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, cn-north-1, cn-northwest-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, me-south-1, sa-east-1, us-gov-east-1, us-gov-west-1, us-east-1, us-east-2, us-west-1, us-west-2.
    AzurePartnerTopic string
    Name of the Partner Topic to be used with Azure. Generally should not be specified.
    AzureRegion string
    The Azure region code. Possible values: australiacentral, australiaeast, australiasoutheast, brazilsouth, canadacentral, canadaeast, centralindia, centralus, eastasia, eastus, eastus2, francecentral, germanywestcentral, japaneast, japanwest, koreacentral, koreasouth, northcentralus, northeurope, norwayeast, southafricanorth, southcentralus, southeastasia, southindia, switzerlandnorth, uaenorth, uksouth, ukwest, westcentralus, westeurope, westindia, westus, westus2.
    AzureResourceGroup string
    The Azure EventGrid resource group which allows you to manage all Azure assets within one subscription.
    AzureSubscriptionId string
    The unique alphanumeric string that identifies your Azure subscription.
    DatadogApiKey string
    The Datadog API key.
    DatadogRegion string
    The Datadog region. Possible values: us, eu, us3, us5.
    HttpAuthorization string
    Sent in the HTTP "Authorization" header with each request.
    HttpContentFormat string
    The format of data sent over HTTP. Options are "JSONLINES", "JSONARRAY" or "JSONOBJECT"
    HttpContentType string
    The "Content-Type" header to send over HTTP. Common value is "application/json".
    HttpCustomHeaders []map[string]string
    Additional HTTP headers to be included as part of the HTTP request.
    HttpEndpoint string
    The HTTP endpoint to send streaming logs.
    MixpanelProjectId string
    The Mixpanel project ID, found on the Project Settings page.
    MixpanelRegion string
    The Mixpanel region. Options are ["us", "eu"]. EU is required for customers with EU data residency requirements.
    MixpanelServiceAccountPassword string
    The Mixpanel Service Account password.
    MixpanelServiceAccountUsername string
    The Mixpanel Service Account username. Services Accounts can be created in the Project Settings page.
    SegmentWriteKey string
    The Segment Write Key.
    SplunkDomain string
    The Splunk domain name.
    SplunkPort string
    The Splunk port.
    SplunkSecure bool
    This toggle should be turned off when using self-signed certificates.
    SplunkToken string
    The Splunk access token.
    SumoSourceAddress string
    Generated URL for your defined HTTP source in Sumo Logic for collecting streaming data from Auth0.
    awsAccountId String
    The AWS Account ID.
    awsPartnerEventSource String
    Name of the Partner Event Source to be used with AWS. Generally generated by Auth0 and passed to AWS, so this should be an output attribute.
    awsRegion String
    The region in which the EventBridge event source will be created. Possible values: ap-east-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, cn-north-1, cn-northwest-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, me-south-1, sa-east-1, us-gov-east-1, us-gov-west-1, us-east-1, us-east-2, us-west-1, us-west-2.
    azurePartnerTopic String
    Name of the Partner Topic to be used with Azure. Generally should not be specified.
    azureRegion String
    The Azure region code. Possible values: australiacentral, australiaeast, australiasoutheast, brazilsouth, canadacentral, canadaeast, centralindia, centralus, eastasia, eastus, eastus2, francecentral, germanywestcentral, japaneast, japanwest, koreacentral, koreasouth, northcentralus, northeurope, norwayeast, southafricanorth, southcentralus, southeastasia, southindia, switzerlandnorth, uaenorth, uksouth, ukwest, westcentralus, westeurope, westindia, westus, westus2.
    azureResourceGroup String
    The Azure EventGrid resource group which allows you to manage all Azure assets within one subscription.
    azureSubscriptionId String
    The unique alphanumeric string that identifies your Azure subscription.
    datadogApiKey String
    The Datadog API key.
    datadogRegion String
    The Datadog region. Possible values: us, eu, us3, us5.
    httpAuthorization String
    Sent in the HTTP "Authorization" header with each request.
    httpContentFormat String
    The format of data sent over HTTP. Options are "JSONLINES", "JSONARRAY" or "JSONOBJECT"
    httpContentType String
    The "Content-Type" header to send over HTTP. Common value is "application/json".
    httpCustomHeaders List<Map<String,String>>
    Additional HTTP headers to be included as part of the HTTP request.
    httpEndpoint String
    The HTTP endpoint to send streaming logs.
    mixpanelProjectId String
    The Mixpanel project ID, found on the Project Settings page.
    mixpanelRegion String
    The Mixpanel region. Options are ["us", "eu"]. EU is required for customers with EU data residency requirements.
    mixpanelServiceAccountPassword String
    The Mixpanel Service Account password.
    mixpanelServiceAccountUsername String
    The Mixpanel Service Account username. Services Accounts can be created in the Project Settings page.
    segmentWriteKey String
    The Segment Write Key.
    splunkDomain String
    The Splunk domain name.
    splunkPort String
    The Splunk port.
    splunkSecure Boolean
    This toggle should be turned off when using self-signed certificates.
    splunkToken String
    The Splunk access token.
    sumoSourceAddress String
    Generated URL for your defined HTTP source in Sumo Logic for collecting streaming data from Auth0.
    awsAccountId string
    The AWS Account ID.
    awsPartnerEventSource string
    Name of the Partner Event Source to be used with AWS. Generally generated by Auth0 and passed to AWS, so this should be an output attribute.
    awsRegion string
    The region in which the EventBridge event source will be created. Possible values: ap-east-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, cn-north-1, cn-northwest-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, me-south-1, sa-east-1, us-gov-east-1, us-gov-west-1, us-east-1, us-east-2, us-west-1, us-west-2.
    azurePartnerTopic string
    Name of the Partner Topic to be used with Azure. Generally should not be specified.
    azureRegion string
    The Azure region code. Possible values: australiacentral, australiaeast, australiasoutheast, brazilsouth, canadacentral, canadaeast, centralindia, centralus, eastasia, eastus, eastus2, francecentral, germanywestcentral, japaneast, japanwest, koreacentral, koreasouth, northcentralus, northeurope, norwayeast, southafricanorth, southcentralus, southeastasia, southindia, switzerlandnorth, uaenorth, uksouth, ukwest, westcentralus, westeurope, westindia, westus, westus2.
    azureResourceGroup string
    The Azure EventGrid resource group which allows you to manage all Azure assets within one subscription.
    azureSubscriptionId string
    The unique alphanumeric string that identifies your Azure subscription.
    datadogApiKey string
    The Datadog API key.
    datadogRegion string
    The Datadog region. Possible values: us, eu, us3, us5.
    httpAuthorization string
    Sent in the HTTP "Authorization" header with each request.
    httpContentFormat string
    The format of data sent over HTTP. Options are "JSONLINES", "JSONARRAY" or "JSONOBJECT"
    httpContentType string
    The "Content-Type" header to send over HTTP. Common value is "application/json".
    httpCustomHeaders {[key: string]: string}[]
    Additional HTTP headers to be included as part of the HTTP request.
    httpEndpoint string
    The HTTP endpoint to send streaming logs.
    mixpanelProjectId string
    The Mixpanel project ID, found on the Project Settings page.
    mixpanelRegion string
    The Mixpanel region. Options are ["us", "eu"]. EU is required for customers with EU data residency requirements.
    mixpanelServiceAccountPassword string
    The Mixpanel Service Account password.
    mixpanelServiceAccountUsername string
    The Mixpanel Service Account username. Services Accounts can be created in the Project Settings page.
    segmentWriteKey string
    The Segment Write Key.
    splunkDomain string
    The Splunk domain name.
    splunkPort string
    The Splunk port.
    splunkSecure boolean
    This toggle should be turned off when using self-signed certificates.
    splunkToken string
    The Splunk access token.
    sumoSourceAddress string
    Generated URL for your defined HTTP source in Sumo Logic for collecting streaming data from Auth0.
    aws_account_id str
    The AWS Account ID.
    aws_partner_event_source str
    Name of the Partner Event Source to be used with AWS. Generally generated by Auth0 and passed to AWS, so this should be an output attribute.
    aws_region str
    The region in which the EventBridge event source will be created. Possible values: ap-east-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, cn-north-1, cn-northwest-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, me-south-1, sa-east-1, us-gov-east-1, us-gov-west-1, us-east-1, us-east-2, us-west-1, us-west-2.
    azure_partner_topic str
    Name of the Partner Topic to be used with Azure. Generally should not be specified.
    azure_region str
    The Azure region code. Possible values: australiacentral, australiaeast, australiasoutheast, brazilsouth, canadacentral, canadaeast, centralindia, centralus, eastasia, eastus, eastus2, francecentral, germanywestcentral, japaneast, japanwest, koreacentral, koreasouth, northcentralus, northeurope, norwayeast, southafricanorth, southcentralus, southeastasia, southindia, switzerlandnorth, uaenorth, uksouth, ukwest, westcentralus, westeurope, westindia, westus, westus2.
    azure_resource_group str
    The Azure EventGrid resource group which allows you to manage all Azure assets within one subscription.
    azure_subscription_id str
    The unique alphanumeric string that identifies your Azure subscription.
    datadog_api_key str
    The Datadog API key.
    datadog_region str
    The Datadog region. Possible values: us, eu, us3, us5.
    http_authorization str
    Sent in the HTTP "Authorization" header with each request.
    http_content_format str
    The format of data sent over HTTP. Options are "JSONLINES", "JSONARRAY" or "JSONOBJECT"
    http_content_type str
    The "Content-Type" header to send over HTTP. Common value is "application/json".
    http_custom_headers Sequence[Mapping[str, str]]
    Additional HTTP headers to be included as part of the HTTP request.
    http_endpoint str
    The HTTP endpoint to send streaming logs.
    mixpanel_project_id str
    The Mixpanel project ID, found on the Project Settings page.
    mixpanel_region str
    The Mixpanel region. Options are ["us", "eu"]. EU is required for customers with EU data residency requirements.
    mixpanel_service_account_password str
    The Mixpanel Service Account password.
    mixpanel_service_account_username str
    The Mixpanel Service Account username. Services Accounts can be created in the Project Settings page.
    segment_write_key str
    The Segment Write Key.
    splunk_domain str
    The Splunk domain name.
    splunk_port str
    The Splunk port.
    splunk_secure bool
    This toggle should be turned off when using self-signed certificates.
    splunk_token str
    The Splunk access token.
    sumo_source_address str
    Generated URL for your defined HTTP source in Sumo Logic for collecting streaming data from Auth0.
    awsAccountId String
    The AWS Account ID.
    awsPartnerEventSource String
    Name of the Partner Event Source to be used with AWS. Generally generated by Auth0 and passed to AWS, so this should be an output attribute.
    awsRegion String
    The region in which the EventBridge event source will be created. Possible values: ap-east-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, cn-north-1, cn-northwest-1, eu-central-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, me-south-1, sa-east-1, us-gov-east-1, us-gov-west-1, us-east-1, us-east-2, us-west-1, us-west-2.
    azurePartnerTopic String
    Name of the Partner Topic to be used with Azure. Generally should not be specified.
    azureRegion String
    The Azure region code. Possible values: australiacentral, australiaeast, australiasoutheast, brazilsouth, canadacentral, canadaeast, centralindia, centralus, eastasia, eastus, eastus2, francecentral, germanywestcentral, japaneast, japanwest, koreacentral, koreasouth, northcentralus, northeurope, norwayeast, southafricanorth, southcentralus, southeastasia, southindia, switzerlandnorth, uaenorth, uksouth, ukwest, westcentralus, westeurope, westindia, westus, westus2.
    azureResourceGroup String
    The Azure EventGrid resource group which allows you to manage all Azure assets within one subscription.
    azureSubscriptionId String
    The unique alphanumeric string that identifies your Azure subscription.
    datadogApiKey String
    The Datadog API key.
    datadogRegion String
    The Datadog region. Possible values: us, eu, us3, us5.
    httpAuthorization String
    Sent in the HTTP "Authorization" header with each request.
    httpContentFormat String
    The format of data sent over HTTP. Options are "JSONLINES", "JSONARRAY" or "JSONOBJECT"
    httpContentType String
    The "Content-Type" header to send over HTTP. Common value is "application/json".
    httpCustomHeaders List<Map<String>>
    Additional HTTP headers to be included as part of the HTTP request.
    httpEndpoint String
    The HTTP endpoint to send streaming logs.
    mixpanelProjectId String
    The Mixpanel project ID, found on the Project Settings page.
    mixpanelRegion String
    The Mixpanel region. Options are ["us", "eu"]. EU is required for customers with EU data residency requirements.
    mixpanelServiceAccountPassword String
    The Mixpanel Service Account password.
    mixpanelServiceAccountUsername String
    The Mixpanel Service Account username. Services Accounts can be created in the Project Settings page.
    segmentWriteKey String
    The Segment Write Key.
    splunkDomain String
    The Splunk domain name.
    splunkPort String
    The Splunk port.
    splunkSecure Boolean
    This toggle should be turned off when using self-signed certificates.
    splunkToken String
    The Splunk access token.
    sumoSourceAddress String
    Generated URL for your defined HTTP source in Sumo Logic for collecting streaming data from Auth0.

    Import

    This resource can be imported by specifying the log stream ID.

    Example:

    $ pulumi import auth0:index/logStream:LogStream example "lst_XXXXXXXXXXXXXXXX"
    

    Package Details

    Repository
    Auth0 pulumi/pulumi-auth0
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the auth0 Terraform Provider.
    auth0 logo
    Auth0 v3.3.1 published on Thursday, Mar 14, 2024 by Pulumi