1. Packages
  2. Packages
  3. Panos Provider
  4. API Docs
  5. Ospfv3SpfTimerRoutingProfile
Viewing docs for panos 2.0.11
published on Tuesday, Apr 28, 2026 by paloaltonetworks
Viewing docs for panos 2.0.11
published on Tuesday, Apr 28, 2026 by paloaltonetworks

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as panos from "@pulumi/panos";
    
    // Create a template
    const ospfv3Template = new panos.Template("ospfv3_template", {
        location: {
            panorama: {},
        },
        name: "ospfv3-routing-template",
    });
    // OSPFv3 SPF Timer Profile with custom timing values
    const customTimers = new panos.Ospfv3SpfTimerRoutingProfile("custom_timers", {
        location: {
            template: {
                name: ospfv3Template.name,
            },
        },
        name: "custom-spf-timer-profile",
        spfCalculationDelay: 10,
        initialHoldTime: 15,
        maxHoldTime: 30,
        lsaInterval: 8,
    });
    
    import pulumi
    import pulumi_panos as panos
    
    # Create a template
    ospfv3_template = panos.Template("ospfv3_template",
        location={
            "panorama": {},
        },
        name="ospfv3-routing-template")
    # OSPFv3 SPF Timer Profile with custom timing values
    custom_timers = panos.Ospfv3SpfTimerRoutingProfile("custom_timers",
        location={
            "template": {
                "name": ospfv3_template.name,
            },
        },
        name="custom-spf-timer-profile",
        spf_calculation_delay=10,
        initial_hold_time=15,
        max_hold_time=30,
        lsa_interval=8)
    
    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 {
    		// Create a template
    		ospfv3Template, err := panos.NewTemplate(ctx, "ospfv3_template", &panos.TemplateArgs{
    			Location: &panos.TemplateLocationArgs{
    				Panorama: &panos.TemplateLocationPanoramaArgs{},
    			},
    			Name: pulumi.String("ospfv3-routing-template"),
    		})
    		if err != nil {
    			return err
    		}
    		// OSPFv3 SPF Timer Profile with custom timing values
    		_, err = panos.NewOspfv3SpfTimerRoutingProfile(ctx, "custom_timers", &panos.Ospfv3SpfTimerRoutingProfileArgs{
    			Location: &panos.Ospfv3SpfTimerRoutingProfileLocationArgs{
    				Template: &panos.Ospfv3SpfTimerRoutingProfileLocationTemplateArgs{
    					Name: ospfv3Template.Name,
    				},
    			},
    			Name:                pulumi.String("custom-spf-timer-profile"),
    			SpfCalculationDelay: pulumi.Float64(10),
    			InitialHoldTime:     pulumi.Float64(15),
    			MaxHoldTime:         pulumi.Float64(30),
    			LsaInterval:         pulumi.Float64(8),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Panos = Pulumi.Panos;
    
    return await Deployment.RunAsync(() => 
    {
        // Create a template
        var ospfv3Template = new Panos.Template("ospfv3_template", new()
        {
            Location = new Panos.Inputs.TemplateLocationArgs
            {
                Panorama = null,
            },
            Name = "ospfv3-routing-template",
        });
    
        // OSPFv3 SPF Timer Profile with custom timing values
        var customTimers = new Panos.Ospfv3SpfTimerRoutingProfile("custom_timers", new()
        {
            Location = new Panos.Inputs.Ospfv3SpfTimerRoutingProfileLocationArgs
            {
                Template = new Panos.Inputs.Ospfv3SpfTimerRoutingProfileLocationTemplateArgs
                {
                    Name = ospfv3Template.Name,
                },
            },
            Name = "custom-spf-timer-profile",
            SpfCalculationDelay = 10,
            InitialHoldTime = 15,
            MaxHoldTime = 30,
            LsaInterval = 8,
        });
    
    });
    
    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.Ospfv3SpfTimerRoutingProfile;
    import com.pulumi.panos.Ospfv3SpfTimerRoutingProfileArgs;
    import com.pulumi.panos.inputs.Ospfv3SpfTimerRoutingProfileLocationArgs;
    import com.pulumi.panos.inputs.Ospfv3SpfTimerRoutingProfileLocationTemplateArgs;
    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) {
            // Create a template
            var ospfv3Template = new Template("ospfv3Template", TemplateArgs.builder()
                .location(TemplateLocationArgs.builder()
                    .panorama(TemplateLocationPanoramaArgs.builder()
                        .build())
                    .build())
                .name("ospfv3-routing-template")
                .build());
    
            // OSPFv3 SPF Timer Profile with custom timing values
            var customTimers = new Ospfv3SpfTimerRoutingProfile("customTimers", Ospfv3SpfTimerRoutingProfileArgs.builder()
                .location(Ospfv3SpfTimerRoutingProfileLocationArgs.builder()
                    .template(Ospfv3SpfTimerRoutingProfileLocationTemplateArgs.builder()
                        .name(ospfv3Template.name())
                        .build())
                    .build())
                .name("custom-spf-timer-profile")
                .spfCalculationDelay(10.0)
                .initialHoldTime(15.0)
                .maxHoldTime(30.0)
                .lsaInterval(8.0)
                .build());
    
        }
    }
    
    resources:
      # Create a template
      ospfv3Template:
        type: panos:Template
        name: ospfv3_template
        properties:
          location:
            panorama: {}
          name: ospfv3-routing-template
      # OSPFv3 SPF Timer Profile with custom timing values
      customTimers:
        type: panos:Ospfv3SpfTimerRoutingProfile
        name: custom_timers
        properties:
          location:
            template:
              name: ${ospfv3Template.name}
          name: custom-spf-timer-profile
          spfCalculationDelay: 10
          initialHoldTime: 15
          maxHoldTime: 30
          lsaInterval: 8
    

    Create Ospfv3SpfTimerRoutingProfile Resource

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

    Constructor syntax

    new Ospfv3SpfTimerRoutingProfile(name: string, args: Ospfv3SpfTimerRoutingProfileArgs, opts?: CustomResourceOptions);
    @overload
    def Ospfv3SpfTimerRoutingProfile(resource_name: str,
                                     args: Ospfv3SpfTimerRoutingProfileArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def Ospfv3SpfTimerRoutingProfile(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     location: Optional[Ospfv3SpfTimerRoutingProfileLocationArgs] = None,
                                     initial_hold_time: Optional[float] = None,
                                     lsa_interval: Optional[float] = None,
                                     max_hold_time: Optional[float] = None,
                                     name: Optional[str] = None,
                                     spf_calculation_delay: Optional[float] = None)
    func NewOspfv3SpfTimerRoutingProfile(ctx *Context, name string, args Ospfv3SpfTimerRoutingProfileArgs, opts ...ResourceOption) (*Ospfv3SpfTimerRoutingProfile, error)
    public Ospfv3SpfTimerRoutingProfile(string name, Ospfv3SpfTimerRoutingProfileArgs args, CustomResourceOptions? opts = null)
    public Ospfv3SpfTimerRoutingProfile(String name, Ospfv3SpfTimerRoutingProfileArgs args)
    public Ospfv3SpfTimerRoutingProfile(String name, Ospfv3SpfTimerRoutingProfileArgs args, CustomResourceOptions options)
    
    type: panos:Ospfv3SpfTimerRoutingProfile
    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 Ospfv3SpfTimerRoutingProfileArgs
    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 Ospfv3SpfTimerRoutingProfileArgs
    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 Ospfv3SpfTimerRoutingProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args Ospfv3SpfTimerRoutingProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args Ospfv3SpfTimerRoutingProfileArgs
    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 ospfv3SpfTimerRoutingProfileResource = new Panos.Ospfv3SpfTimerRoutingProfile("ospfv3SpfTimerRoutingProfileResource", new()
    {
        Location = new Panos.Inputs.Ospfv3SpfTimerRoutingProfileLocationArgs
        {
            Ngfw = new Panos.Inputs.Ospfv3SpfTimerRoutingProfileLocationNgfwArgs
            {
                NgfwDevice = "string",
            },
            Template = new Panos.Inputs.Ospfv3SpfTimerRoutingProfileLocationTemplateArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
            TemplateStack = new Panos.Inputs.Ospfv3SpfTimerRoutingProfileLocationTemplateStackArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
        },
        InitialHoldTime = 0,
        LsaInterval = 0,
        MaxHoldTime = 0,
        Name = "string",
        SpfCalculationDelay = 0,
    });
    
    example, err := panos.NewOspfv3SpfTimerRoutingProfile(ctx, "ospfv3SpfTimerRoutingProfileResource", &panos.Ospfv3SpfTimerRoutingProfileArgs{
    	Location: &panos.Ospfv3SpfTimerRoutingProfileLocationArgs{
    		Ngfw: &panos.Ospfv3SpfTimerRoutingProfileLocationNgfwArgs{
    			NgfwDevice: pulumi.String("string"),
    		},
    		Template: &panos.Ospfv3SpfTimerRoutingProfileLocationTemplateArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStack: &panos.Ospfv3SpfTimerRoutingProfileLocationTemplateStackArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    	},
    	InitialHoldTime:     pulumi.Float64(0),
    	LsaInterval:         pulumi.Float64(0),
    	MaxHoldTime:         pulumi.Float64(0),
    	Name:                pulumi.String("string"),
    	SpfCalculationDelay: pulumi.Float64(0),
    })
    
    var ospfv3SpfTimerRoutingProfileResource = new Ospfv3SpfTimerRoutingProfile("ospfv3SpfTimerRoutingProfileResource", Ospfv3SpfTimerRoutingProfileArgs.builder()
        .location(Ospfv3SpfTimerRoutingProfileLocationArgs.builder()
            .ngfw(Ospfv3SpfTimerRoutingProfileLocationNgfwArgs.builder()
                .ngfwDevice("string")
                .build())
            .template(Ospfv3SpfTimerRoutingProfileLocationTemplateArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .templateStack(Ospfv3SpfTimerRoutingProfileLocationTemplateStackArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .build())
        .initialHoldTime(0.0)
        .lsaInterval(0.0)
        .maxHoldTime(0.0)
        .name("string")
        .spfCalculationDelay(0.0)
        .build());
    
    ospfv3_spf_timer_routing_profile_resource = panos.Ospfv3SpfTimerRoutingProfile("ospfv3SpfTimerRoutingProfileResource",
        location={
            "ngfw": {
                "ngfw_device": "string",
            },
            "template": {
                "name": "string",
                "ngfw_device": "string",
                "panorama_device": "string",
            },
            "template_stack": {
                "name": "string",
                "ngfw_device": "string",
                "panorama_device": "string",
            },
        },
        initial_hold_time=float(0),
        lsa_interval=float(0),
        max_hold_time=float(0),
        name="string",
        spf_calculation_delay=float(0))
    
    const ospfv3SpfTimerRoutingProfileResource = new panos.Ospfv3SpfTimerRoutingProfile("ospfv3SpfTimerRoutingProfileResource", {
        location: {
            ngfw: {
                ngfwDevice: "string",
            },
            template: {
                name: "string",
                ngfwDevice: "string",
                panoramaDevice: "string",
            },
            templateStack: {
                name: "string",
                ngfwDevice: "string",
                panoramaDevice: "string",
            },
        },
        initialHoldTime: 0,
        lsaInterval: 0,
        maxHoldTime: 0,
        name: "string",
        spfCalculationDelay: 0,
    });
    
    type: panos:Ospfv3SpfTimerRoutingProfile
    properties:
        initialHoldTime: 0
        location:
            ngfw:
                ngfwDevice: string
            template:
                name: string
                ngfwDevice: string
                panoramaDevice: string
            templateStack:
                name: string
                ngfwDevice: string
                panoramaDevice: string
        lsaInterval: 0
        maxHoldTime: 0
        name: string
        spfCalculationDelay: 0
    

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

    Location Ospfv3SpfTimerRoutingProfileLocation
    The location of this object.
    InitialHoldTime double
    Initial hold time (second) between consecutive SPF calculations
    LsaInterval double
    The minimum time in seconds between distinct originations of any particular LSA
    MaxHoldTime double
    Maximum hold time (second)
    Name string
    SpfCalculationDelay double
    Delay in seconds before running the SPF algorithm
    Location Ospfv3SpfTimerRoutingProfileLocationArgs
    The location of this object.
    InitialHoldTime float64
    Initial hold time (second) between consecutive SPF calculations
    LsaInterval float64
    The minimum time in seconds between distinct originations of any particular LSA
    MaxHoldTime float64
    Maximum hold time (second)
    Name string
    SpfCalculationDelay float64
    Delay in seconds before running the SPF algorithm
    location Ospfv3SpfTimerRoutingProfileLocation
    The location of this object.
    initialHoldTime Double
    Initial hold time (second) between consecutive SPF calculations
    lsaInterval Double
    The minimum time in seconds between distinct originations of any particular LSA
    maxHoldTime Double
    Maximum hold time (second)
    name String
    spfCalculationDelay Double
    Delay in seconds before running the SPF algorithm
    location Ospfv3SpfTimerRoutingProfileLocation
    The location of this object.
    initialHoldTime number
    Initial hold time (second) between consecutive SPF calculations
    lsaInterval number
    The minimum time in seconds between distinct originations of any particular LSA
    maxHoldTime number
    Maximum hold time (second)
    name string
    spfCalculationDelay number
    Delay in seconds before running the SPF algorithm
    location Ospfv3SpfTimerRoutingProfileLocationArgs
    The location of this object.
    initial_hold_time float
    Initial hold time (second) between consecutive SPF calculations
    lsa_interval float
    The minimum time in seconds between distinct originations of any particular LSA
    max_hold_time float
    Maximum hold time (second)
    name str
    spf_calculation_delay float
    Delay in seconds before running the SPF algorithm
    location Property Map
    The location of this object.
    initialHoldTime Number
    Initial hold time (second) between consecutive SPF calculations
    lsaInterval Number
    The minimum time in seconds between distinct originations of any particular LSA
    maxHoldTime Number
    Maximum hold time (second)
    name String
    spfCalculationDelay Number
    Delay in seconds before running the SPF algorithm

    Outputs

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

    Get an existing Ospfv3SpfTimerRoutingProfile 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?: Ospfv3SpfTimerRoutingProfileState, opts?: CustomResourceOptions): Ospfv3SpfTimerRoutingProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            initial_hold_time: Optional[float] = None,
            location: Optional[Ospfv3SpfTimerRoutingProfileLocationArgs] = None,
            lsa_interval: Optional[float] = None,
            max_hold_time: Optional[float] = None,
            name: Optional[str] = None,
            spf_calculation_delay: Optional[float] = None) -> Ospfv3SpfTimerRoutingProfile
    func GetOspfv3SpfTimerRoutingProfile(ctx *Context, name string, id IDInput, state *Ospfv3SpfTimerRoutingProfileState, opts ...ResourceOption) (*Ospfv3SpfTimerRoutingProfile, error)
    public static Ospfv3SpfTimerRoutingProfile Get(string name, Input<string> id, Ospfv3SpfTimerRoutingProfileState? state, CustomResourceOptions? opts = null)
    public static Ospfv3SpfTimerRoutingProfile get(String name, Output<String> id, Ospfv3SpfTimerRoutingProfileState state, CustomResourceOptions options)
    resources:  _:    type: panos:Ospfv3SpfTimerRoutingProfile    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:
    InitialHoldTime double
    Initial hold time (second) between consecutive SPF calculations
    Location Ospfv3SpfTimerRoutingProfileLocation
    The location of this object.
    LsaInterval double
    The minimum time in seconds between distinct originations of any particular LSA
    MaxHoldTime double
    Maximum hold time (second)
    Name string
    SpfCalculationDelay double
    Delay in seconds before running the SPF algorithm
    InitialHoldTime float64
    Initial hold time (second) between consecutive SPF calculations
    Location Ospfv3SpfTimerRoutingProfileLocationArgs
    The location of this object.
    LsaInterval float64
    The minimum time in seconds between distinct originations of any particular LSA
    MaxHoldTime float64
    Maximum hold time (second)
    Name string
    SpfCalculationDelay float64
    Delay in seconds before running the SPF algorithm
    initialHoldTime Double
    Initial hold time (second) between consecutive SPF calculations
    location Ospfv3SpfTimerRoutingProfileLocation
    The location of this object.
    lsaInterval Double
    The minimum time in seconds between distinct originations of any particular LSA
    maxHoldTime Double
    Maximum hold time (second)
    name String
    spfCalculationDelay Double
    Delay in seconds before running the SPF algorithm
    initialHoldTime number
    Initial hold time (second) between consecutive SPF calculations
    location Ospfv3SpfTimerRoutingProfileLocation
    The location of this object.
    lsaInterval number
    The minimum time in seconds between distinct originations of any particular LSA
    maxHoldTime number
    Maximum hold time (second)
    name string
    spfCalculationDelay number
    Delay in seconds before running the SPF algorithm
    initial_hold_time float
    Initial hold time (second) between consecutive SPF calculations
    location Ospfv3SpfTimerRoutingProfileLocationArgs
    The location of this object.
    lsa_interval float
    The minimum time in seconds between distinct originations of any particular LSA
    max_hold_time float
    Maximum hold time (second)
    name str
    spf_calculation_delay float
    Delay in seconds before running the SPF algorithm
    initialHoldTime Number
    Initial hold time (second) between consecutive SPF calculations
    location Property Map
    The location of this object.
    lsaInterval Number
    The minimum time in seconds between distinct originations of any particular LSA
    maxHoldTime Number
    Maximum hold time (second)
    name String
    spfCalculationDelay Number
    Delay in seconds before running the SPF algorithm

    Supporting Types

    Ospfv3SpfTimerRoutingProfileLocation, Ospfv3SpfTimerRoutingProfileLocationArgs

    ngfw Property Map
    Located in a specific NGFW device
    template Property Map
    Located in a specific template
    templateStack Property Map
    Located in a specific template stack

    Ospfv3SpfTimerRoutingProfileLocationNgfw, Ospfv3SpfTimerRoutingProfileLocationNgfwArgs

    NgfwDevice string
    The NGFW device
    NgfwDevice string
    The NGFW device
    ngfwDevice String
    The NGFW device
    ngfwDevice string
    The NGFW device
    ngfw_device str
    The NGFW device
    ngfwDevice String
    The NGFW device

    Ospfv3SpfTimerRoutingProfileLocationTemplate, Ospfv3SpfTimerRoutingProfileLocationTemplateArgs

    Name string
    Specific Panorama template
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Name string
    Specific Panorama template
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    name String
    Specific Panorama template
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    name string
    Specific Panorama template
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    name str
    Specific Panorama template
    ngfw_device str
    The NGFW device
    panorama_device str
    Specific Panorama device
    name String
    Specific Panorama template
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device

    Ospfv3SpfTimerRoutingProfileLocationTemplateStack, Ospfv3SpfTimerRoutingProfileLocationTemplateStackArgs

    Name string
    Specific Panorama template stack
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    Name string
    Specific Panorama template stack
    NgfwDevice string
    The NGFW device
    PanoramaDevice string
    Specific Panorama device
    name String
    Specific Panorama template stack
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device
    name string
    Specific Panorama template stack
    ngfwDevice string
    The NGFW device
    panoramaDevice string
    Specific Panorama device
    name str
    Specific Panorama template stack
    ngfw_device str
    The NGFW device
    panorama_device str
    Specific Panorama device
    name String
    Specific Panorama template stack
    ngfwDevice String
    The NGFW device
    panoramaDevice String
    Specific Panorama device

    Package Details

    Repository
    panos paloaltonetworks/terraform-provider-panos
    License
    Notes
    This Pulumi package is based on the panos Terraform Provider.
    Viewing docs for panos 2.0.11
    published on Tuesday, Apr 28, 2026 by paloaltonetworks
      Try Pulumi Cloud free. Your team will thank you.