1. Packages
  2. Packages
  3. Panos Provider
  4. API Docs
  5. Ospfv3AuthRoutingProfile
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 Authentication Profile using AH with SHA-256
    const ahSha256 = new panos.Ospfv3AuthRoutingProfile("ah_sha256", {
        location: {
            template: {
                name: ospfv3Template.name,
            },
        },
        name: "ospfv3-ah-sha256-profile",
        spi: "00000101",
        ah: {
            sha256: {
                key: "a1b2c3d4-e5f6a7b8-c9d0e1f2-a3b4c5d6-e7f8a9b0-c1d2e3f4-a5b6c7d8-e9f0a1b2",
            },
        },
    });
    // OSPFv3 Authentication Profile using ESP with authentication and encryption
    const espFull = new panos.Ospfv3AuthRoutingProfile("esp_full", {
        location: {
            template: {
                name: ospfv3Template.name,
            },
        },
        name: "ospfv3-esp-secure-profile",
        spi: "00000201",
        esp: {
            authentication: {
                sha512: {
                    key: "1a2b3c4d-5e6f7a8b-9c0d1e2f-3a4b5c6d-7e8f9a0b-1c2d3e4f-5a6b7c8d-9e0f1a2b-3c4d5e6f-7a8b9c0d-1e2f3a4b-5c6d7e8f-9a0b1c2d-3e4f5a6b-7c8d9e0f-1a2b3c4d",
                },
            },
            encryption: {
                algorithm: "aes-256-cbc",
                key: "f1e2d3c4-b5a69788-9a0b1c2d-3e4f5a6b-7c8d9e0f-1a2b3c4d-5e6f7a8b-9c0d1e2f",
            },
        },
    });
    // OSPFv3 Authentication Profile using ESP with encryption only (no authentication)
    const espEncryptOnly = new panos.Ospfv3AuthRoutingProfile("esp_encrypt_only", {
        location: {
            template: {
                name: ospfv3Template.name,
            },
        },
        name: "ospfv3-esp-encrypt-only",
        spi: "00000301",
        esp: {
            authentication: {
                none: {},
            },
            encryption: {
                algorithm: "aes-128-cbc",
                key: "a1b2c3d4-e5f6a7b8-c9d0e1f2-a3b4c5d6",
            },
        },
    });
    
    import pulumi
    import pulumi_panos as panos
    
    # Create a template
    ospfv3_template = panos.Template("ospfv3_template",
        location={
            "panorama": {},
        },
        name="ospfv3-routing-template")
    # OSPFv3 Authentication Profile using AH with SHA-256
    ah_sha256 = panos.Ospfv3AuthRoutingProfile("ah_sha256",
        location={
            "template": {
                "name": ospfv3_template.name,
            },
        },
        name="ospfv3-ah-sha256-profile",
        spi="00000101",
        ah={
            "sha256": {
                "key": "a1b2c3d4-e5f6a7b8-c9d0e1f2-a3b4c5d6-e7f8a9b0-c1d2e3f4-a5b6c7d8-e9f0a1b2",
            },
        })
    # OSPFv3 Authentication Profile using ESP with authentication and encryption
    esp_full = panos.Ospfv3AuthRoutingProfile("esp_full",
        location={
            "template": {
                "name": ospfv3_template.name,
            },
        },
        name="ospfv3-esp-secure-profile",
        spi="00000201",
        esp={
            "authentication": {
                "sha512": {
                    "key": "1a2b3c4d-5e6f7a8b-9c0d1e2f-3a4b5c6d-7e8f9a0b-1c2d3e4f-5a6b7c8d-9e0f1a2b-3c4d5e6f-7a8b9c0d-1e2f3a4b-5c6d7e8f-9a0b1c2d-3e4f5a6b-7c8d9e0f-1a2b3c4d",
                },
            },
            "encryption": {
                "algorithm": "aes-256-cbc",
                "key": "f1e2d3c4-b5a69788-9a0b1c2d-3e4f5a6b-7c8d9e0f-1a2b3c4d-5e6f7a8b-9c0d1e2f",
            },
        })
    # OSPFv3 Authentication Profile using ESP with encryption only (no authentication)
    esp_encrypt_only = panos.Ospfv3AuthRoutingProfile("esp_encrypt_only",
        location={
            "template": {
                "name": ospfv3_template.name,
            },
        },
        name="ospfv3-esp-encrypt-only",
        spi="00000301",
        esp={
            "authentication": {
                "none": {},
            },
            "encryption": {
                "algorithm": "aes-128-cbc",
                "key": "a1b2c3d4-e5f6a7b8-c9d0e1f2-a3b4c5d6",
            },
        })
    
    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 Authentication Profile using AH with SHA-256
    		_, err = panos.NewOspfv3AuthRoutingProfile(ctx, "ah_sha256", &panos.Ospfv3AuthRoutingProfileArgs{
    			Location: &panos.Ospfv3AuthRoutingProfileLocationArgs{
    				Template: &panos.Ospfv3AuthRoutingProfileLocationTemplateArgs{
    					Name: ospfv3Template.Name,
    				},
    			},
    			Name: pulumi.String("ospfv3-ah-sha256-profile"),
    			Spi:  pulumi.String("00000101"),
    			Ah: &panos.Ospfv3AuthRoutingProfileAhArgs{
    				Sha256: &panos.Ospfv3AuthRoutingProfileAhSha256Args{
    					Key: pulumi.String("a1b2c3d4-e5f6a7b8-c9d0e1f2-a3b4c5d6-e7f8a9b0-c1d2e3f4-a5b6c7d8-e9f0a1b2"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// OSPFv3 Authentication Profile using ESP with authentication and encryption
    		_, err = panos.NewOspfv3AuthRoutingProfile(ctx, "esp_full", &panos.Ospfv3AuthRoutingProfileArgs{
    			Location: &panos.Ospfv3AuthRoutingProfileLocationArgs{
    				Template: &panos.Ospfv3AuthRoutingProfileLocationTemplateArgs{
    					Name: ospfv3Template.Name,
    				},
    			},
    			Name: pulumi.String("ospfv3-esp-secure-profile"),
    			Spi:  pulumi.String("00000201"),
    			Esp: &panos.Ospfv3AuthRoutingProfileEspArgs{
    				Authentication: &panos.Ospfv3AuthRoutingProfileEspAuthenticationArgs{
    					Sha512: &panos.Ospfv3AuthRoutingProfileEspAuthenticationSha512Args{
    						Key: pulumi.String("1a2b3c4d-5e6f7a8b-9c0d1e2f-3a4b5c6d-7e8f9a0b-1c2d3e4f-5a6b7c8d-9e0f1a2b-3c4d5e6f-7a8b9c0d-1e2f3a4b-5c6d7e8f-9a0b1c2d-3e4f5a6b-7c8d9e0f-1a2b3c4d"),
    					},
    				},
    				Encryption: &panos.Ospfv3AuthRoutingProfileEspEncryptionArgs{
    					Algorithm: pulumi.String("aes-256-cbc"),
    					Key:       pulumi.String("f1e2d3c4-b5a69788-9a0b1c2d-3e4f5a6b-7c8d9e0f-1a2b3c4d-5e6f7a8b-9c0d1e2f"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// OSPFv3 Authentication Profile using ESP with encryption only (no authentication)
    		_, err = panos.NewOspfv3AuthRoutingProfile(ctx, "esp_encrypt_only", &panos.Ospfv3AuthRoutingProfileArgs{
    			Location: &panos.Ospfv3AuthRoutingProfileLocationArgs{
    				Template: &panos.Ospfv3AuthRoutingProfileLocationTemplateArgs{
    					Name: ospfv3Template.Name,
    				},
    			},
    			Name: pulumi.String("ospfv3-esp-encrypt-only"),
    			Spi:  pulumi.String("00000301"),
    			Esp: &panos.Ospfv3AuthRoutingProfileEspArgs{
    				Authentication: &panos.Ospfv3AuthRoutingProfileEspAuthenticationArgs{
    					None: &panos.Ospfv3AuthRoutingProfileEspAuthenticationNoneArgs{},
    				},
    				Encryption: &panos.Ospfv3AuthRoutingProfileEspEncryptionArgs{
    					Algorithm: pulumi.String("aes-128-cbc"),
    					Key:       pulumi.String("a1b2c3d4-e5f6a7b8-c9d0e1f2-a3b4c5d6"),
    				},
    			},
    		})
    		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 Authentication Profile using AH with SHA-256
        var ahSha256 = new Panos.Ospfv3AuthRoutingProfile("ah_sha256", new()
        {
            Location = new Panos.Inputs.Ospfv3AuthRoutingProfileLocationArgs
            {
                Template = new Panos.Inputs.Ospfv3AuthRoutingProfileLocationTemplateArgs
                {
                    Name = ospfv3Template.Name,
                },
            },
            Name = "ospfv3-ah-sha256-profile",
            Spi = "00000101",
            Ah = new Panos.Inputs.Ospfv3AuthRoutingProfileAhArgs
            {
                Sha256 = new Panos.Inputs.Ospfv3AuthRoutingProfileAhSha256Args
                {
                    Key = "a1b2c3d4-e5f6a7b8-c9d0e1f2-a3b4c5d6-e7f8a9b0-c1d2e3f4-a5b6c7d8-e9f0a1b2",
                },
            },
        });
    
        // OSPFv3 Authentication Profile using ESP with authentication and encryption
        var espFull = new Panos.Ospfv3AuthRoutingProfile("esp_full", new()
        {
            Location = new Panos.Inputs.Ospfv3AuthRoutingProfileLocationArgs
            {
                Template = new Panos.Inputs.Ospfv3AuthRoutingProfileLocationTemplateArgs
                {
                    Name = ospfv3Template.Name,
                },
            },
            Name = "ospfv3-esp-secure-profile",
            Spi = "00000201",
            Esp = new Panos.Inputs.Ospfv3AuthRoutingProfileEspArgs
            {
                Authentication = new Panos.Inputs.Ospfv3AuthRoutingProfileEspAuthenticationArgs
                {
                    Sha512 = new Panos.Inputs.Ospfv3AuthRoutingProfileEspAuthenticationSha512Args
                    {
                        Key = "1a2b3c4d-5e6f7a8b-9c0d1e2f-3a4b5c6d-7e8f9a0b-1c2d3e4f-5a6b7c8d-9e0f1a2b-3c4d5e6f-7a8b9c0d-1e2f3a4b-5c6d7e8f-9a0b1c2d-3e4f5a6b-7c8d9e0f-1a2b3c4d",
                    },
                },
                Encryption = new Panos.Inputs.Ospfv3AuthRoutingProfileEspEncryptionArgs
                {
                    Algorithm = "aes-256-cbc",
                    Key = "f1e2d3c4-b5a69788-9a0b1c2d-3e4f5a6b-7c8d9e0f-1a2b3c4d-5e6f7a8b-9c0d1e2f",
                },
            },
        });
    
        // OSPFv3 Authentication Profile using ESP with encryption only (no authentication)
        var espEncryptOnly = new Panos.Ospfv3AuthRoutingProfile("esp_encrypt_only", new()
        {
            Location = new Panos.Inputs.Ospfv3AuthRoutingProfileLocationArgs
            {
                Template = new Panos.Inputs.Ospfv3AuthRoutingProfileLocationTemplateArgs
                {
                    Name = ospfv3Template.Name,
                },
            },
            Name = "ospfv3-esp-encrypt-only",
            Spi = "00000301",
            Esp = new Panos.Inputs.Ospfv3AuthRoutingProfileEspArgs
            {
                Authentication = new Panos.Inputs.Ospfv3AuthRoutingProfileEspAuthenticationArgs
                {
                    None = null,
                },
                Encryption = new Panos.Inputs.Ospfv3AuthRoutingProfileEspEncryptionArgs
                {
                    Algorithm = "aes-128-cbc",
                    Key = "a1b2c3d4-e5f6a7b8-c9d0e1f2-a3b4c5d6",
                },
            },
        });
    
    });
    
    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.Ospfv3AuthRoutingProfile;
    import com.pulumi.panos.Ospfv3AuthRoutingProfileArgs;
    import com.pulumi.panos.inputs.Ospfv3AuthRoutingProfileLocationArgs;
    import com.pulumi.panos.inputs.Ospfv3AuthRoutingProfileLocationTemplateArgs;
    import com.pulumi.panos.inputs.Ospfv3AuthRoutingProfileAhArgs;
    import com.pulumi.panos.inputs.Ospfv3AuthRoutingProfileAhSha256Args;
    import com.pulumi.panos.inputs.Ospfv3AuthRoutingProfileEspArgs;
    import com.pulumi.panos.inputs.Ospfv3AuthRoutingProfileEspAuthenticationArgs;
    import com.pulumi.panos.inputs.Ospfv3AuthRoutingProfileEspAuthenticationSha512Args;
    import com.pulumi.panos.inputs.Ospfv3AuthRoutingProfileEspEncryptionArgs;
    import com.pulumi.panos.inputs.Ospfv3AuthRoutingProfileEspAuthenticationNoneArgs;
    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 Authentication Profile using AH with SHA-256
            var ahSha256 = new Ospfv3AuthRoutingProfile("ahSha256", Ospfv3AuthRoutingProfileArgs.builder()
                .location(Ospfv3AuthRoutingProfileLocationArgs.builder()
                    .template(Ospfv3AuthRoutingProfileLocationTemplateArgs.builder()
                        .name(ospfv3Template.name())
                        .build())
                    .build())
                .name("ospfv3-ah-sha256-profile")
                .spi("00000101")
                .ah(Ospfv3AuthRoutingProfileAhArgs.builder()
                    .sha256(Ospfv3AuthRoutingProfileAhSha256Args.builder()
                        .key("a1b2c3d4-e5f6a7b8-c9d0e1f2-a3b4c5d6-e7f8a9b0-c1d2e3f4-a5b6c7d8-e9f0a1b2")
                        .build())
                    .build())
                .build());
    
            // OSPFv3 Authentication Profile using ESP with authentication and encryption
            var espFull = new Ospfv3AuthRoutingProfile("espFull", Ospfv3AuthRoutingProfileArgs.builder()
                .location(Ospfv3AuthRoutingProfileLocationArgs.builder()
                    .template(Ospfv3AuthRoutingProfileLocationTemplateArgs.builder()
                        .name(ospfv3Template.name())
                        .build())
                    .build())
                .name("ospfv3-esp-secure-profile")
                .spi("00000201")
                .esp(Ospfv3AuthRoutingProfileEspArgs.builder()
                    .authentication(Ospfv3AuthRoutingProfileEspAuthenticationArgs.builder()
                        .sha512(Ospfv3AuthRoutingProfileEspAuthenticationSha512Args.builder()
                            .key("1a2b3c4d-5e6f7a8b-9c0d1e2f-3a4b5c6d-7e8f9a0b-1c2d3e4f-5a6b7c8d-9e0f1a2b-3c4d5e6f-7a8b9c0d-1e2f3a4b-5c6d7e8f-9a0b1c2d-3e4f5a6b-7c8d9e0f-1a2b3c4d")
                            .build())
                        .build())
                    .encryption(Ospfv3AuthRoutingProfileEspEncryptionArgs.builder()
                        .algorithm("aes-256-cbc")
                        .key("f1e2d3c4-b5a69788-9a0b1c2d-3e4f5a6b-7c8d9e0f-1a2b3c4d-5e6f7a8b-9c0d1e2f")
                        .build())
                    .build())
                .build());
    
            // OSPFv3 Authentication Profile using ESP with encryption only (no authentication)
            var espEncryptOnly = new Ospfv3AuthRoutingProfile("espEncryptOnly", Ospfv3AuthRoutingProfileArgs.builder()
                .location(Ospfv3AuthRoutingProfileLocationArgs.builder()
                    .template(Ospfv3AuthRoutingProfileLocationTemplateArgs.builder()
                        .name(ospfv3Template.name())
                        .build())
                    .build())
                .name("ospfv3-esp-encrypt-only")
                .spi("00000301")
                .esp(Ospfv3AuthRoutingProfileEspArgs.builder()
                    .authentication(Ospfv3AuthRoutingProfileEspAuthenticationArgs.builder()
                        .none(Ospfv3AuthRoutingProfileEspAuthenticationNoneArgs.builder()
                            .build())
                        .build())
                    .encryption(Ospfv3AuthRoutingProfileEspEncryptionArgs.builder()
                        .algorithm("aes-128-cbc")
                        .key("a1b2c3d4-e5f6a7b8-c9d0e1f2-a3b4c5d6")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      # Create a template
      ospfv3Template:
        type: panos:Template
        name: ospfv3_template
        properties:
          location:
            panorama: {}
          name: ospfv3-routing-template
      # OSPFv3 Authentication Profile using AH with SHA-256
      ahSha256:
        type: panos:Ospfv3AuthRoutingProfile
        name: ah_sha256
        properties:
          location:
            template:
              name: ${ospfv3Template.name}
          name: ospfv3-ah-sha256-profile
          spi: '00000101'
          ah:
            sha256:
              key: a1b2c3d4-e5f6a7b8-c9d0e1f2-a3b4c5d6-e7f8a9b0-c1d2e3f4-a5b6c7d8-e9f0a1b2
      # OSPFv3 Authentication Profile using ESP with authentication and encryption
      espFull:
        type: panos:Ospfv3AuthRoutingProfile
        name: esp_full
        properties:
          location:
            template:
              name: ${ospfv3Template.name}
          name: ospfv3-esp-secure-profile
          spi: '00000201'
          esp:
            authentication:
              sha512:
                key: 1a2b3c4d-5e6f7a8b-9c0d1e2f-3a4b5c6d-7e8f9a0b-1c2d3e4f-5a6b7c8d-9e0f1a2b-3c4d5e6f-7a8b9c0d-1e2f3a4b-5c6d7e8f-9a0b1c2d-3e4f5a6b-7c8d9e0f-1a2b3c4d
            encryption:
              algorithm: aes-256-cbc
              key: f1e2d3c4-b5a69788-9a0b1c2d-3e4f5a6b-7c8d9e0f-1a2b3c4d-5e6f7a8b-9c0d1e2f
      # OSPFv3 Authentication Profile using ESP with encryption only (no authentication)
      espEncryptOnly:
        type: panos:Ospfv3AuthRoutingProfile
        name: esp_encrypt_only
        properties:
          location:
            template:
              name: ${ospfv3Template.name}
          name: ospfv3-esp-encrypt-only
          spi: '00000301'
          esp:
            authentication:
              none: {}
            encryption:
              algorithm: aes-128-cbc
              key: a1b2c3d4-e5f6a7b8-c9d0e1f2-a3b4c5d6
    

    Create Ospfv3AuthRoutingProfile Resource

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

    Constructor syntax

    new Ospfv3AuthRoutingProfile(name: string, args: Ospfv3AuthRoutingProfileArgs, opts?: CustomResourceOptions);
    @overload
    def Ospfv3AuthRoutingProfile(resource_name: str,
                                 args: Ospfv3AuthRoutingProfileArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Ospfv3AuthRoutingProfile(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 location: Optional[Ospfv3AuthRoutingProfileLocationArgs] = None,
                                 ah: Optional[Ospfv3AuthRoutingProfileAhArgs] = None,
                                 esp: Optional[Ospfv3AuthRoutingProfileEspArgs] = None,
                                 name: Optional[str] = None,
                                 spi: Optional[str] = None)
    func NewOspfv3AuthRoutingProfile(ctx *Context, name string, args Ospfv3AuthRoutingProfileArgs, opts ...ResourceOption) (*Ospfv3AuthRoutingProfile, error)
    public Ospfv3AuthRoutingProfile(string name, Ospfv3AuthRoutingProfileArgs args, CustomResourceOptions? opts = null)
    public Ospfv3AuthRoutingProfile(String name, Ospfv3AuthRoutingProfileArgs args)
    public Ospfv3AuthRoutingProfile(String name, Ospfv3AuthRoutingProfileArgs args, CustomResourceOptions options)
    
    type: panos:Ospfv3AuthRoutingProfile
    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 Ospfv3AuthRoutingProfileArgs
    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 Ospfv3AuthRoutingProfileArgs
    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 Ospfv3AuthRoutingProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args Ospfv3AuthRoutingProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args Ospfv3AuthRoutingProfileArgs
    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 ospfv3AuthRoutingProfileResource = new Panos.Ospfv3AuthRoutingProfile("ospfv3AuthRoutingProfileResource", new()
    {
        Location = new Panos.Inputs.Ospfv3AuthRoutingProfileLocationArgs
        {
            Ngfw = new Panos.Inputs.Ospfv3AuthRoutingProfileLocationNgfwArgs
            {
                NgfwDevice = "string",
            },
            Template = new Panos.Inputs.Ospfv3AuthRoutingProfileLocationTemplateArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
            TemplateStack = new Panos.Inputs.Ospfv3AuthRoutingProfileLocationTemplateStackArgs
            {
                Name = "string",
                NgfwDevice = "string",
                PanoramaDevice = "string",
            },
        },
        Ah = new Panos.Inputs.Ospfv3AuthRoutingProfileAhArgs
        {
            Md5 = new Panos.Inputs.Ospfv3AuthRoutingProfileAhMd5Args
            {
                Key = "string",
            },
            Sha1 = new Panos.Inputs.Ospfv3AuthRoutingProfileAhSha1Args
            {
                Key = "string",
            },
            Sha256 = new Panos.Inputs.Ospfv3AuthRoutingProfileAhSha256Args
            {
                Key = "string",
            },
            Sha384 = new Panos.Inputs.Ospfv3AuthRoutingProfileAhSha384Args
            {
                Key = "string",
            },
            Sha512 = new Panos.Inputs.Ospfv3AuthRoutingProfileAhSha512Args
            {
                Key = "string",
            },
        },
        Esp = new Panos.Inputs.Ospfv3AuthRoutingProfileEspArgs
        {
            Authentication = new Panos.Inputs.Ospfv3AuthRoutingProfileEspAuthenticationArgs
            {
                Md5 = new Panos.Inputs.Ospfv3AuthRoutingProfileEspAuthenticationMd5Args
                {
                    Key = "string",
                },
                None = null,
                Sha1 = new Panos.Inputs.Ospfv3AuthRoutingProfileEspAuthenticationSha1Args
                {
                    Key = "string",
                },
                Sha256 = new Panos.Inputs.Ospfv3AuthRoutingProfileEspAuthenticationSha256Args
                {
                    Key = "string",
                },
                Sha384 = new Panos.Inputs.Ospfv3AuthRoutingProfileEspAuthenticationSha384Args
                {
                    Key = "string",
                },
                Sha512 = new Panos.Inputs.Ospfv3AuthRoutingProfileEspAuthenticationSha512Args
                {
                    Key = "string",
                },
            },
            Encryption = new Panos.Inputs.Ospfv3AuthRoutingProfileEspEncryptionArgs
            {
                Algorithm = "string",
                Key = "string",
            },
        },
        Name = "string",
        Spi = "string",
    });
    
    example, err := panos.NewOspfv3AuthRoutingProfile(ctx, "ospfv3AuthRoutingProfileResource", &panos.Ospfv3AuthRoutingProfileArgs{
    	Location: &panos.Ospfv3AuthRoutingProfileLocationArgs{
    		Ngfw: &panos.Ospfv3AuthRoutingProfileLocationNgfwArgs{
    			NgfwDevice: pulumi.String("string"),
    		},
    		Template: &panos.Ospfv3AuthRoutingProfileLocationTemplateArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStack: &panos.Ospfv3AuthRoutingProfileLocationTemplateStackArgs{
    			Name:           pulumi.String("string"),
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    	},
    	Ah: &panos.Ospfv3AuthRoutingProfileAhArgs{
    		Md5: &panos.Ospfv3AuthRoutingProfileAhMd5Args{
    			Key: pulumi.String("string"),
    		},
    		Sha1: &panos.Ospfv3AuthRoutingProfileAhSha1Args{
    			Key: pulumi.String("string"),
    		},
    		Sha256: &panos.Ospfv3AuthRoutingProfileAhSha256Args{
    			Key: pulumi.String("string"),
    		},
    		Sha384: &panos.Ospfv3AuthRoutingProfileAhSha384Args{
    			Key: pulumi.String("string"),
    		},
    		Sha512: &panos.Ospfv3AuthRoutingProfileAhSha512Args{
    			Key: pulumi.String("string"),
    		},
    	},
    	Esp: &panos.Ospfv3AuthRoutingProfileEspArgs{
    		Authentication: &panos.Ospfv3AuthRoutingProfileEspAuthenticationArgs{
    			Md5: &panos.Ospfv3AuthRoutingProfileEspAuthenticationMd5Args{
    				Key: pulumi.String("string"),
    			},
    			None: &panos.Ospfv3AuthRoutingProfileEspAuthenticationNoneArgs{},
    			Sha1: &panos.Ospfv3AuthRoutingProfileEspAuthenticationSha1Args{
    				Key: pulumi.String("string"),
    			},
    			Sha256: &panos.Ospfv3AuthRoutingProfileEspAuthenticationSha256Args{
    				Key: pulumi.String("string"),
    			},
    			Sha384: &panos.Ospfv3AuthRoutingProfileEspAuthenticationSha384Args{
    				Key: pulumi.String("string"),
    			},
    			Sha512: &panos.Ospfv3AuthRoutingProfileEspAuthenticationSha512Args{
    				Key: pulumi.String("string"),
    			},
    		},
    		Encryption: &panos.Ospfv3AuthRoutingProfileEspEncryptionArgs{
    			Algorithm: pulumi.String("string"),
    			Key:       pulumi.String("string"),
    		},
    	},
    	Name: pulumi.String("string"),
    	Spi:  pulumi.String("string"),
    })
    
    var ospfv3AuthRoutingProfileResource = new Ospfv3AuthRoutingProfile("ospfv3AuthRoutingProfileResource", Ospfv3AuthRoutingProfileArgs.builder()
        .location(Ospfv3AuthRoutingProfileLocationArgs.builder()
            .ngfw(Ospfv3AuthRoutingProfileLocationNgfwArgs.builder()
                .ngfwDevice("string")
                .build())
            .template(Ospfv3AuthRoutingProfileLocationTemplateArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .templateStack(Ospfv3AuthRoutingProfileLocationTemplateStackArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .panoramaDevice("string")
                .build())
            .build())
        .ah(Ospfv3AuthRoutingProfileAhArgs.builder()
            .md5(Ospfv3AuthRoutingProfileAhMd5Args.builder()
                .key("string")
                .build())
            .sha1(Ospfv3AuthRoutingProfileAhSha1Args.builder()
                .key("string")
                .build())
            .sha256(Ospfv3AuthRoutingProfileAhSha256Args.builder()
                .key("string")
                .build())
            .sha384(Ospfv3AuthRoutingProfileAhSha384Args.builder()
                .key("string")
                .build())
            .sha512(Ospfv3AuthRoutingProfileAhSha512Args.builder()
                .key("string")
                .build())
            .build())
        .esp(Ospfv3AuthRoutingProfileEspArgs.builder()
            .authentication(Ospfv3AuthRoutingProfileEspAuthenticationArgs.builder()
                .md5(Ospfv3AuthRoutingProfileEspAuthenticationMd5Args.builder()
                    .key("string")
                    .build())
                .none(Ospfv3AuthRoutingProfileEspAuthenticationNoneArgs.builder()
                    .build())
                .sha1(Ospfv3AuthRoutingProfileEspAuthenticationSha1Args.builder()
                    .key("string")
                    .build())
                .sha256(Ospfv3AuthRoutingProfileEspAuthenticationSha256Args.builder()
                    .key("string")
                    .build())
                .sha384(Ospfv3AuthRoutingProfileEspAuthenticationSha384Args.builder()
                    .key("string")
                    .build())
                .sha512(Ospfv3AuthRoutingProfileEspAuthenticationSha512Args.builder()
                    .key("string")
                    .build())
                .build())
            .encryption(Ospfv3AuthRoutingProfileEspEncryptionArgs.builder()
                .algorithm("string")
                .key("string")
                .build())
            .build())
        .name("string")
        .spi("string")
        .build());
    
    ospfv3_auth_routing_profile_resource = panos.Ospfv3AuthRoutingProfile("ospfv3AuthRoutingProfileResource",
        location={
            "ngfw": {
                "ngfw_device": "string",
            },
            "template": {
                "name": "string",
                "ngfw_device": "string",
                "panorama_device": "string",
            },
            "template_stack": {
                "name": "string",
                "ngfw_device": "string",
                "panorama_device": "string",
            },
        },
        ah={
            "md5": {
                "key": "string",
            },
            "sha1": {
                "key": "string",
            },
            "sha256": {
                "key": "string",
            },
            "sha384": {
                "key": "string",
            },
            "sha512": {
                "key": "string",
            },
        },
        esp={
            "authentication": {
                "md5": {
                    "key": "string",
                },
                "none": {},
                "sha1": {
                    "key": "string",
                },
                "sha256": {
                    "key": "string",
                },
                "sha384": {
                    "key": "string",
                },
                "sha512": {
                    "key": "string",
                },
            },
            "encryption": {
                "algorithm": "string",
                "key": "string",
            },
        },
        name="string",
        spi="string")
    
    const ospfv3AuthRoutingProfileResource = new panos.Ospfv3AuthRoutingProfile("ospfv3AuthRoutingProfileResource", {
        location: {
            ngfw: {
                ngfwDevice: "string",
            },
            template: {
                name: "string",
                ngfwDevice: "string",
                panoramaDevice: "string",
            },
            templateStack: {
                name: "string",
                ngfwDevice: "string",
                panoramaDevice: "string",
            },
        },
        ah: {
            md5: {
                key: "string",
            },
            sha1: {
                key: "string",
            },
            sha256: {
                key: "string",
            },
            sha384: {
                key: "string",
            },
            sha512: {
                key: "string",
            },
        },
        esp: {
            authentication: {
                md5: {
                    key: "string",
                },
                none: {},
                sha1: {
                    key: "string",
                },
                sha256: {
                    key: "string",
                },
                sha384: {
                    key: "string",
                },
                sha512: {
                    key: "string",
                },
            },
            encryption: {
                algorithm: "string",
                key: "string",
            },
        },
        name: "string",
        spi: "string",
    });
    
    type: panos:Ospfv3AuthRoutingProfile
    properties:
        ah:
            md5:
                key: string
            sha1:
                key: string
            sha256:
                key: string
            sha384:
                key: string
            sha512:
                key: string
        esp:
            authentication:
                md5:
                    key: string
                none: {}
                sha1:
                    key: string
                sha256:
                    key: string
                sha384:
                    key: string
                sha512:
                    key: string
            encryption:
                algorithm: string
                key: string
        location:
            ngfw:
                ngfwDevice: string
            template:
                name: string
                ngfwDevice: string
                panoramaDevice: string
            templateStack:
                name: string
                ngfwDevice: string
                panoramaDevice: string
        name: string
        spi: string
    

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

    Location Ospfv3AuthRoutingProfileLocation
    The location of this object.
    Ah Ospfv3AuthRoutingProfileAh
    Esp Ospfv3AuthRoutingProfileEsp
    Name string
    Spi string
    SPI for both inbound and outbound SA, hex format xxxxxxxx.
    Location Ospfv3AuthRoutingProfileLocationArgs
    The location of this object.
    Ah Ospfv3AuthRoutingProfileAhArgs
    Esp Ospfv3AuthRoutingProfileEspArgs
    Name string
    Spi string
    SPI for both inbound and outbound SA, hex format xxxxxxxx.
    location Ospfv3AuthRoutingProfileLocation
    The location of this object.
    ah Ospfv3AuthRoutingProfileAh
    esp Ospfv3AuthRoutingProfileEsp
    name String
    spi String
    SPI for both inbound and outbound SA, hex format xxxxxxxx.
    location Ospfv3AuthRoutingProfileLocation
    The location of this object.
    ah Ospfv3AuthRoutingProfileAh
    esp Ospfv3AuthRoutingProfileEsp
    name string
    spi string
    SPI for both inbound and outbound SA, hex format xxxxxxxx.
    location Ospfv3AuthRoutingProfileLocationArgs
    The location of this object.
    ah Ospfv3AuthRoutingProfileAhArgs
    esp Ospfv3AuthRoutingProfileEspArgs
    name str
    spi str
    SPI for both inbound and outbound SA, hex format xxxxxxxx.
    location Property Map
    The location of this object.
    ah Property Map
    esp Property Map
    name String
    spi String
    SPI for both inbound and outbound SA, hex format xxxxxxxx.

    Outputs

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

    Get an existing Ospfv3AuthRoutingProfile 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?: Ospfv3AuthRoutingProfileState, opts?: CustomResourceOptions): Ospfv3AuthRoutingProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ah: Optional[Ospfv3AuthRoutingProfileAhArgs] = None,
            esp: Optional[Ospfv3AuthRoutingProfileEspArgs] = None,
            location: Optional[Ospfv3AuthRoutingProfileLocationArgs] = None,
            name: Optional[str] = None,
            spi: Optional[str] = None) -> Ospfv3AuthRoutingProfile
    func GetOspfv3AuthRoutingProfile(ctx *Context, name string, id IDInput, state *Ospfv3AuthRoutingProfileState, opts ...ResourceOption) (*Ospfv3AuthRoutingProfile, error)
    public static Ospfv3AuthRoutingProfile Get(string name, Input<string> id, Ospfv3AuthRoutingProfileState? state, CustomResourceOptions? opts = null)
    public static Ospfv3AuthRoutingProfile get(String name, Output<String> id, Ospfv3AuthRoutingProfileState state, CustomResourceOptions options)
    resources:  _:    type: panos:Ospfv3AuthRoutingProfile    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:
    Ah Ospfv3AuthRoutingProfileAh
    Esp Ospfv3AuthRoutingProfileEsp
    Location Ospfv3AuthRoutingProfileLocation
    The location of this object.
    Name string
    Spi string
    SPI for both inbound and outbound SA, hex format xxxxxxxx.
    Ah Ospfv3AuthRoutingProfileAhArgs
    Esp Ospfv3AuthRoutingProfileEspArgs
    Location Ospfv3AuthRoutingProfileLocationArgs
    The location of this object.
    Name string
    Spi string
    SPI for both inbound and outbound SA, hex format xxxxxxxx.
    ah Ospfv3AuthRoutingProfileAh
    esp Ospfv3AuthRoutingProfileEsp
    location Ospfv3AuthRoutingProfileLocation
    The location of this object.
    name String
    spi String
    SPI for both inbound and outbound SA, hex format xxxxxxxx.
    ah Ospfv3AuthRoutingProfileAh
    esp Ospfv3AuthRoutingProfileEsp
    location Ospfv3AuthRoutingProfileLocation
    The location of this object.
    name string
    spi string
    SPI for both inbound and outbound SA, hex format xxxxxxxx.
    ah Ospfv3AuthRoutingProfileAhArgs
    esp Ospfv3AuthRoutingProfileEspArgs
    location Ospfv3AuthRoutingProfileLocationArgs
    The location of this object.
    name str
    spi str
    SPI for both inbound and outbound SA, hex format xxxxxxxx.
    ah Property Map
    esp Property Map
    location Property Map
    The location of this object.
    name String
    spi String
    SPI for both inbound and outbound SA, hex format xxxxxxxx.

    Supporting Types

    Ospfv3AuthRoutingProfileAh, Ospfv3AuthRoutingProfileAhArgs

    Ospfv3AuthRoutingProfileAhMd5, Ospfv3AuthRoutingProfileAhMd5Args

    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 4 sections
    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 4 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 4 sections
    key string
    hex format xxxxxxxx[-xxxxxxxx]... total 4 sections
    key str
    hex format xxxxxxxx[-xxxxxxxx]... total 4 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 4 sections

    Ospfv3AuthRoutingProfileAhSha1, Ospfv3AuthRoutingProfileAhSha1Args

    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 5 sections
    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 5 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 5 sections
    key string
    hex format xxxxxxxx[-xxxxxxxx]... total 5 sections
    key str
    hex format xxxxxxxx[-xxxxxxxx]... total 5 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 5 sections

    Ospfv3AuthRoutingProfileAhSha256, Ospfv3AuthRoutingProfileAhSha256Args

    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 8 sections
    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 8 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 8 sections
    key string
    hex format xxxxxxxx[-xxxxxxxx]... total 8 sections
    key str
    hex format xxxxxxxx[-xxxxxxxx]... total 8 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 8 sections

    Ospfv3AuthRoutingProfileAhSha384, Ospfv3AuthRoutingProfileAhSha384Args

    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 12 sections
    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 12 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 12 sections
    key string
    hex format xxxxxxxx[-xxxxxxxx]... total 12 sections
    key str
    hex format xxxxxxxx[-xxxxxxxx]... total 12 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 12 sections

    Ospfv3AuthRoutingProfileAhSha512, Ospfv3AuthRoutingProfileAhSha512Args

    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 16 sections
    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 16 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 16 sections
    key string
    hex format xxxxxxxx[-xxxxxxxx]... total 16 sections
    key str
    hex format xxxxxxxx[-xxxxxxxx]... total 16 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 16 sections

    Ospfv3AuthRoutingProfileEsp, Ospfv3AuthRoutingProfileEspArgs

    Ospfv3AuthRoutingProfileEspAuthentication, Ospfv3AuthRoutingProfileEspAuthenticationArgs

    Ospfv3AuthRoutingProfileEspAuthenticationMd5, Ospfv3AuthRoutingProfileEspAuthenticationMd5Args

    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 4 sections
    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 4 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 4 sections
    key string
    hex format xxxxxxxx[-xxxxxxxx]... total 4 sections
    key str
    hex format xxxxxxxx[-xxxxxxxx]... total 4 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 4 sections

    Ospfv3AuthRoutingProfileEspAuthenticationSha1, Ospfv3AuthRoutingProfileEspAuthenticationSha1Args

    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 5 sections
    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 5 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 5 sections
    key string
    hex format xxxxxxxx[-xxxxxxxx]... total 5 sections
    key str
    hex format xxxxxxxx[-xxxxxxxx]... total 5 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 5 sections

    Ospfv3AuthRoutingProfileEspAuthenticationSha256, Ospfv3AuthRoutingProfileEspAuthenticationSha256Args

    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 8 sections
    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 8 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 8 sections
    key string
    hex format xxxxxxxx[-xxxxxxxx]... total 8 sections
    key str
    hex format xxxxxxxx[-xxxxxxxx]... total 8 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 8 sections

    Ospfv3AuthRoutingProfileEspAuthenticationSha384, Ospfv3AuthRoutingProfileEspAuthenticationSha384Args

    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 12 sections
    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 12 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 12 sections
    key string
    hex format xxxxxxxx[-xxxxxxxx]... total 12 sections
    key str
    hex format xxxxxxxx[-xxxxxxxx]... total 12 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 12 sections

    Ospfv3AuthRoutingProfileEspAuthenticationSha512, Ospfv3AuthRoutingProfileEspAuthenticationSha512Args

    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 16 sections
    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total 16 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 16 sections
    key string
    hex format xxxxxxxx[-xxxxxxxx]... total 16 sections
    key str
    hex format xxxxxxxx[-xxxxxxxx]... total 16 sections
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total 16 sections

    Ospfv3AuthRoutingProfileEspEncryption, Ospfv3AuthRoutingProfileEspEncryptionArgs

    Algorithm string
    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total number of sections: 3des: 6, aes128: 4, aes192: 6, aes256: 8
    Algorithm string
    Key string
    hex format xxxxxxxx[-xxxxxxxx]... total number of sections: 3des: 6, aes128: 4, aes192: 6, aes256: 8
    algorithm String
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total number of sections: 3des: 6, aes128: 4, aes192: 6, aes256: 8
    algorithm string
    key string
    hex format xxxxxxxx[-xxxxxxxx]... total number of sections: 3des: 6, aes128: 4, aes192: 6, aes256: 8
    algorithm str
    key str
    hex format xxxxxxxx[-xxxxxxxx]... total number of sections: 3des: 6, aes128: 4, aes192: 6, aes256: 8
    algorithm String
    key String
    hex format xxxxxxxx[-xxxxxxxx]... total number of sections: 3des: 6, aes128: 4, aes192: 6, aes256: 8

    Ospfv3AuthRoutingProfileLocation, Ospfv3AuthRoutingProfileLocationArgs

    Ngfw Ospfv3AuthRoutingProfileLocationNgfw
    Located in a specific NGFW device
    Template Ospfv3AuthRoutingProfileLocationTemplate
    Located in a specific template
    TemplateStack Ospfv3AuthRoutingProfileLocationTemplateStack
    Located in a specific template stack
    Ngfw Ospfv3AuthRoutingProfileLocationNgfw
    Located in a specific NGFW device
    Template Ospfv3AuthRoutingProfileLocationTemplate
    Located in a specific template
    TemplateStack Ospfv3AuthRoutingProfileLocationTemplateStack
    Located in a specific template stack
    ngfw Ospfv3AuthRoutingProfileLocationNgfw
    Located in a specific NGFW device
    template Ospfv3AuthRoutingProfileLocationTemplate
    Located in a specific template
    templateStack Ospfv3AuthRoutingProfileLocationTemplateStack
    Located in a specific template stack
    ngfw Ospfv3AuthRoutingProfileLocationNgfw
    Located in a specific NGFW device
    template Ospfv3AuthRoutingProfileLocationTemplate
    Located in a specific template
    templateStack Ospfv3AuthRoutingProfileLocationTemplateStack
    Located in a specific template stack
    ngfw Ospfv3AuthRoutingProfileLocationNgfw
    Located in a specific NGFW device
    template Ospfv3AuthRoutingProfileLocationTemplate
    Located in a specific template
    template_stack Ospfv3AuthRoutingProfileLocationTemplateStack
    Located in a specific template stack
    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

    Ospfv3AuthRoutingProfileLocationNgfw, Ospfv3AuthRoutingProfileLocationNgfwArgs

    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

    Ospfv3AuthRoutingProfileLocationTemplate, Ospfv3AuthRoutingProfileLocationTemplateArgs

    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

    Ospfv3AuthRoutingProfileLocationTemplateStack, Ospfv3AuthRoutingProfileLocationTemplateStackArgs

    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

    Import

    An OSPFv3 auth routing profile can be imported by providing the following base64 encoded object as the ID

    Import from an NGFW device

    {

    location = {

    ngfw = {
    
      ngfw_device = "localhost.localdomain"
    
    }
    

    }

    name = “ospfv3-ah-sha256-profile”

    }

    $ pulumi import panos:index/ospfv3AuthRoutingProfile:Ospfv3AuthRoutingProfile example $(echo '{"location":{"ngfw":{"ngfw_device":"localhost.localdomain"}},"name":"ospfv3-ah-sha256-profile"}' | base64)
    

    Import from a Panorama template

    {

    location = {

    template = {
    
      name            = "my-template"
    
      panorama_device = "localhost.localdomain"
    
      ngfw_device     = "localhost.localdomain"
    
    }
    

    }

    name = “ospfv3-esp-secure-profile”

    }

    $ pulumi import panos:index/ospfv3AuthRoutingProfile:Ospfv3AuthRoutingProfile example $(echo '{"location":{"template":{"name":"my-template","panorama_device":"localhost.localdomain","ngfw_device":"localhost.localdomain"}},"name":"ospfv3-esp-secure-profile"}' | base64)
    

    Import from a Panorama template stack

    {

    location = {

    template_stack = {
    
      name            = "my-template-stack"
    
      panorama_device = "localhost.localdomain"
    
      ngfw_device     = "localhost.localdomain"
    
    }
    

    }

    name = “ospfv3-esp-encrypt-only”

    }

    $ pulumi import panos:index/ospfv3AuthRoutingProfile:Ospfv3AuthRoutingProfile example $(echo '{"location":{"template_stack":{"name":"my-template-stack","panorama_device":"localhost.localdomain","ngfw_device":"localhost.localdomain"}},"name":"ospfv3-esp-encrypt-only"}' | 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.
    Viewing docs for panos 2.0.11
    published on Tuesday, Apr 28, 2026 by paloaltonetworks
      Try Pulumi Cloud free. Your team will thank you.