published on Tuesday, Apr 28, 2026 by paloaltonetworks
published on Tuesday, Apr 28, 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.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": float(0),
"secret": "string",
}],
timeout=float(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
Tacacs
Plus Profile Location - The location of this object.
- Name string
- Protocol string
- Select authentication protocol
- Servers
List<Tacacs
Plus Profile Server> - Timeout double
- number of seconds to wait for when performing authentication
- Use
Single boolConnection - Use single connection for all authentication
- Location
Tacacs
Plus Profile Location Args - The location of this object.
- Name string
- Protocol string
- Select authentication protocol
- Servers
[]Tacacs
Plus Profile Server Args - Timeout float64
- number of seconds to wait for when performing authentication
- Use
Single boolConnection - Use single connection for all authentication
- location
Tacacs
Plus Profile Location - The location of this object.
- name String
- protocol String
- Select authentication protocol
- servers
List<Tacacs
Plus Profile Server> - timeout Double
- number of seconds to wait for when performing authentication
- use
Single BooleanConnection - Use single connection for all authentication
- location
Tacacs
Plus Profile Location - The location of this object.
- name string
- protocol string
- Select authentication protocol
- servers
Tacacs
Plus Profile Server[] - timeout number
- number of seconds to wait for when performing authentication
- use
Single booleanConnection - Use single connection for all authentication
- location
Tacacs
Plus Profile Location Args - The location of this object.
- name str
- protocol str
- Select authentication protocol
- servers
Sequence[Tacacs
Plus Profile Server Args] - timeout float
- number of seconds to wait for when performing authentication
- use_
single_ boolconnection - 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
- use
Single BooleanConnection - 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) -> TacacsPlusProfilefunc 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.
- Location
Tacacs
Plus Profile Location - The location of this object.
- Name string
- Protocol string
- Select authentication protocol
- Servers
List<Tacacs
Plus Profile Server> - Timeout double
- number of seconds to wait for when performing authentication
- Use
Single boolConnection - Use single connection for all authentication
- Location
Tacacs
Plus Profile Location Args - The location of this object.
- Name string
- Protocol string
- Select authentication protocol
- Servers
[]Tacacs
Plus Profile Server Args - Timeout float64
- number of seconds to wait for when performing authentication
- Use
Single boolConnection - Use single connection for all authentication
- location
Tacacs
Plus Profile Location - The location of this object.
- name String
- protocol String
- Select authentication protocol
- servers
List<Tacacs
Plus Profile Server> - timeout Double
- number of seconds to wait for when performing authentication
- use
Single BooleanConnection - Use single connection for all authentication
- location
Tacacs
Plus Profile Location - The location of this object.
- name string
- protocol string
- Select authentication protocol
- servers
Tacacs
Plus Profile Server[] - timeout number
- number of seconds to wait for when performing authentication
- use
Single booleanConnection - Use single connection for all authentication
- location
Tacacs
Plus Profile Location Args - The location of this object.
- name str
- protocol str
- Select authentication protocol
- servers
Sequence[Tacacs
Plus Profile Server Args] - timeout float
- number of seconds to wait for when performing authentication
- use_
single_ boolconnection - 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
- use
Single BooleanConnection - Use single connection for all authentication
Supporting Types
TacacsPlusProfileLocation, TacacsPlusProfileLocationArgs
- Panorama
Tacacs
Plus Profile Location Panorama - Located in a panorama.
-
Tacacs
Plus Profile Location Shared - Panorama shared object
- Template
Tacacs
Plus Profile Location Template - A shared resource located within a specific template
- Template
Stack TacacsPlus Profile Location Template Stack - Located in a specific template
- Template
Stack TacacsVsys Plus Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- Template
Vsys TacacsPlus Profile Location Template Vsys - Located in a specific template, device and vsys.
- Vsys
Tacacs
Plus Profile Location Vsys - Located in a specific Virtual System
- Panorama
Tacacs
Plus Profile Location Panorama - Located in a panorama.
-
Tacacs
Plus Profile Location Shared - Panorama shared object
- Template
Tacacs
Plus Profile Location Template - A shared resource located within a specific template
- Template
Stack TacacsPlus Profile Location Template Stack - Located in a specific template
- Template
Stack TacacsVsys Plus Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- Template
Vsys TacacsPlus Profile Location Template Vsys - Located in a specific template, device and vsys.
- Vsys
Tacacs
Plus Profile Location Vsys - Located in a specific Virtual System
- panorama
Tacacs
Plus Profile Location Panorama - Located in a panorama.
-
Tacacs
Plus Profile Location Shared - Panorama shared object
- template
Tacacs
Plus Profile Location Template - A shared resource located within a specific template
- template
Stack TacacsPlus Profile Location Template Stack - Located in a specific template
- template
Stack TacacsVsys Plus Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template
Vsys TacacsPlus Profile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Tacacs
Plus Profile Location Vsys - Located in a specific Virtual System
- panorama
Tacacs
Plus Profile Location Panorama - Located in a panorama.
-
Tacacs
Plus Profile Location Shared - Panorama shared object
- template
Tacacs
Plus Profile Location Template - A shared resource located within a specific template
- template
Stack TacacsPlus Profile Location Template Stack - Located in a specific template
- template
Stack TacacsVsys Plus Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template
Vsys TacacsPlus Profile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Tacacs
Plus Profile Location Vsys - Located in a specific Virtual System
- panorama
Tacacs
Plus Profile Location Panorama - Located in a panorama.
-
Tacacs
Plus Profile Location Shared - Panorama shared object
- template
Tacacs
Plus Profile Location Template - A shared resource located within a specific template
- template_
stack TacacsPlus Profile Location Template Stack - Located in a specific template
- template_
stack_ Tacacsvsys Plus Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template_
vsys TacacsPlus Profile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Tacacs
Plus Profile Location Vsys - Located in a specific Virtual System
- panorama Property Map
- Located in a panorama.
- Property Map
- Panorama shared object
- template Property Map
- A shared resource located within a specific template
- template
Stack Property Map - Located in a specific template
- template
Stack Property MapVsys - Located in a specific template, device and vsys.
- template
Vsys 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
- Panorama
Device string - Specific Panorama device
- Name string
- Specific Panorama template
- Panorama
Device string - Specific Panorama device
- name String
- Specific Panorama template
- panorama
Device String - Specific Panorama device
- name string
- Specific Panorama template
- panorama
Device string - Specific Panorama device
- name str
- Specific Panorama template
- panorama_
device str - Specific Panorama device
- name String
- Specific Panorama template
- panorama
Device String - Specific Panorama device
TacacsPlusProfileLocationTemplateStack, TacacsPlusProfileLocationTemplateStackArgs
- Name string
- The template stack
- Panorama
Device string - Specific Panorama device
- Name string
- The template stack
- Panorama
Device string - Specific Panorama device
- name String
- The template stack
- panorama
Device String - Specific Panorama device
- name string
- The template stack
- panorama
Device string - Specific Panorama device
- name str
- The template stack
- panorama_
device str - Specific Panorama device
- name String
- The template stack
- panorama
Device String - Specific Panorama device
TacacsPlusProfileLocationTemplateStackVsys, TacacsPlusProfileLocationTemplateStackVsysArgs
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template
Stack string - The template stack
- Vsys string
- The vsys.
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template
Stack string - The template stack
- Vsys string
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template
Stack String - The template stack
- vsys String
- The vsys.
- ngfw
Device string - The NGFW device
- panorama
Device string - Specific Panorama device
- template
Stack 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.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template
Stack String - The template stack
- vsys String
- The vsys.
TacacsPlusProfileLocationTemplateVsys, TacacsPlusProfileLocationTemplateVsysArgs
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template string
- Specific Panorama template
- Vsys string
- The vsys.
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template string
- Specific Panorama template
- Vsys string
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template String
- Specific Panorama template
- vsys String
- The vsys.
- ngfw
Device string - The NGFW device
- panorama
Device 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.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template String
- Specific Panorama template
- vsys String
- The vsys.
TacacsPlusProfileLocationVsys, TacacsPlusProfileLocationVsysArgs
- Name string
- The Virtual System name
- Ngfw
Device string - The NGFW device name
- Name string
- The Virtual System name
- Ngfw
Device string - The NGFW device name
- name String
- The Virtual System name
- ngfw
Device String - The NGFW device name
- name string
- The Virtual System name
- ngfw
Device string - The NGFW device name
- name str
- The Virtual System name
- ngfw_
device str - The NGFW device name
- name String
- The Virtual System name
- ngfw
Device String - The NGFW device name
TacacsPlusProfileServer, TacacsPlusProfileServerArgs
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
panosTerraform Provider.
published on Tuesday, Apr 28, 2026 by paloaltonetworks
