1. Packages
  2. Sumo Logic
  3. API Docs
  4. CloudSyslogSource
Sumo Logic v0.20.3 published on Wednesday, Mar 6, 2024 by Pulumi

sumologic.CloudSyslogSource

Explore with Pulumi AI

sumologic logo
Sumo Logic v0.20.3 published on Wednesday, Mar 6, 2024 by Pulumi

    Provides a Sumo Logic Cloud Syslog source.

    IMPORTANT: The token is stored in plain-text in the state. This is a potential security issue.

    Attributes reference

    The following attributes are exported:

    • id - The internal ID of the source.
    • token - The token to use for sending data to this source.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using SumoLogic = Pulumi.SumoLogic;
    
    return await Deployment.RunAsync(() => 
    {
        var collector = new SumoLogic.Collector("collector", new()
        {
            Description = "Just testing this",
        });
    
        var cloudsyslogSource = new SumoLogic.CloudSyslogSource("cloudsyslogSource", new()
        {
            Category = "my/source/category",
            CollectorId = collector.Id,
            Description = "My description",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-sumologic/sdk/go/sumologic"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		collector, err := sumologic.NewCollector(ctx, "collector", &sumologic.CollectorArgs{
    			Description: pulumi.String("Just testing this"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = sumologic.NewCloudSyslogSource(ctx, "cloudsyslogSource", &sumologic.CloudSyslogSourceArgs{
    			Category:    pulumi.String("my/source/category"),
    			CollectorId: collector.ID(),
    			Description: pulumi.String("My description"),
    		})
    		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.sumologic.Collector;
    import com.pulumi.sumologic.CollectorArgs;
    import com.pulumi.sumologic.CloudSyslogSource;
    import com.pulumi.sumologic.CloudSyslogSourceArgs;
    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 collector = new Collector("collector", CollectorArgs.builder()        
                .description("Just testing this")
                .build());
    
            var cloudsyslogSource = new CloudSyslogSource("cloudsyslogSource", CloudSyslogSourceArgs.builder()        
                .category("my/source/category")
                .collectorId(collector.id())
                .description("My description")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_sumologic as sumologic
    
    collector = sumologic.Collector("collector", description="Just testing this")
    cloudsyslog_source = sumologic.CloudSyslogSource("cloudsyslogSource",
        category="my/source/category",
        collector_id=collector.id,
        description="My description")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as sumologic from "@pulumi/sumologic";
    
    const collector = new sumologic.Collector("collector", {description: "Just testing this"});
    const cloudsyslogSource = new sumologic.CloudSyslogSource("cloudsyslogSource", {
        category: "my/source/category",
        collectorId: collector.id,
        description: "My description",
    });
    
    resources:
      cloudsyslogSource:
        type: sumologic:CloudSyslogSource
        properties:
          category: my/source/category
          collectorId: ${collector.id}
          description: My description
      collector:
        type: sumologic:Collector
        properties:
          description: Just testing this
    

    Create CloudSyslogSource Resource

    new CloudSyslogSource(name: string, args: CloudSyslogSourceArgs, opts?: CustomResourceOptions);
    @overload
    def CloudSyslogSource(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          automatic_date_parsing: Optional[bool] = None,
                          category: Optional[str] = None,
                          collector_id: Optional[int] = None,
                          content_type: Optional[str] = None,
                          cutoff_relative_time: Optional[str] = None,
                          cutoff_timestamp: Optional[int] = None,
                          default_date_formats: Optional[Sequence[CloudSyslogSourceDefaultDateFormatArgs]] = None,
                          description: Optional[str] = None,
                          fields: Optional[Mapping[str, str]] = None,
                          filters: Optional[Sequence[CloudSyslogSourceFilterArgs]] = None,
                          force_timezone: Optional[bool] = None,
                          host_name: Optional[str] = None,
                          manual_prefix_regexp: Optional[str] = None,
                          multiline_processing_enabled: Optional[bool] = None,
                          name: Optional[str] = None,
                          timezone: Optional[str] = None,
                          use_autoline_matching: Optional[bool] = None)
    @overload
    def CloudSyslogSource(resource_name: str,
                          args: CloudSyslogSourceArgs,
                          opts: Optional[ResourceOptions] = None)
    func NewCloudSyslogSource(ctx *Context, name string, args CloudSyslogSourceArgs, opts ...ResourceOption) (*CloudSyslogSource, error)
    public CloudSyslogSource(string name, CloudSyslogSourceArgs args, CustomResourceOptions? opts = null)
    public CloudSyslogSource(String name, CloudSyslogSourceArgs args)
    public CloudSyslogSource(String name, CloudSyslogSourceArgs args, CustomResourceOptions options)
    
    type: sumologic:CloudSyslogSource
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args CloudSyslogSourceArgs
    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 CloudSyslogSourceArgs
    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 CloudSyslogSourceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudSyslogSourceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CloudSyslogSourceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    CloudSyslogSource 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 CloudSyslogSource resource accepts the following input properties:

    Outputs

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

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

    Look up Existing CloudSyslogSource Resource

    Get an existing CloudSyslogSource 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?: CloudSyslogSourceState, opts?: CustomResourceOptions): CloudSyslogSource
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            automatic_date_parsing: Optional[bool] = None,
            category: Optional[str] = None,
            collector_id: Optional[int] = None,
            content_type: Optional[str] = None,
            cutoff_relative_time: Optional[str] = None,
            cutoff_timestamp: Optional[int] = None,
            default_date_formats: Optional[Sequence[CloudSyslogSourceDefaultDateFormatArgs]] = None,
            description: Optional[str] = None,
            fields: Optional[Mapping[str, str]] = None,
            filters: Optional[Sequence[CloudSyslogSourceFilterArgs]] = None,
            force_timezone: Optional[bool] = None,
            host_name: Optional[str] = None,
            manual_prefix_regexp: Optional[str] = None,
            multiline_processing_enabled: Optional[bool] = None,
            name: Optional[str] = None,
            timezone: Optional[str] = None,
            token: Optional[str] = None,
            use_autoline_matching: Optional[bool] = None) -> CloudSyslogSource
    func GetCloudSyslogSource(ctx *Context, name string, id IDInput, state *CloudSyslogSourceState, opts ...ResourceOption) (*CloudSyslogSource, error)
    public static CloudSyslogSource Get(string name, Input<string> id, CloudSyslogSourceState? state, CustomResourceOptions? opts = null)
    public static CloudSyslogSource get(String name, Output<String> id, CloudSyslogSourceState 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:

    Supporting Types

    CloudSyslogSourceDefaultDateFormat, CloudSyslogSourceDefaultDateFormatArgs

    Format string
    Locator string
    Format string
    Locator string
    format String
    locator String
    format string
    locator string
    format String
    locator String

    CloudSyslogSourceFilter, CloudSyslogSourceFilterArgs

    FilterType string
    Name string
    Regexp string
    Mask string
    FilterType string
    Name string
    Regexp string
    Mask string
    filterType String
    name String
    regexp String
    mask String
    filterType string
    name string
    regexp string
    mask string
    filterType String
    name String
    regexp String
    mask String

    Import

    Cloud Syslog sources can be imported using the collector and source IDs (collector/source), e.g.:

    hcl

    $ pulumi import sumologic:index/cloudSyslogSource:CloudSyslogSource test 123/456
    

    HTTP sources can be imported using the collector name and source name (collectorName/sourceName), e.g.:

    hcl

    $ pulumi import sumologic:index/cloudSyslogSource:CloudSyslogSource test my-test-collector/my-test-source
    

    Package Details

    Repository
    Sumo Logic pulumi/pulumi-sumologic
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the sumologic Terraform Provider.
    sumologic logo
    Sumo Logic v0.20.3 published on Wednesday, Mar 6, 2024 by Pulumi