1. Packages
  2. Panos Provider
  3. API Docs
  4. SyslogProfile
panos 2.0.7 published on Thursday, Nov 27, 2025 by paloaltonetworks
panos logo
panos 2.0.7 published on Thursday, Nov 27, 2025 by paloaltonetworks

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as panos from "@pulumi/panos";
    
    const example = new panos.Template("example", {
        location: {
            panorama: {},
        },
        name: "example-template",
    });
    const exampleSyslogProfile = new panos.SyslogProfile("example", {
        location: {
            template: {
                name: example.name,
            },
        },
        name: "example-syslog-profile",
        servers: [
            {
                name: "server1",
                server: "10.0.0.1",
                transport: "UDP",
                port: 514,
                facility: "LOG_USER",
                format: "IETF",
            },
            {
                name: "server2",
                server: "syslog.example.com",
                transport: "SSL",
                port: 6514,
                facility: "LOG_LOCAL1",
                format: "BSD",
            },
        ],
        format: {
            auth: "auth-format",
            traffic: "traffic-format",
            escaping: {
                escapeCharacter: "\\",
                escapedCharacters: "'",
            },
        },
    });
    
    import pulumi
    import pulumi_panos as panos
    
    example = panos.Template("example",
        location={
            "panorama": {},
        },
        name="example-template")
    example_syslog_profile = panos.SyslogProfile("example",
        location={
            "template": {
                "name": example.name,
            },
        },
        name="example-syslog-profile",
        servers=[
            {
                "name": "server1",
                "server": "10.0.0.1",
                "transport": "UDP",
                "port": 514,
                "facility": "LOG_USER",
                "format": "IETF",
            },
            {
                "name": "server2",
                "server": "syslog.example.com",
                "transport": "SSL",
                "port": 6514,
                "facility": "LOG_LOCAL1",
                "format": "BSD",
            },
        ],
        format={
            "auth": "auth-format",
            "traffic": "traffic-format",
            "escaping": {
                "escape_character": "\\",
                "escaped_characters": "'",
            },
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/panos/v2/panos"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := panos.NewTemplate(ctx, "example", &panos.TemplateArgs{
    			Location: &panos.TemplateLocationArgs{
    				Panorama: &panos.TemplateLocationPanoramaArgs{},
    			},
    			Name: pulumi.String("example-template"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = panos.NewSyslogProfile(ctx, "example", &panos.SyslogProfileArgs{
    			Location: &panos.SyslogProfileLocationArgs{
    				Template: &panos.SyslogProfileLocationTemplateArgs{
    					Name: example.Name,
    				},
    			},
    			Name: pulumi.String("example-syslog-profile"),
    			Servers: panos.SyslogProfileServerArray{
    				&panos.SyslogProfileServerArgs{
    					Name:      pulumi.String("server1"),
    					Server:    pulumi.String("10.0.0.1"),
    					Transport: pulumi.String("UDP"),
    					Port:      pulumi.Float64(514),
    					Facility:  pulumi.String("LOG_USER"),
    					Format:    pulumi.String("IETF"),
    				},
    				&panos.SyslogProfileServerArgs{
    					Name:      pulumi.String("server2"),
    					Server:    pulumi.String("syslog.example.com"),
    					Transport: pulumi.String("SSL"),
    					Port:      pulumi.Float64(6514),
    					Facility:  pulumi.String("LOG_LOCAL1"),
    					Format:    pulumi.String("BSD"),
    				},
    			},
    			Format: &panos.SyslogProfileFormatArgs{
    				Auth:    pulumi.String("auth-format"),
    				Traffic: pulumi.String("traffic-format"),
    				Escaping: &panos.SyslogProfileFormatEscapingArgs{
    					EscapeCharacter:   pulumi.String("\\"),
    					EscapedCharacters: pulumi.String("'"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Panos = Pulumi.Panos;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Panos.Template("example", new()
        {
            Location = new Panos.Inputs.TemplateLocationArgs
            {
                Panorama = null,
            },
            Name = "example-template",
        });
    
        var exampleSyslogProfile = new Panos.SyslogProfile("example", new()
        {
            Location = new Panos.Inputs.SyslogProfileLocationArgs
            {
                Template = new Panos.Inputs.SyslogProfileLocationTemplateArgs
                {
                    Name = example.Name,
                },
            },
            Name = "example-syslog-profile",
            Servers = new[]
            {
                new Panos.Inputs.SyslogProfileServerArgs
                {
                    Name = "server1",
                    Server = "10.0.0.1",
                    Transport = "UDP",
                    Port = 514,
                    Facility = "LOG_USER",
                    Format = "IETF",
                },
                new Panos.Inputs.SyslogProfileServerArgs
                {
                    Name = "server2",
                    Server = "syslog.example.com",
                    Transport = "SSL",
                    Port = 6514,
                    Facility = "LOG_LOCAL1",
                    Format = "BSD",
                },
            },
            Format = new Panos.Inputs.SyslogProfileFormatArgs
            {
                Auth = "auth-format",
                Traffic = "traffic-format",
                Escaping = new Panos.Inputs.SyslogProfileFormatEscapingArgs
                {
                    EscapeCharacter = "\\",
                    EscapedCharacters = "'",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.panos.Template;
    import com.pulumi.panos.TemplateArgs;
    import com.pulumi.panos.inputs.TemplateLocationArgs;
    import com.pulumi.panos.inputs.TemplateLocationPanoramaArgs;
    import com.pulumi.panos.SyslogProfile;
    import com.pulumi.panos.SyslogProfileArgs;
    import com.pulumi.panos.inputs.SyslogProfileLocationArgs;
    import com.pulumi.panos.inputs.SyslogProfileLocationTemplateArgs;
    import com.pulumi.panos.inputs.SyslogProfileServerArgs;
    import com.pulumi.panos.inputs.SyslogProfileFormatArgs;
    import com.pulumi.panos.inputs.SyslogProfileFormatEscapingArgs;
    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 example = new Template("example", TemplateArgs.builder()
                .location(TemplateLocationArgs.builder()
                    .panorama(TemplateLocationPanoramaArgs.builder()
                        .build())
                    .build())
                .name("example-template")
                .build());
    
            var exampleSyslogProfile = new SyslogProfile("exampleSyslogProfile", SyslogProfileArgs.builder()
                .location(SyslogProfileLocationArgs.builder()
                    .template(SyslogProfileLocationTemplateArgs.builder()
                        .name(example.name())
                        .build())
                    .build())
                .name("example-syslog-profile")
                .servers(            
                    SyslogProfileServerArgs.builder()
                        .name("server1")
                        .server("10.0.0.1")
                        .transport("UDP")
                        .port(514.0)
                        .facility("LOG_USER")
                        .format("IETF")
                        .build(),
                    SyslogProfileServerArgs.builder()
                        .name("server2")
                        .server("syslog.example.com")
                        .transport("SSL")
                        .port(6514.0)
                        .facility("LOG_LOCAL1")
                        .format("BSD")
                        .build())
                .format(SyslogProfileFormatArgs.builder()
                    .auth("auth-format")
                    .traffic("traffic-format")
                    .escaping(SyslogProfileFormatEscapingArgs.builder()
                        .escapeCharacter("\\")
                        .escapedCharacters("'")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: panos:Template
        properties:
          location:
            panorama: {}
          name: example-template
      exampleSyslogProfile:
        type: panos:SyslogProfile
        name: example
        properties:
          location:
            template:
              name: ${example.name}
          name: example-syslog-profile
          servers:
            - name: server1
              server: 10.0.0.1
              transport: UDP
              port: 514
              facility: LOG_USER
              format: IETF
            - name: server2
              server: syslog.example.com
              transport: SSL
              port: 6514
              facility: LOG_LOCAL1
              format: BSD
          format:
            auth: auth-format
            traffic: traffic-format
            escaping:
              escapeCharacter: \
              escapedCharacters: ''''
    

    Create SyslogProfile Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SyslogProfile(name: string, args: SyslogProfileArgs, opts?: CustomResourceOptions);
    @overload
    def SyslogProfile(resource_name: str,
                      args: SyslogProfileArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def SyslogProfile(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      location: Optional[SyslogProfileLocationArgs] = None,
                      format: Optional[SyslogProfileFormatArgs] = None,
                      name: Optional[str] = None,
                      servers: Optional[Sequence[SyslogProfileServerArgs]] = None)
    func NewSyslogProfile(ctx *Context, name string, args SyslogProfileArgs, opts ...ResourceOption) (*SyslogProfile, error)
    public SyslogProfile(string name, SyslogProfileArgs args, CustomResourceOptions? opts = null)
    public SyslogProfile(String name, SyslogProfileArgs args)
    public SyslogProfile(String name, SyslogProfileArgs args, CustomResourceOptions options)
    
    type: panos:SyslogProfile
    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 SyslogProfileArgs
    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 SyslogProfileArgs
    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 SyslogProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SyslogProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SyslogProfileArgs
    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 syslogProfileResource = new Panos.SyslogProfile("syslogProfileResource", new()
    {
        Location = new Panos.Inputs.SyslogProfileLocationArgs
        {
            Panorama = null,
            Template = new Panos.Inputs.SyslogProfileLocationTemplateArgs
            {
                Name = "string",
                PanoramaDevice = "string",
            },
            TemplateStack = new Panos.Inputs.SyslogProfileLocationTemplateStackArgs
            {
                Name = "string",
                PanoramaDevice = "string",
            },
            TemplateStackVsys = new Panos.Inputs.SyslogProfileLocationTemplateStackVsysArgs
            {
                NgfwDevice = "string",
                PanoramaDevice = "string",
                TemplateStack = "string",
                Vsys = "string",
            },
            TemplateVsys = new Panos.Inputs.SyslogProfileLocationTemplateVsysArgs
            {
                NgfwDevice = "string",
                PanoramaDevice = "string",
                Template = "string",
                Vsys = "string",
            },
            Vsys = new Panos.Inputs.SyslogProfileLocationVsysArgs
            {
                Name = "string",
                NgfwDevice = "string",
            },
        },
        Format = new Panos.Inputs.SyslogProfileFormatArgs
        {
            Auth = "string",
            Config = "string",
            Correlation = "string",
            Data = "string",
            Decryption = "string",
            Escaping = new Panos.Inputs.SyslogProfileFormatEscapingArgs
            {
                EscapeCharacter = "string",
                EscapedCharacters = "string",
            },
            Globalprotect = "string",
            Gtp = "string",
            HipMatch = "string",
            Iptag = "string",
            Sctp = "string",
            System = "string",
            Threat = "string",
            Traffic = "string",
            Tunnel = "string",
            Url = "string",
            Userid = "string",
            Wildfire = "string",
        },
        Name = "string",
        Servers = new[]
        {
            new Panos.Inputs.SyslogProfileServerArgs
            {
                Name = "string",
                Facility = "string",
                Format = "string",
                Port = 0,
                Server = "string",
                Transport = "string",
            },
        },
    });
    
    example, err := panos.NewSyslogProfile(ctx, "syslogProfileResource", &panos.SyslogProfileArgs{
    	Location: &panos.SyslogProfileLocationArgs{
    		Panorama: &panos.SyslogProfileLocationPanoramaArgs{},
    		Template: &panos.SyslogProfileLocationTemplateArgs{
    			Name:           pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStack: &panos.SyslogProfileLocationTemplateStackArgs{
    			Name:           pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStackVsys: &panos.SyslogProfileLocationTemplateStackVsysArgs{
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    			TemplateStack:  pulumi.String("string"),
    			Vsys:           pulumi.String("string"),
    		},
    		TemplateVsys: &panos.SyslogProfileLocationTemplateVsysArgs{
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    			Template:       pulumi.String("string"),
    			Vsys:           pulumi.String("string"),
    		},
    		Vsys: &panos.SyslogProfileLocationVsysArgs{
    			Name:       pulumi.String("string"),
    			NgfwDevice: pulumi.String("string"),
    		},
    	},
    	Format: &panos.SyslogProfileFormatArgs{
    		Auth:        pulumi.String("string"),
    		Config:      pulumi.String("string"),
    		Correlation: pulumi.String("string"),
    		Data:        pulumi.String("string"),
    		Decryption:  pulumi.String("string"),
    		Escaping: &panos.SyslogProfileFormatEscapingArgs{
    			EscapeCharacter:   pulumi.String("string"),
    			EscapedCharacters: pulumi.String("string"),
    		},
    		Globalprotect: pulumi.String("string"),
    		Gtp:           pulumi.String("string"),
    		HipMatch:      pulumi.String("string"),
    		Iptag:         pulumi.String("string"),
    		Sctp:          pulumi.String("string"),
    		System:        pulumi.String("string"),
    		Threat:        pulumi.String("string"),
    		Traffic:       pulumi.String("string"),
    		Tunnel:        pulumi.String("string"),
    		Url:           pulumi.String("string"),
    		Userid:        pulumi.String("string"),
    		Wildfire:      pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    	Servers: panos.SyslogProfileServerArray{
    		&panos.SyslogProfileServerArgs{
    			Name:      pulumi.String("string"),
    			Facility:  pulumi.String("string"),
    			Format:    pulumi.String("string"),
    			Port:      pulumi.Float64(0),
    			Server:    pulumi.String("string"),
    			Transport: pulumi.String("string"),
    		},
    	},
    })
    
    var syslogProfileResource = new SyslogProfile("syslogProfileResource", SyslogProfileArgs.builder()
        .location(SyslogProfileLocationArgs.builder()
            .panorama(SyslogProfileLocationPanoramaArgs.builder()
                .build())
            .template(SyslogProfileLocationTemplateArgs.builder()
                .name("string")
                .panoramaDevice("string")
                .build())
            .templateStack(SyslogProfileLocationTemplateStackArgs.builder()
                .name("string")
                .panoramaDevice("string")
                .build())
            .templateStackVsys(SyslogProfileLocationTemplateStackVsysArgs.builder()
                .ngfwDevice("string")
                .panoramaDevice("string")
                .templateStack("string")
                .vsys("string")
                .build())
            .templateVsys(SyslogProfileLocationTemplateVsysArgs.builder()
                .ngfwDevice("string")
                .panoramaDevice("string")
                .template("string")
                .vsys("string")
                .build())
            .vsys(SyslogProfileLocationVsysArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .build())
            .build())
        .format(SyslogProfileFormatArgs.builder()
            .auth("string")
            .config("string")
            .correlation("string")
            .data("string")
            .decryption("string")
            .escaping(SyslogProfileFormatEscapingArgs.builder()
                .escapeCharacter("string")
                .escapedCharacters("string")
                .build())
            .globalprotect("string")
            .gtp("string")
            .hipMatch("string")
            .iptag("string")
            .sctp("string")
            .system("string")
            .threat("string")
            .traffic("string")
            .tunnel("string")
            .url("string")
            .userid("string")
            .wildfire("string")
            .build())
        .name("string")
        .servers(SyslogProfileServerArgs.builder()
            .name("string")
            .facility("string")
            .format("string")
            .port(0.0)
            .server("string")
            .transport("string")
            .build())
        .build());
    
    syslog_profile_resource = panos.SyslogProfile("syslogProfileResource",
        location={
            "panorama": {},
            "template": {
                "name": "string",
                "panorama_device": "string",
            },
            "template_stack": {
                "name": "string",
                "panorama_device": "string",
            },
            "template_stack_vsys": {
                "ngfw_device": "string",
                "panorama_device": "string",
                "template_stack": "string",
                "vsys": "string",
            },
            "template_vsys": {
                "ngfw_device": "string",
                "panorama_device": "string",
                "template": "string",
                "vsys": "string",
            },
            "vsys": {
                "name": "string",
                "ngfw_device": "string",
            },
        },
        format={
            "auth": "string",
            "config": "string",
            "correlation": "string",
            "data": "string",
            "decryption": "string",
            "escaping": {
                "escape_character": "string",
                "escaped_characters": "string",
            },
            "globalprotect": "string",
            "gtp": "string",
            "hip_match": "string",
            "iptag": "string",
            "sctp": "string",
            "system": "string",
            "threat": "string",
            "traffic": "string",
            "tunnel": "string",
            "url": "string",
            "userid": "string",
            "wildfire": "string",
        },
        name="string",
        servers=[{
            "name": "string",
            "facility": "string",
            "format": "string",
            "port": 0,
            "server": "string",
            "transport": "string",
        }])
    
    const syslogProfileResource = new panos.SyslogProfile("syslogProfileResource", {
        location: {
            panorama: {},
            template: {
                name: "string",
                panoramaDevice: "string",
            },
            templateStack: {
                name: "string",
                panoramaDevice: "string",
            },
            templateStackVsys: {
                ngfwDevice: "string",
                panoramaDevice: "string",
                templateStack: "string",
                vsys: "string",
            },
            templateVsys: {
                ngfwDevice: "string",
                panoramaDevice: "string",
                template: "string",
                vsys: "string",
            },
            vsys: {
                name: "string",
                ngfwDevice: "string",
            },
        },
        format: {
            auth: "string",
            config: "string",
            correlation: "string",
            data: "string",
            decryption: "string",
            escaping: {
                escapeCharacter: "string",
                escapedCharacters: "string",
            },
            globalprotect: "string",
            gtp: "string",
            hipMatch: "string",
            iptag: "string",
            sctp: "string",
            system: "string",
            threat: "string",
            traffic: "string",
            tunnel: "string",
            url: "string",
            userid: "string",
            wildfire: "string",
        },
        name: "string",
        servers: [{
            name: "string",
            facility: "string",
            format: "string",
            port: 0,
            server: "string",
            transport: "string",
        }],
    });
    
    type: panos:SyslogProfile
    properties:
        format:
            auth: string
            config: string
            correlation: string
            data: string
            decryption: string
            escaping:
                escapeCharacter: string
                escapedCharacters: string
            globalprotect: string
            gtp: string
            hipMatch: string
            iptag: string
            sctp: string
            system: string
            threat: string
            traffic: string
            tunnel: string
            url: string
            userid: string
            wildfire: string
        location:
            panorama: {}
            template:
                name: string
                panoramaDevice: string
            templateStack:
                name: string
                panoramaDevice: string
            templateStackVsys:
                ngfwDevice: string
                panoramaDevice: string
                templateStack: string
                vsys: string
            templateVsys:
                ngfwDevice: string
                panoramaDevice: string
                template: string
                vsys: string
            vsys:
                name: string
                ngfwDevice: string
        name: string
        servers:
            - facility: string
              format: string
              name: string
              port: 0
              server: string
              transport: string
    

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

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SyslogProfile 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 SyslogProfile Resource

    Get an existing SyslogProfile 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?: SyslogProfileState, opts?: CustomResourceOptions): SyslogProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            format: Optional[SyslogProfileFormatArgs] = None,
            location: Optional[SyslogProfileLocationArgs] = None,
            name: Optional[str] = None,
            servers: Optional[Sequence[SyslogProfileServerArgs]] = None) -> SyslogProfile
    func GetSyslogProfile(ctx *Context, name string, id IDInput, state *SyslogProfileState, opts ...ResourceOption) (*SyslogProfile, error)
    public static SyslogProfile Get(string name, Input<string> id, SyslogProfileState? state, CustomResourceOptions? opts = null)
    public static SyslogProfile get(String name, Output<String> id, SyslogProfileState state, CustomResourceOptions options)
    resources:  _:    type: panos:SyslogProfile    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.
    The following state arguments are supported:

    Supporting Types

    SyslogProfileFormat, SyslogProfileFormatArgs

    Auth string
    Config string
    Correlation string
    Data string
    Decryption string
    Escaping SyslogProfileFormatEscaping
    Globalprotect string
    Gtp string
    HipMatch string
    Iptag string
    Sctp string
    System string
    Threat string
    Traffic string
    Tunnel string
    Url string
    Userid string
    Wildfire string
    Auth string
    Config string
    Correlation string
    Data string
    Decryption string
    Escaping SyslogProfileFormatEscaping
    Globalprotect string
    Gtp string
    HipMatch string
    Iptag string
    Sctp string
    System string
    Threat string
    Traffic string
    Tunnel string
    Url string
    Userid string
    Wildfire string
    auth String
    config String
    correlation String
    data String
    decryption String
    escaping SyslogProfileFormatEscaping
    globalprotect String
    gtp String
    hipMatch String
    iptag String
    sctp String
    system String
    threat String
    traffic String
    tunnel String
    url String
    userid String
    wildfire String
    auth string
    config string
    correlation string
    data string
    decryption string
    escaping SyslogProfileFormatEscaping
    globalprotect string
    gtp string
    hipMatch string
    iptag string
    sctp string
    system string
    threat string
    traffic string
    tunnel string
    url string
    userid string
    wildfire string
    auth String
    config String
    correlation String
    data String
    decryption String
    escaping Property Map
    globalprotect String
    gtp String
    hipMatch String
    iptag String
    sctp String
    system String
    threat String
    traffic String
    tunnel String
    url String
    userid String
    wildfire String

    SyslogProfileFormatEscaping, SyslogProfileFormatEscapingArgs

    EscapeCharacter string
    Escape character
    EscapedCharacters string
    List of characters to be escaped
    EscapeCharacter string
    Escape character
    EscapedCharacters string
    List of characters to be escaped
    escapeCharacter String
    Escape character
    escapedCharacters String
    List of characters to be escaped
    escapeCharacter string
    Escape character
    escapedCharacters string
    List of characters to be escaped
    escape_character str
    Escape character
    escaped_characters str
    List of characters to be escaped
    escapeCharacter String
    Escape character
    escapedCharacters String
    List of characters to be escaped

    SyslogProfileLocation, SyslogProfileLocationArgs

    Panorama SyslogProfileLocationPanorama
    Located in a panorama.
    Template SyslogProfileLocationTemplate
    A shared resource located within a specific template
    TemplateStack SyslogProfileLocationTemplateStack
    Located in a specific template
    TemplateStackVsys SyslogProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    TemplateVsys SyslogProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    Vsys SyslogProfileLocationVsys
    Located in a specific Virtual System
    Panorama SyslogProfileLocationPanorama
    Located in a panorama.
    Template SyslogProfileLocationTemplate
    A shared resource located within a specific template
    TemplateStack SyslogProfileLocationTemplateStack
    Located in a specific template
    TemplateStackVsys SyslogProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    TemplateVsys SyslogProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    Vsys SyslogProfileLocationVsys
    Located in a specific Virtual System
    panorama SyslogProfileLocationPanorama
    Located in a panorama.
    template SyslogProfileLocationTemplate
    A shared resource located within a specific template
    templateStack SyslogProfileLocationTemplateStack
    Located in a specific template
    templateStackVsys SyslogProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    templateVsys SyslogProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    vsys SyslogProfileLocationVsys
    Located in a specific Virtual System
    panorama SyslogProfileLocationPanorama
    Located in a panorama.
    template SyslogProfileLocationTemplate
    A shared resource located within a specific template
    templateStack SyslogProfileLocationTemplateStack
    Located in a specific template
    templateStackVsys SyslogProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    templateVsys SyslogProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    vsys SyslogProfileLocationVsys
    Located in a specific Virtual System
    panorama SyslogProfileLocationPanorama
    Located in a panorama.
    template SyslogProfileLocationTemplate
    A shared resource located within a specific template
    template_stack SyslogProfileLocationTemplateStack
    Located in a specific template
    template_stack_vsys SyslogProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    template_vsys SyslogProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    vsys SyslogProfileLocationVsys
    Located in a specific Virtual System
    panorama Property Map
    Located in a panorama.
    template Property Map
    A shared resource located within a specific template
    templateStack Property Map
    Located in a specific template
    templateStackVsys Property Map
    Located in a specific template, device and vsys.
    templateVsys Property Map
    Located in a specific template, device and vsys.
    vsys Property Map
    Located in a specific Virtual System

    SyslogProfileLocationTemplate, SyslogProfileLocationTemplateArgs

    Name string
    Specific Panorama template
    PanoramaDevice string
    Specific Panorama device
    Name string
    Specific Panorama template
    PanoramaDevice string
    Specific Panorama device
    name String
    Specific Panorama template
    panoramaDevice String
    Specific Panorama device
    name string
    Specific Panorama template
    panoramaDevice string
    Specific Panorama device
    name str
    Specific Panorama template
    panorama_device str
    Specific Panorama device
    name String
    Specific Panorama template
    panoramaDevice String
    Specific Panorama device

    SyslogProfileLocationTemplateStack, SyslogProfileLocationTemplateStackArgs

    Name string
    The template stack
    PanoramaDevice string
    Specific Panorama device
    Name string
    The template stack
    PanoramaDevice string
    Specific Panorama device
    name String
    The template stack
    panoramaDevice String
    Specific Panorama device
    name string
    The template stack
    panoramaDevice string
    Specific Panorama device
    name str
    The template stack
    panorama_device str
    Specific Panorama device
    name String
    The template stack
    panoramaDevice String
    Specific Panorama device

    SyslogProfileLocationTemplateStackVsys, SyslogProfileLocationTemplateStackVsysArgs

    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    TemplateStack string
    The template stack
    Vsys string
    The vsys.
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    TemplateStack string
    The template stack
    Vsys string
    The vsys.
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    templateStack String
    The template stack
    vsys String
    The vsys.
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    templateStack string
    The template stack
    vsys string
    The vsys.
    ngfw_device str
    The NGFW device
    panorama_device str
    Specific Panorama device
    template_stack str
    The template stack
    vsys str
    The vsys.
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    templateStack String
    The template stack
    vsys String
    The vsys.

    SyslogProfileLocationTemplateVsys, SyslogProfileLocationTemplateVsysArgs

    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Template string
    Specific Panorama template
    Vsys string
    The vsys.
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Template string
    Specific Panorama template
    Vsys string
    The vsys.
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    template String
    Specific Panorama template
    vsys String
    The vsys.
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    template string
    Specific Panorama template
    vsys string
    The vsys.
    ngfw_device str
    The NGFW device
    panorama_device str
    Specific Panorama device
    template str
    Specific Panorama template
    vsys str
    The vsys.
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    template String
    Specific Panorama template
    vsys String
    The vsys.

    SyslogProfileLocationVsys, SyslogProfileLocationVsysArgs

    Name string
    The Virtual System name
    NgfwDevice string
    The NGFW device name
    Name string
    The Virtual System name
    NgfwDevice string
    The NGFW device name
    name String
    The Virtual System name
    ngfwDevice String
    The NGFW device name
    name string
    The Virtual System name
    ngfwDevice string
    The NGFW device name
    name str
    The Virtual System name
    ngfw_device str
    The NGFW device name
    name String
    The Virtual System name
    ngfwDevice String
    The NGFW device name

    SyslogProfileServer, SyslogProfileServerArgs

    Name string
    Facility string
    Format string
    Format of the Syslog message
    Port double
    Port number (Standard Syslog ports UDP:514, SSL:6514)
    Server string
    IP address or FQDN of SYSLOG server to use
    Transport string
    Name string
    Facility string
    Format string
    Format of the Syslog message
    Port float64
    Port number (Standard Syslog ports UDP:514, SSL:6514)
    Server string
    IP address or FQDN of SYSLOG server to use
    Transport string
    name String
    facility String
    format String
    Format of the Syslog message
    port Double
    Port number (Standard Syslog ports UDP:514, SSL:6514)
    server String
    IP address or FQDN of SYSLOG server to use
    transport String
    name string
    facility string
    format string
    Format of the Syslog message
    port number
    Port number (Standard Syslog ports UDP:514, SSL:6514)
    server string
    IP address or FQDN of SYSLOG server to use
    transport string
    name str
    facility str
    format str
    Format of the Syslog message
    port float
    Port number (Standard Syslog ports UDP:514, SSL:6514)
    server str
    IP address or FQDN of SYSLOG server to use
    transport str
    name String
    facility String
    format String
    Format of the Syslog message
    port Number
    Port number (Standard Syslog ports UDP:514, SSL:6514)
    server String
    IP address or FQDN of SYSLOG server to use
    transport String

    Import

    The pulumi import command can be used, for example:

    A syslog profile can be imported by providing the following base64 encoded object as the ID

    {

    location = {

    template = {
    
      name            = "example-template"
    
      panorama_device = "localhost.localdomain"
    
    }
    

    }

    name = “example-syslog-profile”

    }

    $ pulumi import panos:index/syslogProfile:SyslogProfile example $(echo '{"location":{"template":{"name":"example-template","panorama_device":"localhost.localdomain"}},"name":"example-syslog-profile"}' | base64)
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    panos paloaltonetworks/terraform-provider-panos
    License
    Notes
    This Pulumi package is based on the panos Terraform Provider.
    panos logo
    panos 2.0.7 published on Thursday, Nov 27, 2025 by paloaltonetworks
      Meet Neo: Your AI Platform Teammate