1. Packages
  2. Panos Provider
  3. API Docs
  4. IptagLogSettings
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 exampleIptagLogSettings = new panos.IptagLogSettings("example", {
        location: {
            template: {
                name: example.name,
            },
        },
        name: "example-iptag-settings",
        description: "iptag log settings example",
        filter: "(severity eq high)",
        sendToPanorama: true,
        actions: [{
            name: "tag-action",
            type: {
                tagging: {
                    action: "add-tag",
                    target: "source-address",
                    tags: [
                        "tag1",
                        "tag2",
                    ],
                    registration: {
                        localhost: {},
                    },
                },
            },
        }],
    });
    
    import pulumi
    import pulumi_panos as panos
    
    example = panos.Template("example",
        location={
            "panorama": {},
        },
        name="example-template")
    example_iptag_log_settings = panos.IptagLogSettings("example",
        location={
            "template": {
                "name": example.name,
            },
        },
        name="example-iptag-settings",
        description="iptag log settings example",
        filter="(severity eq high)",
        send_to_panorama=True,
        actions=[{
            "name": "tag-action",
            "type": {
                "tagging": {
                    "action": "add-tag",
                    "target": "source-address",
                    "tags": [
                        "tag1",
                        "tag2",
                    ],
                    "registration": {
                        "localhost": {},
                    },
                },
            },
        }])
    
    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.NewIptagLogSettings(ctx, "example", &panos.IptagLogSettingsArgs{
    			Location: &panos.IptagLogSettingsLocationArgs{
    				Template: &panos.IptagLogSettingsLocationTemplateArgs{
    					Name: example.Name,
    				},
    			},
    			Name:           pulumi.String("example-iptag-settings"),
    			Description:    pulumi.String("iptag log settings example"),
    			Filter:         pulumi.String("(severity eq high)"),
    			SendToPanorama: pulumi.Bool(true),
    			Actions: panos.IptagLogSettingsActionArray{
    				&panos.IptagLogSettingsActionArgs{
    					Name: pulumi.String("tag-action"),
    					Type: &panos.IptagLogSettingsActionTypeArgs{
    						Tagging: &panos.IptagLogSettingsActionTypeTaggingArgs{
    							Action: pulumi.String("add-tag"),
    							Target: pulumi.String("source-address"),
    							Tags: pulumi.StringArray{
    								pulumi.String("tag1"),
    								pulumi.String("tag2"),
    							},
    							Registration: &panos.IptagLogSettingsActionTypeTaggingRegistrationArgs{
    								Localhost: &panos.IptagLogSettingsActionTypeTaggingRegistrationLocalhostArgs{},
    							},
    						},
    					},
    				},
    			},
    		})
    		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 exampleIptagLogSettings = new Panos.IptagLogSettings("example", new()
        {
            Location = new Panos.Inputs.IptagLogSettingsLocationArgs
            {
                Template = new Panos.Inputs.IptagLogSettingsLocationTemplateArgs
                {
                    Name = example.Name,
                },
            },
            Name = "example-iptag-settings",
            Description = "iptag log settings example",
            Filter = "(severity eq high)",
            SendToPanorama = true,
            Actions = new[]
            {
                new Panos.Inputs.IptagLogSettingsActionArgs
                {
                    Name = "tag-action",
                    Type = new Panos.Inputs.IptagLogSettingsActionTypeArgs
                    {
                        Tagging = new Panos.Inputs.IptagLogSettingsActionTypeTaggingArgs
                        {
                            Action = "add-tag",
                            Target = "source-address",
                            Tags = new[]
                            {
                                "tag1",
                                "tag2",
                            },
                            Registration = new Panos.Inputs.IptagLogSettingsActionTypeTaggingRegistrationArgs
                            {
                                Localhost = null,
                            },
                        },
                    },
                },
            },
        });
    
    });
    
    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.IptagLogSettings;
    import com.pulumi.panos.IptagLogSettingsArgs;
    import com.pulumi.panos.inputs.IptagLogSettingsLocationArgs;
    import com.pulumi.panos.inputs.IptagLogSettingsLocationTemplateArgs;
    import com.pulumi.panos.inputs.IptagLogSettingsActionArgs;
    import com.pulumi.panos.inputs.IptagLogSettingsActionTypeArgs;
    import com.pulumi.panos.inputs.IptagLogSettingsActionTypeTaggingArgs;
    import com.pulumi.panos.inputs.IptagLogSettingsActionTypeTaggingRegistrationArgs;
    import com.pulumi.panos.inputs.IptagLogSettingsActionTypeTaggingRegistrationLocalhostArgs;
    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 exampleIptagLogSettings = new IptagLogSettings("exampleIptagLogSettings", IptagLogSettingsArgs.builder()
                .location(IptagLogSettingsLocationArgs.builder()
                    .template(IptagLogSettingsLocationTemplateArgs.builder()
                        .name(example.name())
                        .build())
                    .build())
                .name("example-iptag-settings")
                .description("iptag log settings example")
                .filter("(severity eq high)")
                .sendToPanorama(true)
                .actions(IptagLogSettingsActionArgs.builder()
                    .name("tag-action")
                    .type(IptagLogSettingsActionTypeArgs.builder()
                        .tagging(IptagLogSettingsActionTypeTaggingArgs.builder()
                            .action("add-tag")
                            .target("source-address")
                            .tags(                        
                                "tag1",
                                "tag2")
                            .registration(IptagLogSettingsActionTypeTaggingRegistrationArgs.builder()
                                .localhost(IptagLogSettingsActionTypeTaggingRegistrationLocalhostArgs.builder()
                                    .build())
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: panos:Template
        properties:
          location:
            panorama: {}
          name: example-template
      exampleIptagLogSettings:
        type: panos:IptagLogSettings
        name: example
        properties:
          location:
            template:
              name: ${example.name}
          name: example-iptag-settings
          description: iptag log settings example
          filter: (severity eq high)
          sendToPanorama: true
          actions:
            - name: tag-action
              type:
                tagging:
                  action: add-tag
                  target: source-address
                  tags:
                    - tag1
                    - tag2
                  registration:
                    localhost: {}
    

    Create IptagLogSettings Resource

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

    Constructor syntax

    new IptagLogSettings(name: string, args: IptagLogSettingsArgs, opts?: CustomResourceOptions);
    @overload
    def IptagLogSettings(resource_name: str,
                         args: IptagLogSettingsArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def IptagLogSettings(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         location: Optional[IptagLogSettingsLocationArgs] = None,
                         actions: Optional[Sequence[IptagLogSettingsActionArgs]] = None,
                         description: Optional[str] = None,
                         email_profiles: Optional[Sequence[str]] = None,
                         filter: Optional[str] = None,
                         http_profiles: Optional[Sequence[str]] = None,
                         name: Optional[str] = None,
                         quarantine: Optional[bool] = None,
                         send_to_panorama: Optional[bool] = None,
                         snmp_profiles: Optional[Sequence[str]] = None,
                         syslog_profiles: Optional[Sequence[str]] = None)
    func NewIptagLogSettings(ctx *Context, name string, args IptagLogSettingsArgs, opts ...ResourceOption) (*IptagLogSettings, error)
    public IptagLogSettings(string name, IptagLogSettingsArgs args, CustomResourceOptions? opts = null)
    public IptagLogSettings(String name, IptagLogSettingsArgs args)
    public IptagLogSettings(String name, IptagLogSettingsArgs args, CustomResourceOptions options)
    
    type: panos:IptagLogSettings
    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 IptagLogSettingsArgs
    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 IptagLogSettingsArgs
    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 IptagLogSettingsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IptagLogSettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IptagLogSettingsArgs
    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 iptagLogSettingsResource = new Panos.IptagLogSettings("iptagLogSettingsResource", new()
    {
        Location = new Panos.Inputs.IptagLogSettingsLocationArgs
        {
            Panorama = null,
            Template = new Panos.Inputs.IptagLogSettingsLocationTemplateArgs
            {
                Name = "string",
                PanoramaDevice = "string",
            },
            TemplateStack = new Panos.Inputs.IptagLogSettingsLocationTemplateStackArgs
            {
                Name = "string",
                PanoramaDevice = "string",
            },
            TemplateStackVsys = new Panos.Inputs.IptagLogSettingsLocationTemplateStackVsysArgs
            {
                NgfwDevice = "string",
                PanoramaDevice = "string",
                TemplateStack = "string",
                Vsys = "string",
            },
            TemplateVsys = new Panos.Inputs.IptagLogSettingsLocationTemplateVsysArgs
            {
                NgfwDevice = "string",
                PanoramaDevice = "string",
                Template = "string",
                Vsys = "string",
            },
        },
        Actions = new[]
        {
            new Panos.Inputs.IptagLogSettingsActionArgs
            {
                Name = "string",
                Type = new Panos.Inputs.IptagLogSettingsActionTypeArgs
                {
                    Integration = new Panos.Inputs.IptagLogSettingsActionTypeIntegrationArgs
                    {
                        Action = "string",
                    },
                    Tagging = new Panos.Inputs.IptagLogSettingsActionTypeTaggingArgs
                    {
                        Action = "string",
                        Registration = new Panos.Inputs.IptagLogSettingsActionTypeTaggingRegistrationArgs
                        {
                            Localhost = null,
                            Panorama = null,
                            Remote = new Panos.Inputs.IptagLogSettingsActionTypeTaggingRegistrationRemoteArgs
                            {
                                HttpProfile = "string",
                            },
                        },
                        Tags = new[]
                        {
                            "string",
                        },
                        Target = "string",
                        Timeout = 0,
                    },
                },
            },
        },
        Description = "string",
        EmailProfiles = new[]
        {
            "string",
        },
        Filter = "string",
        HttpProfiles = new[]
        {
            "string",
        },
        Name = "string",
        Quarantine = false,
        SendToPanorama = false,
        SnmpProfiles = new[]
        {
            "string",
        },
        SyslogProfiles = new[]
        {
            "string",
        },
    });
    
    example, err := panos.NewIptagLogSettings(ctx, "iptagLogSettingsResource", &panos.IptagLogSettingsArgs{
    	Location: &panos.IptagLogSettingsLocationArgs{
    		Panorama: &panos.IptagLogSettingsLocationPanoramaArgs{},
    		Template: &panos.IptagLogSettingsLocationTemplateArgs{
    			Name:           pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStack: &panos.IptagLogSettingsLocationTemplateStackArgs{
    			Name:           pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStackVsys: &panos.IptagLogSettingsLocationTemplateStackVsysArgs{
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    			TemplateStack:  pulumi.String("string"),
    			Vsys:           pulumi.String("string"),
    		},
    		TemplateVsys: &panos.IptagLogSettingsLocationTemplateVsysArgs{
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    			Template:       pulumi.String("string"),
    			Vsys:           pulumi.String("string"),
    		},
    	},
    	Actions: panos.IptagLogSettingsActionArray{
    		&panos.IptagLogSettingsActionArgs{
    			Name: pulumi.String("string"),
    			Type: &panos.IptagLogSettingsActionTypeArgs{
    				Integration: &panos.IptagLogSettingsActionTypeIntegrationArgs{
    					Action: pulumi.String("string"),
    				},
    				Tagging: &panos.IptagLogSettingsActionTypeTaggingArgs{
    					Action: pulumi.String("string"),
    					Registration: &panos.IptagLogSettingsActionTypeTaggingRegistrationArgs{
    						Localhost: &panos.IptagLogSettingsActionTypeTaggingRegistrationLocalhostArgs{},
    						Panorama:  &panos.IptagLogSettingsActionTypeTaggingRegistrationPanoramaArgs{},
    						Remote: &panos.IptagLogSettingsActionTypeTaggingRegistrationRemoteArgs{
    							HttpProfile: pulumi.String("string"),
    						},
    					},
    					Tags: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					Target:  pulumi.String("string"),
    					Timeout: pulumi.Float64(0),
    				},
    			},
    		},
    	},
    	Description: pulumi.String("string"),
    	EmailProfiles: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Filter: pulumi.String("string"),
    	HttpProfiles: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Name:           pulumi.String("string"),
    	Quarantine:     pulumi.Bool(false),
    	SendToPanorama: pulumi.Bool(false),
    	SnmpProfiles: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	SyslogProfiles: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var iptagLogSettingsResource = new IptagLogSettings("iptagLogSettingsResource", IptagLogSettingsArgs.builder()
        .location(IptagLogSettingsLocationArgs.builder()
            .panorama(IptagLogSettingsLocationPanoramaArgs.builder()
                .build())
            .template(IptagLogSettingsLocationTemplateArgs.builder()
                .name("string")
                .panoramaDevice("string")
                .build())
            .templateStack(IptagLogSettingsLocationTemplateStackArgs.builder()
                .name("string")
                .panoramaDevice("string")
                .build())
            .templateStackVsys(IptagLogSettingsLocationTemplateStackVsysArgs.builder()
                .ngfwDevice("string")
                .panoramaDevice("string")
                .templateStack("string")
                .vsys("string")
                .build())
            .templateVsys(IptagLogSettingsLocationTemplateVsysArgs.builder()
                .ngfwDevice("string")
                .panoramaDevice("string")
                .template("string")
                .vsys("string")
                .build())
            .build())
        .actions(IptagLogSettingsActionArgs.builder()
            .name("string")
            .type(IptagLogSettingsActionTypeArgs.builder()
                .integration(IptagLogSettingsActionTypeIntegrationArgs.builder()
                    .action("string")
                    .build())
                .tagging(IptagLogSettingsActionTypeTaggingArgs.builder()
                    .action("string")
                    .registration(IptagLogSettingsActionTypeTaggingRegistrationArgs.builder()
                        .localhost(IptagLogSettingsActionTypeTaggingRegistrationLocalhostArgs.builder()
                            .build())
                        .panorama(IptagLogSettingsActionTypeTaggingRegistrationPanoramaArgs.builder()
                            .build())
                        .remote(IptagLogSettingsActionTypeTaggingRegistrationRemoteArgs.builder()
                            .httpProfile("string")
                            .build())
                        .build())
                    .tags("string")
                    .target("string")
                    .timeout(0.0)
                    .build())
                .build())
            .build())
        .description("string")
        .emailProfiles("string")
        .filter("string")
        .httpProfiles("string")
        .name("string")
        .quarantine(false)
        .sendToPanorama(false)
        .snmpProfiles("string")
        .syslogProfiles("string")
        .build());
    
    iptag_log_settings_resource = panos.IptagLogSettings("iptagLogSettingsResource",
        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",
            },
        },
        actions=[{
            "name": "string",
            "type": {
                "integration": {
                    "action": "string",
                },
                "tagging": {
                    "action": "string",
                    "registration": {
                        "localhost": {},
                        "panorama": {},
                        "remote": {
                            "http_profile": "string",
                        },
                    },
                    "tags": ["string"],
                    "target": "string",
                    "timeout": 0,
                },
            },
        }],
        description="string",
        email_profiles=["string"],
        filter="string",
        http_profiles=["string"],
        name="string",
        quarantine=False,
        send_to_panorama=False,
        snmp_profiles=["string"],
        syslog_profiles=["string"])
    
    const iptagLogSettingsResource = new panos.IptagLogSettings("iptagLogSettingsResource", {
        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",
            },
        },
        actions: [{
            name: "string",
            type: {
                integration: {
                    action: "string",
                },
                tagging: {
                    action: "string",
                    registration: {
                        localhost: {},
                        panorama: {},
                        remote: {
                            httpProfile: "string",
                        },
                    },
                    tags: ["string"],
                    target: "string",
                    timeout: 0,
                },
            },
        }],
        description: "string",
        emailProfiles: ["string"],
        filter: "string",
        httpProfiles: ["string"],
        name: "string",
        quarantine: false,
        sendToPanorama: false,
        snmpProfiles: ["string"],
        syslogProfiles: ["string"],
    });
    
    type: panos:IptagLogSettings
    properties:
        actions:
            - name: string
              type:
                integration:
                    action: string
                tagging:
                    action: string
                    registration:
                        localhost: {}
                        panorama: {}
                        remote:
                            httpProfile: string
                    tags:
                        - string
                    target: string
                    timeout: 0
        description: string
        emailProfiles:
            - string
        filter: string
        httpProfiles:
            - 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
        name: string
        quarantine: false
        sendToPanorama: false
        snmpProfiles:
            - string
        syslogProfiles:
            - string
    

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

    Location IptagLogSettingsLocation
    The location of this object.
    Actions List<IptagLogSettingsAction>
    Description string
    EmailProfiles List<string>
    Filter string
    HttpProfiles List<string>
    Name string
    Quarantine bool
    SendToPanorama bool
    SnmpProfiles List<string>
    SyslogProfiles List<string>
    location IptagLogSettingsLocation
    The location of this object.
    actions List<IptagLogSettingsAction>
    description String
    emailProfiles List<String>
    filter String
    httpProfiles List<String>
    name String
    quarantine Boolean
    sendToPanorama Boolean
    snmpProfiles List<String>
    syslogProfiles List<String>
    location Property Map
    The location of this object.
    actions List<Property Map>
    description String
    emailProfiles List<String>
    filter String
    httpProfiles List<String>
    name String
    quarantine Boolean
    sendToPanorama Boolean
    snmpProfiles List<String>
    syslogProfiles List<String>

    Outputs

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

    Get an existing IptagLogSettings 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?: IptagLogSettingsState, opts?: CustomResourceOptions): IptagLogSettings
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            actions: Optional[Sequence[IptagLogSettingsActionArgs]] = None,
            description: Optional[str] = None,
            email_profiles: Optional[Sequence[str]] = None,
            filter: Optional[str] = None,
            http_profiles: Optional[Sequence[str]] = None,
            location: Optional[IptagLogSettingsLocationArgs] = None,
            name: Optional[str] = None,
            quarantine: Optional[bool] = None,
            send_to_panorama: Optional[bool] = None,
            snmp_profiles: Optional[Sequence[str]] = None,
            syslog_profiles: Optional[Sequence[str]] = None) -> IptagLogSettings
    func GetIptagLogSettings(ctx *Context, name string, id IDInput, state *IptagLogSettingsState, opts ...ResourceOption) (*IptagLogSettings, error)
    public static IptagLogSettings Get(string name, Input<string> id, IptagLogSettingsState? state, CustomResourceOptions? opts = null)
    public static IptagLogSettings get(String name, Output<String> id, IptagLogSettingsState state, CustomResourceOptions options)
    resources:  _:    type: panos:IptagLogSettings    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:
    Actions List<IptagLogSettingsAction>
    Description string
    EmailProfiles List<string>
    Filter string
    HttpProfiles List<string>
    Location IptagLogSettingsLocation
    The location of this object.
    Name string
    Quarantine bool
    SendToPanorama bool
    SnmpProfiles List<string>
    SyslogProfiles List<string>
    actions List<IptagLogSettingsAction>
    description String
    emailProfiles List<String>
    filter String
    httpProfiles List<String>
    location IptagLogSettingsLocation
    The location of this object.
    name String
    quarantine Boolean
    sendToPanorama Boolean
    snmpProfiles List<String>
    syslogProfiles List<String>
    actions List<Property Map>
    description String
    emailProfiles List<String>
    filter String
    httpProfiles List<String>
    location Property Map
    The location of this object.
    name String
    quarantine Boolean
    sendToPanorama Boolean
    snmpProfiles List<String>
    syslogProfiles List<String>

    Supporting Types

    IptagLogSettingsAction, IptagLogSettingsActionArgs

    IptagLogSettingsActionType, IptagLogSettingsActionTypeArgs

    IptagLogSettingsActionTypeIntegration, IptagLogSettingsActionTypeIntegrationArgs

    Action string
    Action string
    action String
    action string
    action str
    action String

    IptagLogSettingsActionTypeTagging, IptagLogSettingsActionTypeTaggingArgs

    action String
    registration Property Map
    tags List<String>
    target String
    timeout Number
    timeout in minutes

    IptagLogSettingsActionTypeTaggingRegistration, IptagLogSettingsActionTypeTaggingRegistrationArgs

    IptagLogSettingsActionTypeTaggingRegistrationRemote, IptagLogSettingsActionTypeTaggingRegistrationRemoteArgs

    IptagLogSettingsLocation, IptagLogSettingsLocationArgs

    Panorama IptagLogSettingsLocationPanorama
    Located in a panorama.
    Template IptagLogSettingsLocationTemplate
    A shared resource located within a specific template
    TemplateStack IptagLogSettingsLocationTemplateStack
    Located in a specific template
    TemplateStackVsys IptagLogSettingsLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    TemplateVsys IptagLogSettingsLocationTemplateVsys
    Located in a specific template, device and vsys.
    Panorama IptagLogSettingsLocationPanorama
    Located in a panorama.
    Template IptagLogSettingsLocationTemplate
    A shared resource located within a specific template
    TemplateStack IptagLogSettingsLocationTemplateStack
    Located in a specific template
    TemplateStackVsys IptagLogSettingsLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    TemplateVsys IptagLogSettingsLocationTemplateVsys
    Located in a specific template, device and vsys.
    panorama IptagLogSettingsLocationPanorama
    Located in a panorama.
    template IptagLogSettingsLocationTemplate
    A shared resource located within a specific template
    templateStack IptagLogSettingsLocationTemplateStack
    Located in a specific template
    templateStackVsys IptagLogSettingsLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    templateVsys IptagLogSettingsLocationTemplateVsys
    Located in a specific template, device and vsys.
    panorama IptagLogSettingsLocationPanorama
    Located in a panorama.
    template IptagLogSettingsLocationTemplate
    A shared resource located within a specific template
    templateStack IptagLogSettingsLocationTemplateStack
    Located in a specific template
    templateStackVsys IptagLogSettingsLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    templateVsys IptagLogSettingsLocationTemplateVsys
    Located in a specific template, device and vsys.
    panorama IptagLogSettingsLocationPanorama
    Located in a panorama.
    template IptagLogSettingsLocationTemplate
    A shared resource located within a specific template
    template_stack IptagLogSettingsLocationTemplateStack
    Located in a specific template
    template_stack_vsys IptagLogSettingsLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    template_vsys IptagLogSettingsLocationTemplateVsys
    Located in a specific template, device and vsys.
    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.

    IptagLogSettingsLocationTemplate, IptagLogSettingsLocationTemplateArgs

    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

    IptagLogSettingsLocationTemplateStack, IptagLogSettingsLocationTemplateStackArgs

    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

    IptagLogSettingsLocationTemplateStackVsys, IptagLogSettingsLocationTemplateStackVsysArgs

    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.

    IptagLogSettingsLocationTemplateVsys, IptagLogSettingsLocationTemplateVsysArgs

    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.

    Import

    The pulumi import command can be used, for example:

    An iptag log setting can be imported by providing the following base64 encoded object as the ID

    {

    location = {

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

    }

    name = “example-iptag-settings”

    }

    $ pulumi import panos:index/iptagLogSettings:IptagLogSettings example $(echo '{"location":{"template":{"name":"example-template","panorama_device":"localhost.localdomain"}},"name":"example-iptag-settings"}' | 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