1. Packages
  2. Panos Provider
  3. API Docs
  4. TacacsPlusProfile
Viewing docs for panos 2.0.10
published on Thursday, Apr 9, 2026 by paloaltonetworks
Viewing docs for panos 2.0.10
published on Thursday, Apr 9, 2026 by paloaltonetworks

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as panos from "@pulumi/panos";
    
    const exampleTemplate = new panos.Template("example", {
        location: {
            panorama: {},
        },
        name: "example-template",
    });
    const example = new panos.TacacsPlusProfile("example", {
        location: {
            template: {
                name: exampleTemplate.name,
            },
        },
        name: "example-tacacs-profile",
        protocol: "CHAP",
        servers: [
            {
                name: "tacacs-server-1",
                address: "192.168.1.10",
                secret: "shared-secret-1",
                port: 49,
            },
            {
                name: "tacacs-server-2",
                address: "192.168.1.11",
                secret: "shared-secret-2",
                port: 49,
            },
        ],
        timeout: 5,
        useSingleConnection: true,
    });
    
    import pulumi
    import pulumi_panos as panos
    
    example_template = panos.Template("example",
        location={
            "panorama": {},
        },
        name="example-template")
    example = panos.TacacsPlusProfile("example",
        location={
            "template": {
                "name": example_template.name,
            },
        },
        name="example-tacacs-profile",
        protocol="CHAP",
        servers=[
            {
                "name": "tacacs-server-1",
                "address": "192.168.1.10",
                "secret": "shared-secret-1",
                "port": 49,
            },
            {
                "name": "tacacs-server-2",
                "address": "192.168.1.11",
                "secret": "shared-secret-2",
                "port": 49,
            },
        ],
        timeout=5,
        use_single_connection=True)
    
    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 {
    		exampleTemplate, 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.NewTacacsPlusProfile(ctx, "example", &panos.TacacsPlusProfileArgs{
    			Location: &panos.TacacsPlusProfileLocationArgs{
    				Template: &panos.TacacsPlusProfileLocationTemplateArgs{
    					Name: exampleTemplate.Name,
    				},
    			},
    			Name:     pulumi.String("example-tacacs-profile"),
    			Protocol: pulumi.String("CHAP"),
    			Servers: panos.TacacsPlusProfileServerArray{
    				&panos.TacacsPlusProfileServerArgs{
    					Name:    pulumi.String("tacacs-server-1"),
    					Address: pulumi.String("192.168.1.10"),
    					Secret:  pulumi.String("shared-secret-1"),
    					Port:    pulumi.Float64(49),
    				},
    				&panos.TacacsPlusProfileServerArgs{
    					Name:    pulumi.String("tacacs-server-2"),
    					Address: pulumi.String("192.168.1.11"),
    					Secret:  pulumi.String("shared-secret-2"),
    					Port:    pulumi.Float64(49),
    				},
    			},
    			Timeout:             pulumi.Float64(5),
    			UseSingleConnection: pulumi.Bool(true),
    		})
    		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 exampleTemplate = new Panos.Template("example", new()
        {
            Location = new Panos.Inputs.TemplateLocationArgs
            {
                Panorama = null,
            },
            Name = "example-template",
        });
    
        var example = new Panos.TacacsPlusProfile("example", new()
        {
            Location = new Panos.Inputs.TacacsPlusProfileLocationArgs
            {
                Template = new Panos.Inputs.TacacsPlusProfileLocationTemplateArgs
                {
                    Name = exampleTemplate.Name,
                },
            },
            Name = "example-tacacs-profile",
            Protocol = "CHAP",
            Servers = new[]
            {
                new Panos.Inputs.TacacsPlusProfileServerArgs
                {
                    Name = "tacacs-server-1",
                    Address = "192.168.1.10",
                    Secret = "shared-secret-1",
                    Port = 49,
                },
                new Panos.Inputs.TacacsPlusProfileServerArgs
                {
                    Name = "tacacs-server-2",
                    Address = "192.168.1.11",
                    Secret = "shared-secret-2",
                    Port = 49,
                },
            },
            Timeout = 5,
            UseSingleConnection = true,
        });
    
    });
    
    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.TacacsPlusProfile;
    import com.pulumi.panos.TacacsPlusProfileArgs;
    import com.pulumi.panos.inputs.TacacsPlusProfileLocationArgs;
    import com.pulumi.panos.inputs.TacacsPlusProfileLocationTemplateArgs;
    import com.pulumi.panos.inputs.TacacsPlusProfileServerArgs;
    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 exampleTemplate = new Template("exampleTemplate", TemplateArgs.builder()
                .location(TemplateLocationArgs.builder()
                    .panorama(TemplateLocationPanoramaArgs.builder()
                        .build())
                    .build())
                .name("example-template")
                .build());
    
            var example = new TacacsPlusProfile("example", TacacsPlusProfileArgs.builder()
                .location(TacacsPlusProfileLocationArgs.builder()
                    .template(TacacsPlusProfileLocationTemplateArgs.builder()
                        .name(exampleTemplate.name())
                        .build())
                    .build())
                .name("example-tacacs-profile")
                .protocol("CHAP")
                .servers(            
                    TacacsPlusProfileServerArgs.builder()
                        .name("tacacs-server-1")
                        .address("192.168.1.10")
                        .secret("shared-secret-1")
                        .port(49.0)
                        .build(),
                    TacacsPlusProfileServerArgs.builder()
                        .name("tacacs-server-2")
                        .address("192.168.1.11")
                        .secret("shared-secret-2")
                        .port(49.0)
                        .build())
                .timeout(5.0)
                .useSingleConnection(true)
                .build());
    
        }
    }
    
    resources:
      example:
        type: panos:TacacsPlusProfile
        properties:
          location:
            template:
              name: ${exampleTemplate.name}
          name: example-tacacs-profile
          protocol: CHAP
          servers:
            - name: tacacs-server-1
              address: 192.168.1.10
              secret: shared-secret-1
              port: 49
            - name: tacacs-server-2
              address: 192.168.1.11
              secret: shared-secret-2
              port: 49
          timeout: 5
          useSingleConnection: true
      exampleTemplate:
        type: panos:Template
        name: example
        properties:
          location:
            panorama: {}
          name: example-template
    

    Create TacacsPlusProfile Resource

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

    Constructor syntax

    new TacacsPlusProfile(name: string, args: TacacsPlusProfileArgs, opts?: CustomResourceOptions);
    @overload
    def TacacsPlusProfile(resource_name: str,
                          args: TacacsPlusProfileArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def TacacsPlusProfile(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          location: Optional[TacacsPlusProfileLocationArgs] = None,
                          name: Optional[str] = None,
                          protocol: Optional[str] = None,
                          servers: Optional[Sequence[TacacsPlusProfileServerArgs]] = None,
                          timeout: Optional[float] = None,
                          use_single_connection: Optional[bool] = None)
    func NewTacacsPlusProfile(ctx *Context, name string, args TacacsPlusProfileArgs, opts ...ResourceOption) (*TacacsPlusProfile, error)
    public TacacsPlusProfile(string name, TacacsPlusProfileArgs args, CustomResourceOptions? opts = null)
    public TacacsPlusProfile(String name, TacacsPlusProfileArgs args)
    public TacacsPlusProfile(String name, TacacsPlusProfileArgs args, CustomResourceOptions options)
    
    type: panos:TacacsPlusProfile
    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 TacacsPlusProfileArgs
    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 TacacsPlusProfileArgs
    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 TacacsPlusProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TacacsPlusProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TacacsPlusProfileArgs
    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 tacacsPlusProfileResource = new Panos.Index.TacacsPlusProfile("tacacsPlusProfileResource", new()
    {
        Location = new Panos.Inputs.TacacsPlusProfileLocationArgs
        {
            Panorama = null,
            Shared = null,
            Template = new Panos.Inputs.TacacsPlusProfileLocationTemplateArgs
            {
                Name = "string",
                PanoramaDevice = "string",
            },
            TemplateStack = new Panos.Inputs.TacacsPlusProfileLocationTemplateStackArgs
            {
                Name = "string",
                PanoramaDevice = "string",
            },
            TemplateStackVsys = new Panos.Inputs.TacacsPlusProfileLocationTemplateStackVsysArgs
            {
                NgfwDevice = "string",
                PanoramaDevice = "string",
                TemplateStack = "string",
                Vsys = "string",
            },
            TemplateVsys = new Panos.Inputs.TacacsPlusProfileLocationTemplateVsysArgs
            {
                NgfwDevice = "string",
                PanoramaDevice = "string",
                Template = "string",
                Vsys = "string",
            },
            Vsys = new Panos.Inputs.TacacsPlusProfileLocationVsysArgs
            {
                Name = "string",
                NgfwDevice = "string",
            },
        },
        Name = "string",
        Protocol = "string",
        Servers = new[]
        {
            new Panos.Inputs.TacacsPlusProfileServerArgs
            {
                Name = "string",
                Address = "string",
                Port = 0,
                Secret = "string",
            },
        },
        Timeout = 0,
        UseSingleConnection = false,
    });
    
    example, err := panos.NewTacacsPlusProfile(ctx, "tacacsPlusProfileResource", &panos.TacacsPlusProfileArgs{
    	Location: &panos.TacacsPlusProfileLocationArgs{
    		Panorama: &panos.TacacsPlusProfileLocationPanoramaArgs{},
    		Shared:   &panos.TacacsPlusProfileLocationSharedArgs{},
    		Template: &panos.TacacsPlusProfileLocationTemplateArgs{
    			Name:           pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStack: &panos.TacacsPlusProfileLocationTemplateStackArgs{
    			Name:           pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    		},
    		TemplateStackVsys: &panos.TacacsPlusProfileLocationTemplateStackVsysArgs{
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    			TemplateStack:  pulumi.String("string"),
    			Vsys:           pulumi.String("string"),
    		},
    		TemplateVsys: &panos.TacacsPlusProfileLocationTemplateVsysArgs{
    			NgfwDevice:     pulumi.String("string"),
    			PanoramaDevice: pulumi.String("string"),
    			Template:       pulumi.String("string"),
    			Vsys:           pulumi.String("string"),
    		},
    		Vsys: &panos.TacacsPlusProfileLocationVsysArgs{
    			Name:       pulumi.String("string"),
    			NgfwDevice: pulumi.String("string"),
    		},
    	},
    	Name:     pulumi.String("string"),
    	Protocol: pulumi.String("string"),
    	Servers: panos.TacacsPlusProfileServerArray{
    		&panos.TacacsPlusProfileServerArgs{
    			Name:    pulumi.String("string"),
    			Address: pulumi.String("string"),
    			Port:    pulumi.Float64(0),
    			Secret:  pulumi.String("string"),
    		},
    	},
    	Timeout:             pulumi.Float64(0),
    	UseSingleConnection: pulumi.Bool(false),
    })
    
    var tacacsPlusProfileResource = new TacacsPlusProfile("tacacsPlusProfileResource", TacacsPlusProfileArgs.builder()
        .location(TacacsPlusProfileLocationArgs.builder()
            .panorama(TacacsPlusProfileLocationPanoramaArgs.builder()
                .build())
            .shared(TacacsPlusProfileLocationSharedArgs.builder()
                .build())
            .template(TacacsPlusProfileLocationTemplateArgs.builder()
                .name("string")
                .panoramaDevice("string")
                .build())
            .templateStack(TacacsPlusProfileLocationTemplateStackArgs.builder()
                .name("string")
                .panoramaDevice("string")
                .build())
            .templateStackVsys(TacacsPlusProfileLocationTemplateStackVsysArgs.builder()
                .ngfwDevice("string")
                .panoramaDevice("string")
                .templateStack("string")
                .vsys("string")
                .build())
            .templateVsys(TacacsPlusProfileLocationTemplateVsysArgs.builder()
                .ngfwDevice("string")
                .panoramaDevice("string")
                .template("string")
                .vsys("string")
                .build())
            .vsys(TacacsPlusProfileLocationVsysArgs.builder()
                .name("string")
                .ngfwDevice("string")
                .build())
            .build())
        .name("string")
        .protocol("string")
        .servers(TacacsPlusProfileServerArgs.builder()
            .name("string")
            .address("string")
            .port(0.0)
            .secret("string")
            .build())
        .timeout(0.0)
        .useSingleConnection(false)
        .build());
    
    tacacs_plus_profile_resource = panos.TacacsPlusProfile("tacacsPlusProfileResource",
        location={
            "panorama": {},
            "shared": {},
            "template": {
                "name": "string",
                "panorama_device": "string",
            },
            "template_stack": {
                "name": "string",
                "panorama_device": "string",
            },
            "template_stack_vsys": {
                "ngfw_device": "string",
                "panorama_device": "string",
                "template_stack": "string",
                "vsys": "string",
            },
            "template_vsys": {
                "ngfw_device": "string",
                "panorama_device": "string",
                "template": "string",
                "vsys": "string",
            },
            "vsys": {
                "name": "string",
                "ngfw_device": "string",
            },
        },
        name="string",
        protocol="string",
        servers=[{
            "name": "string",
            "address": "string",
            "port": 0,
            "secret": "string",
        }],
        timeout=0,
        use_single_connection=False)
    
    const tacacsPlusProfileResource = new panos.TacacsPlusProfile("tacacsPlusProfileResource", {
        location: {
            panorama: {},
            shared: {},
            template: {
                name: "string",
                panoramaDevice: "string",
            },
            templateStack: {
                name: "string",
                panoramaDevice: "string",
            },
            templateStackVsys: {
                ngfwDevice: "string",
                panoramaDevice: "string",
                templateStack: "string",
                vsys: "string",
            },
            templateVsys: {
                ngfwDevice: "string",
                panoramaDevice: "string",
                template: "string",
                vsys: "string",
            },
            vsys: {
                name: "string",
                ngfwDevice: "string",
            },
        },
        name: "string",
        protocol: "string",
        servers: [{
            name: "string",
            address: "string",
            port: 0,
            secret: "string",
        }],
        timeout: 0,
        useSingleConnection: false,
    });
    
    type: panos:TacacsPlusProfile
    properties:
        location:
            panorama: {}
            shared: {}
            template:
                name: string
                panoramaDevice: string
            templateStack:
                name: string
                panoramaDevice: string
            templateStackVsys:
                ngfwDevice: string
                panoramaDevice: string
                templateStack: string
                vsys: string
            templateVsys:
                ngfwDevice: string
                panoramaDevice: string
                template: string
                vsys: string
            vsys:
                name: string
                ngfwDevice: string
        name: string
        protocol: string
        servers:
            - address: string
              name: string
              port: 0
              secret: string
        timeout: 0
        useSingleConnection: false
    

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

    Location TacacsPlusProfileLocation
    The location of this object.
    Name string
    Protocol string
    Select authentication protocol
    Servers List<TacacsPlusProfileServer>
    Timeout double
    number of seconds to wait for when performing authentication
    UseSingleConnection bool
    Use single connection for all authentication
    Location TacacsPlusProfileLocationArgs
    The location of this object.
    Name string
    Protocol string
    Select authentication protocol
    Servers []TacacsPlusProfileServerArgs
    Timeout float64
    number of seconds to wait for when performing authentication
    UseSingleConnection bool
    Use single connection for all authentication
    location TacacsPlusProfileLocation
    The location of this object.
    name String
    protocol String
    Select authentication protocol
    servers List<TacacsPlusProfileServer>
    timeout Double
    number of seconds to wait for when performing authentication
    useSingleConnection Boolean
    Use single connection for all authentication
    location TacacsPlusProfileLocation
    The location of this object.
    name string
    protocol string
    Select authentication protocol
    servers TacacsPlusProfileServer[]
    timeout number
    number of seconds to wait for when performing authentication
    useSingleConnection boolean
    Use single connection for all authentication
    location TacacsPlusProfileLocationArgs
    The location of this object.
    name str
    protocol str
    Select authentication protocol
    servers Sequence[TacacsPlusProfileServerArgs]
    timeout float
    number of seconds to wait for when performing authentication
    use_single_connection bool
    Use single connection for all authentication
    location Property Map
    The location of this object.
    name String
    protocol String
    Select authentication protocol
    servers List<Property Map>
    timeout Number
    number of seconds to wait for when performing authentication
    useSingleConnection Boolean
    Use single connection for all authentication

    Outputs

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

    Get an existing TacacsPlusProfile 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?: TacacsPlusProfileState, opts?: CustomResourceOptions): TacacsPlusProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            location: Optional[TacacsPlusProfileLocationArgs] = None,
            name: Optional[str] = None,
            protocol: Optional[str] = None,
            servers: Optional[Sequence[TacacsPlusProfileServerArgs]] = None,
            timeout: Optional[float] = None,
            use_single_connection: Optional[bool] = None) -> TacacsPlusProfile
    func GetTacacsPlusProfile(ctx *Context, name string, id IDInput, state *TacacsPlusProfileState, opts ...ResourceOption) (*TacacsPlusProfile, error)
    public static TacacsPlusProfile Get(string name, Input<string> id, TacacsPlusProfileState? state, CustomResourceOptions? opts = null)
    public static TacacsPlusProfile get(String name, Output<String> id, TacacsPlusProfileState state, CustomResourceOptions options)
    resources:  _:    type: panos:TacacsPlusProfile    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:
    Location TacacsPlusProfileLocation
    The location of this object.
    Name string
    Protocol string
    Select authentication protocol
    Servers List<TacacsPlusProfileServer>
    Timeout double
    number of seconds to wait for when performing authentication
    UseSingleConnection bool
    Use single connection for all authentication
    Location TacacsPlusProfileLocationArgs
    The location of this object.
    Name string
    Protocol string
    Select authentication protocol
    Servers []TacacsPlusProfileServerArgs
    Timeout float64
    number of seconds to wait for when performing authentication
    UseSingleConnection bool
    Use single connection for all authentication
    location TacacsPlusProfileLocation
    The location of this object.
    name String
    protocol String
    Select authentication protocol
    servers List<TacacsPlusProfileServer>
    timeout Double
    number of seconds to wait for when performing authentication
    useSingleConnection Boolean
    Use single connection for all authentication
    location TacacsPlusProfileLocation
    The location of this object.
    name string
    protocol string
    Select authentication protocol
    servers TacacsPlusProfileServer[]
    timeout number
    number of seconds to wait for when performing authentication
    useSingleConnection boolean
    Use single connection for all authentication
    location TacacsPlusProfileLocationArgs
    The location of this object.
    name str
    protocol str
    Select authentication protocol
    servers Sequence[TacacsPlusProfileServerArgs]
    timeout float
    number of seconds to wait for when performing authentication
    use_single_connection bool
    Use single connection for all authentication
    location Property Map
    The location of this object.
    name String
    protocol String
    Select authentication protocol
    servers List<Property Map>
    timeout Number
    number of seconds to wait for when performing authentication
    useSingleConnection Boolean
    Use single connection for all authentication

    Supporting Types

    TacacsPlusProfileLocation, TacacsPlusProfileLocationArgs

    Panorama TacacsPlusProfileLocationPanorama
    Located in a panorama.
    Shared TacacsPlusProfileLocationShared
    Panorama shared object
    Template TacacsPlusProfileLocationTemplate
    A shared resource located within a specific template
    TemplateStack TacacsPlusProfileLocationTemplateStack
    Located in a specific template
    TemplateStackVsys TacacsPlusProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    TemplateVsys TacacsPlusProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    Vsys TacacsPlusProfileLocationVsys
    Located in a specific Virtual System
    Panorama TacacsPlusProfileLocationPanorama
    Located in a panorama.
    Shared TacacsPlusProfileLocationShared
    Panorama shared object
    Template TacacsPlusProfileLocationTemplate
    A shared resource located within a specific template
    TemplateStack TacacsPlusProfileLocationTemplateStack
    Located in a specific template
    TemplateStackVsys TacacsPlusProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    TemplateVsys TacacsPlusProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    Vsys TacacsPlusProfileLocationVsys
    Located in a specific Virtual System
    panorama TacacsPlusProfileLocationPanorama
    Located in a panorama.
    shared TacacsPlusProfileLocationShared
    Panorama shared object
    template TacacsPlusProfileLocationTemplate
    A shared resource located within a specific template
    templateStack TacacsPlusProfileLocationTemplateStack
    Located in a specific template
    templateStackVsys TacacsPlusProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    templateVsys TacacsPlusProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    vsys TacacsPlusProfileLocationVsys
    Located in a specific Virtual System
    panorama TacacsPlusProfileLocationPanorama
    Located in a panorama.
    shared TacacsPlusProfileLocationShared
    Panorama shared object
    template TacacsPlusProfileLocationTemplate
    A shared resource located within a specific template
    templateStack TacacsPlusProfileLocationTemplateStack
    Located in a specific template
    templateStackVsys TacacsPlusProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    templateVsys TacacsPlusProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    vsys TacacsPlusProfileLocationVsys
    Located in a specific Virtual System
    panorama TacacsPlusProfileLocationPanorama
    Located in a panorama.
    shared TacacsPlusProfileLocationShared
    Panorama shared object
    template TacacsPlusProfileLocationTemplate
    A shared resource located within a specific template
    template_stack TacacsPlusProfileLocationTemplateStack
    Located in a specific template
    template_stack_vsys TacacsPlusProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    template_vsys TacacsPlusProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    vsys TacacsPlusProfileLocationVsys
    Located in a specific Virtual System
    panorama Property Map
    Located in a panorama.
    shared Property Map
    Panorama shared object
    template Property Map
    A shared resource located within a specific template
    templateStack Property Map
    Located in a specific template
    templateStackVsys Property Map
    Located in a specific template, device and vsys.
    templateVsys Property Map
    Located in a specific template, device and vsys.
    vsys Property Map
    Located in a specific Virtual System

    TacacsPlusProfileLocationTemplate, TacacsPlusProfileLocationTemplateArgs

    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

    TacacsPlusProfileLocationTemplateStack, TacacsPlusProfileLocationTemplateStackArgs

    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

    TacacsPlusProfileLocationTemplateStackVsys, TacacsPlusProfileLocationTemplateStackVsysArgs

    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.

    TacacsPlusProfileLocationTemplateVsys, TacacsPlusProfileLocationTemplateVsysArgs

    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.

    TacacsPlusProfileLocationVsys, TacacsPlusProfileLocationVsysArgs

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

    TacacsPlusProfileServer, TacacsPlusProfileServerArgs

    Name string
    Address string
    TACACS+ server ip or host name.
    Port double
    TACACS+ server port
    Secret string
    Shared secret for TACACS+ communication
    Name string
    Address string
    TACACS+ server ip or host name.
    Port float64
    TACACS+ server port
    Secret string
    Shared secret for TACACS+ communication
    name String
    address String
    TACACS+ server ip or host name.
    port Double
    TACACS+ server port
    secret String
    Shared secret for TACACS+ communication
    name string
    address string
    TACACS+ server ip or host name.
    port number
    TACACS+ server port
    secret string
    Shared secret for TACACS+ communication
    name str
    address str
    TACACS+ server ip or host name.
    port float
    TACACS+ server port
    secret str
    Shared secret for TACACS+ communication
    name String
    address String
    TACACS+ server ip or host name.
    port Number
    TACACS+ server port
    secret String
    Shared secret for TACACS+ communication

    Import

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

    {

    location = {

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

    }

    name = “example-tacacs-profile”

    }

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

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

    Package Details

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