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.RadiusProfile("example", {
location: {
template: {
name: exampleTemplate.name,
},
},
name: "radius-basic",
retries: 3,
timeout: 5,
servers: [
{
name: "radius1",
ipAddress: "10.0.1.10",
secret: "secret123",
port: 1812,
},
{
name: "radius2",
ipAddress: "10.0.1.11",
secret: "secret456",
port: 1812,
},
],
});
import pulumi
import pulumi_panos as panos
example_template = panos.Template("example",
location={
"panorama": {},
},
name="example-template")
example = panos.RadiusProfile("example",
location={
"template": {
"name": example_template.name,
},
},
name="radius-basic",
retries=3,
timeout=5,
servers=[
{
"name": "radius1",
"ip_address": "10.0.1.10",
"secret": "secret123",
"port": 1812,
},
{
"name": "radius2",
"ip_address": "10.0.1.11",
"secret": "secret456",
"port": 1812,
},
])
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.NewRadiusProfile(ctx, "example", &panos.RadiusProfileArgs{
Location: &panos.RadiusProfileLocationArgs{
Template: &panos.RadiusProfileLocationTemplateArgs{
Name: exampleTemplate.Name,
},
},
Name: pulumi.String("radius-basic"),
Retries: pulumi.Float64(3),
Timeout: pulumi.Float64(5),
Servers: panos.RadiusProfileServerArray{
&panos.RadiusProfileServerArgs{
Name: pulumi.String("radius1"),
IpAddress: pulumi.String("10.0.1.10"),
Secret: pulumi.String("secret123"),
Port: pulumi.Float64(1812),
},
&panos.RadiusProfileServerArgs{
Name: pulumi.String("radius2"),
IpAddress: pulumi.String("10.0.1.11"),
Secret: pulumi.String("secret456"),
Port: pulumi.Float64(1812),
},
},
})
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.RadiusProfile("example", new()
{
Location = new Panos.Inputs.RadiusProfileLocationArgs
{
Template = new Panos.Inputs.RadiusProfileLocationTemplateArgs
{
Name = exampleTemplate.Name,
},
},
Name = "radius-basic",
Retries = 3,
Timeout = 5,
Servers = new[]
{
new Panos.Inputs.RadiusProfileServerArgs
{
Name = "radius1",
IpAddress = "10.0.1.10",
Secret = "secret123",
Port = 1812,
},
new Panos.Inputs.RadiusProfileServerArgs
{
Name = "radius2",
IpAddress = "10.0.1.11",
Secret = "secret456",
Port = 1812,
},
},
});
});
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.RadiusProfile;
import com.pulumi.panos.RadiusProfileArgs;
import com.pulumi.panos.inputs.RadiusProfileLocationArgs;
import com.pulumi.panos.inputs.RadiusProfileLocationTemplateArgs;
import com.pulumi.panos.inputs.RadiusProfileServerArgs;
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 RadiusProfile("example", RadiusProfileArgs.builder()
.location(RadiusProfileLocationArgs.builder()
.template(RadiusProfileLocationTemplateArgs.builder()
.name(exampleTemplate.name())
.build())
.build())
.name("radius-basic")
.retries(3.0)
.timeout(5.0)
.servers(
RadiusProfileServerArgs.builder()
.name("radius1")
.ipAddress("10.0.1.10")
.secret("secret123")
.port(1812.0)
.build(),
RadiusProfileServerArgs.builder()
.name("radius2")
.ipAddress("10.0.1.11")
.secret("secret456")
.port(1812.0)
.build())
.build());
}
}
resources:
example:
type: panos:RadiusProfile
properties:
location:
template:
name: ${exampleTemplate.name}
name: radius-basic
retries: 3
timeout: 5
servers:
- name: radius1
ipAddress: 10.0.1.10
secret: secret123
port: 1812
- name: radius2
ipAddress: 10.0.1.11
secret: secret456
port: 1812
exampleTemplate:
type: panos:Template
name: example
properties:
location:
panorama: {}
name: example-template
Create RadiusProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RadiusProfile(name: string, args: RadiusProfileArgs, opts?: CustomResourceOptions);@overload
def RadiusProfile(resource_name: str,
args: RadiusProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RadiusProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
location: Optional[RadiusProfileLocationArgs] = None,
name: Optional[str] = None,
protocol: Optional[RadiusProfileProtocolArgs] = None,
retries: Optional[float] = None,
servers: Optional[Sequence[RadiusProfileServerArgs]] = None,
timeout: Optional[float] = None)func NewRadiusProfile(ctx *Context, name string, args RadiusProfileArgs, opts ...ResourceOption) (*RadiusProfile, error)public RadiusProfile(string name, RadiusProfileArgs args, CustomResourceOptions? opts = null)
public RadiusProfile(String name, RadiusProfileArgs args)
public RadiusProfile(String name, RadiusProfileArgs args, CustomResourceOptions options)
type: panos:RadiusProfile
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 RadiusProfileArgs
- 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 RadiusProfileArgs
- 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 RadiusProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RadiusProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RadiusProfileArgs
- 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 radiusProfileResource = new Panos.RadiusProfile("radiusProfileResource", new()
{
Location = new Panos.Inputs.RadiusProfileLocationArgs
{
Panorama = null,
Shared = null,
Template = new Panos.Inputs.RadiusProfileLocationTemplateArgs
{
Name = "string",
PanoramaDevice = "string",
},
TemplateStack = new Panos.Inputs.RadiusProfileLocationTemplateStackArgs
{
Name = "string",
PanoramaDevice = "string",
},
TemplateStackVsys = new Panos.Inputs.RadiusProfileLocationTemplateStackVsysArgs
{
NgfwDevice = "string",
PanoramaDevice = "string",
TemplateStack = "string",
Vsys = "string",
},
TemplateVsys = new Panos.Inputs.RadiusProfileLocationTemplateVsysArgs
{
NgfwDevice = "string",
PanoramaDevice = "string",
Template = "string",
Vsys = "string",
},
Vsys = new Panos.Inputs.RadiusProfileLocationVsysArgs
{
Name = "string",
NgfwDevice = "string",
},
},
Name = "string",
Protocol = new Panos.Inputs.RadiusProfileProtocolArgs
{
Chap = null,
EapTtlsWithPap = new Panos.Inputs.RadiusProfileProtocolEapTtlsWithPapArgs
{
AnonymousOuterIdentity = false,
RadiusCertificateProfile = "string",
},
Pap = null,
PeapMschapv2 = new Panos.Inputs.RadiusProfileProtocolPeapMschapv2Args
{
AllowPasswordChange = false,
AnonymousOuterIdentity = false,
RadiusCertificateProfile = "string",
},
PeapWithGtc = new Panos.Inputs.RadiusProfileProtocolPeapWithGtcArgs
{
AnonymousOuterIdentity = false,
RadiusCertificateProfile = "string",
},
},
Retries = 0,
Servers = new[]
{
new Panos.Inputs.RadiusProfileServerArgs
{
Name = "string",
IpAddress = "string",
Port = 0,
Secret = "string",
},
},
Timeout = 0,
});
example, err := panos.NewRadiusProfile(ctx, "radiusProfileResource", &panos.RadiusProfileArgs{
Location: &panos.RadiusProfileLocationArgs{
Panorama: &panos.RadiusProfileLocationPanoramaArgs{},
Shared: &panos.RadiusProfileLocationSharedArgs{},
Template: &panos.RadiusProfileLocationTemplateArgs{
Name: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
TemplateStack: &panos.RadiusProfileLocationTemplateStackArgs{
Name: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
TemplateStackVsys: &panos.RadiusProfileLocationTemplateStackVsysArgs{
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
TemplateStack: pulumi.String("string"),
Vsys: pulumi.String("string"),
},
TemplateVsys: &panos.RadiusProfileLocationTemplateVsysArgs{
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
Template: pulumi.String("string"),
Vsys: pulumi.String("string"),
},
Vsys: &panos.RadiusProfileLocationVsysArgs{
Name: pulumi.String("string"),
NgfwDevice: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Protocol: &panos.RadiusProfileProtocolArgs{
Chap: &panos.RadiusProfileProtocolChapArgs{},
EapTtlsWithPap: &panos.RadiusProfileProtocolEapTtlsWithPapArgs{
AnonymousOuterIdentity: pulumi.Bool(false),
RadiusCertificateProfile: pulumi.String("string"),
},
Pap: &panos.RadiusProfileProtocolPapArgs{},
PeapMschapv2: &panos.RadiusProfileProtocolPeapMschapv2Args{
AllowPasswordChange: pulumi.Bool(false),
AnonymousOuterIdentity: pulumi.Bool(false),
RadiusCertificateProfile: pulumi.String("string"),
},
PeapWithGtc: &panos.RadiusProfileProtocolPeapWithGtcArgs{
AnonymousOuterIdentity: pulumi.Bool(false),
RadiusCertificateProfile: pulumi.String("string"),
},
},
Retries: pulumi.Float64(0),
Servers: panos.RadiusProfileServerArray{
&panos.RadiusProfileServerArgs{
Name: pulumi.String("string"),
IpAddress: pulumi.String("string"),
Port: pulumi.Float64(0),
Secret: pulumi.String("string"),
},
},
Timeout: pulumi.Float64(0),
})
var radiusProfileResource = new RadiusProfile("radiusProfileResource", RadiusProfileArgs.builder()
.location(RadiusProfileLocationArgs.builder()
.panorama(RadiusProfileLocationPanoramaArgs.builder()
.build())
.shared(RadiusProfileLocationSharedArgs.builder()
.build())
.template(RadiusProfileLocationTemplateArgs.builder()
.name("string")
.panoramaDevice("string")
.build())
.templateStack(RadiusProfileLocationTemplateStackArgs.builder()
.name("string")
.panoramaDevice("string")
.build())
.templateStackVsys(RadiusProfileLocationTemplateStackVsysArgs.builder()
.ngfwDevice("string")
.panoramaDevice("string")
.templateStack("string")
.vsys("string")
.build())
.templateVsys(RadiusProfileLocationTemplateVsysArgs.builder()
.ngfwDevice("string")
.panoramaDevice("string")
.template("string")
.vsys("string")
.build())
.vsys(RadiusProfileLocationVsysArgs.builder()
.name("string")
.ngfwDevice("string")
.build())
.build())
.name("string")
.protocol(RadiusProfileProtocolArgs.builder()
.chap(RadiusProfileProtocolChapArgs.builder()
.build())
.eapTtlsWithPap(RadiusProfileProtocolEapTtlsWithPapArgs.builder()
.anonymousOuterIdentity(false)
.radiusCertificateProfile("string")
.build())
.pap(RadiusProfileProtocolPapArgs.builder()
.build())
.peapMschapv2(RadiusProfileProtocolPeapMschapv2Args.builder()
.allowPasswordChange(false)
.anonymousOuterIdentity(false)
.radiusCertificateProfile("string")
.build())
.peapWithGtc(RadiusProfileProtocolPeapWithGtcArgs.builder()
.anonymousOuterIdentity(false)
.radiusCertificateProfile("string")
.build())
.build())
.retries(0.0)
.servers(RadiusProfileServerArgs.builder()
.name("string")
.ipAddress("string")
.port(0.0)
.secret("string")
.build())
.timeout(0.0)
.build());
radius_profile_resource = panos.RadiusProfile("radiusProfileResource",
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={
"chap": {},
"eap_ttls_with_pap": {
"anonymous_outer_identity": False,
"radius_certificate_profile": "string",
},
"pap": {},
"peap_mschapv2": {
"allow_password_change": False,
"anonymous_outer_identity": False,
"radius_certificate_profile": "string",
},
"peap_with_gtc": {
"anonymous_outer_identity": False,
"radius_certificate_profile": "string",
},
},
retries=float(0),
servers=[{
"name": "string",
"ip_address": "string",
"port": float(0),
"secret": "string",
}],
timeout=float(0))
const radiusProfileResource = new panos.RadiusProfile("radiusProfileResource", {
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: {
chap: {},
eapTtlsWithPap: {
anonymousOuterIdentity: false,
radiusCertificateProfile: "string",
},
pap: {},
peapMschapv2: {
allowPasswordChange: false,
anonymousOuterIdentity: false,
radiusCertificateProfile: "string",
},
peapWithGtc: {
anonymousOuterIdentity: false,
radiusCertificateProfile: "string",
},
},
retries: 0,
servers: [{
name: "string",
ipAddress: "string",
port: 0,
secret: "string",
}],
timeout: 0,
});
type: panos:RadiusProfile
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:
chap: {}
eapTtlsWithPap:
anonymousOuterIdentity: false
radiusCertificateProfile: string
pap: {}
peapMschapv2:
allowPasswordChange: false
anonymousOuterIdentity: false
radiusCertificateProfile: string
peapWithGtc:
anonymousOuterIdentity: false
radiusCertificateProfile: string
retries: 0
servers:
- ipAddress: string
name: string
port: 0
secret: string
timeout: 0
RadiusProfile 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 RadiusProfile resource accepts the following input properties:
- Location
Radius
Profile Location - The location of this object.
- Name string
- Protocol
Radius
Profile Protocol - Retries double
- number of attempts before giving up authentication
- Servers
List<Radius
Profile Server> - Timeout double
- number of seconds to wait for when performing authentication
- Location
Radius
Profile Location Args - The location of this object.
- Name string
- Protocol
Radius
Profile Protocol Args - Retries float64
- number of attempts before giving up authentication
- Servers
[]Radius
Profile Server Args - Timeout float64
- number of seconds to wait for when performing authentication
- location
Radius
Profile Location - The location of this object.
- name String
- protocol
Radius
Profile Protocol - retries Double
- number of attempts before giving up authentication
- servers
List<Radius
Profile Server> - timeout Double
- number of seconds to wait for when performing authentication
- location
Radius
Profile Location - The location of this object.
- name string
- protocol
Radius
Profile Protocol - retries number
- number of attempts before giving up authentication
- servers
Radius
Profile Server[] - timeout number
- number of seconds to wait for when performing authentication
- location
Radius
Profile Location Args - The location of this object.
- name str
- protocol
Radius
Profile Protocol Args - retries float
- number of attempts before giving up authentication
- servers
Sequence[Radius
Profile Server Args] - timeout float
- number of seconds to wait for when performing authentication
- location Property Map
- The location of this object.
- name String
- protocol Property Map
- retries Number
- number of attempts before giving up authentication
- servers List<Property Map>
- timeout Number
- number of seconds to wait for when performing authentication
Outputs
All input properties are implicitly available as output properties. Additionally, the RadiusProfile 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 RadiusProfile Resource
Get an existing RadiusProfile 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?: RadiusProfileState, opts?: CustomResourceOptions): RadiusProfile@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
location: Optional[RadiusProfileLocationArgs] = None,
name: Optional[str] = None,
protocol: Optional[RadiusProfileProtocolArgs] = None,
retries: Optional[float] = None,
servers: Optional[Sequence[RadiusProfileServerArgs]] = None,
timeout: Optional[float] = None) -> RadiusProfilefunc GetRadiusProfile(ctx *Context, name string, id IDInput, state *RadiusProfileState, opts ...ResourceOption) (*RadiusProfile, error)public static RadiusProfile Get(string name, Input<string> id, RadiusProfileState? state, CustomResourceOptions? opts = null)public static RadiusProfile get(String name, Output<String> id, RadiusProfileState state, CustomResourceOptions options)resources: _: type: panos:RadiusProfile 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
Radius
Profile Location - The location of this object.
- Name string
- Protocol
Radius
Profile Protocol - Retries double
- number of attempts before giving up authentication
- Servers
List<Radius
Profile Server> - Timeout double
- number of seconds to wait for when performing authentication
- Location
Radius
Profile Location Args - The location of this object.
- Name string
- Protocol
Radius
Profile Protocol Args - Retries float64
- number of attempts before giving up authentication
- Servers
[]Radius
Profile Server Args - Timeout float64
- number of seconds to wait for when performing authentication
- location
Radius
Profile Location - The location of this object.
- name String
- protocol
Radius
Profile Protocol - retries Double
- number of attempts before giving up authentication
- servers
List<Radius
Profile Server> - timeout Double
- number of seconds to wait for when performing authentication
- location
Radius
Profile Location - The location of this object.
- name string
- protocol
Radius
Profile Protocol - retries number
- number of attempts before giving up authentication
- servers
Radius
Profile Server[] - timeout number
- number of seconds to wait for when performing authentication
- location
Radius
Profile Location Args - The location of this object.
- name str
- protocol
Radius
Profile Protocol Args - retries float
- number of attempts before giving up authentication
- servers
Sequence[Radius
Profile Server Args] - timeout float
- number of seconds to wait for when performing authentication
- location Property Map
- The location of this object.
- name String
- protocol Property Map
- retries Number
- number of attempts before giving up authentication
- servers List<Property Map>
- timeout Number
- number of seconds to wait for when performing authentication
Supporting Types
RadiusProfileLocation, RadiusProfileLocationArgs
- Panorama
Radius
Profile Location Panorama - Located in a panorama.
-
Radius
Profile Location Shared - Panorama shared object
- Template
Radius
Profile Location Template - A shared resource located within a specific template
- Template
Stack RadiusProfile Location Template Stack - Located in a specific template
- Template
Stack RadiusVsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- Template
Vsys RadiusProfile Location Template Vsys - Located in a specific template, device and vsys.
- Vsys
Radius
Profile Location Vsys - Located in a specific Virtual System
- Panorama
Radius
Profile Location Panorama - Located in a panorama.
-
Radius
Profile Location Shared - Panorama shared object
- Template
Radius
Profile Location Template - A shared resource located within a specific template
- Template
Stack RadiusProfile Location Template Stack - Located in a specific template
- Template
Stack RadiusVsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- Template
Vsys RadiusProfile Location Template Vsys - Located in a specific template, device and vsys.
- Vsys
Radius
Profile Location Vsys - Located in a specific Virtual System
- panorama
Radius
Profile Location Panorama - Located in a panorama.
-
Radius
Profile Location Shared - Panorama shared object
- template
Radius
Profile Location Template - A shared resource located within a specific template
- template
Stack RadiusProfile Location Template Stack - Located in a specific template
- template
Stack RadiusVsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template
Vsys RadiusProfile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Radius
Profile Location Vsys - Located in a specific Virtual System
- panorama
Radius
Profile Location Panorama - Located in a panorama.
-
Radius
Profile Location Shared - Panorama shared object
- template
Radius
Profile Location Template - A shared resource located within a specific template
- template
Stack RadiusProfile Location Template Stack - Located in a specific template
- template
Stack RadiusVsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template
Vsys RadiusProfile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Radius
Profile Location Vsys - Located in a specific Virtual System
- panorama
Radius
Profile Location Panorama - Located in a panorama.
-
Radius
Profile Location Shared - Panorama shared object
- template
Radius
Profile Location Template - A shared resource located within a specific template
- template_
stack RadiusProfile Location Template Stack - Located in a specific template
- template_
stack_ Radiusvsys Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template_
vsys RadiusProfile Location Template Vsys - Located in a specific template, device and vsys.
- vsys
Radius
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
RadiusProfileLocationTemplate, RadiusProfileLocationTemplateArgs
- 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
RadiusProfileLocationTemplateStack, RadiusProfileLocationTemplateStackArgs
- 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
RadiusProfileLocationTemplateStackVsys, RadiusProfileLocationTemplateStackVsysArgs
- 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.
RadiusProfileLocationTemplateVsys, RadiusProfileLocationTemplateVsysArgs
- 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.
RadiusProfileLocationVsys, RadiusProfileLocationVsysArgs
- 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
RadiusProfileProtocol, RadiusProfileProtocolArgs
RadiusProfileProtocolEapTtlsWithPap, RadiusProfileProtocolEapTtlsWithPapArgs
- Anonymous
Outer boolIdentity - Make Outer Identity Anonymous
- Radius
Certificate stringProfile - Certificate profile for verifying the RADIUS server
- Anonymous
Outer boolIdentity - Make Outer Identity Anonymous
- Radius
Certificate stringProfile - Certificate profile for verifying the RADIUS server
- anonymous
Outer BooleanIdentity - Make Outer Identity Anonymous
- radius
Certificate StringProfile - Certificate profile for verifying the RADIUS server
- anonymous
Outer booleanIdentity - Make Outer Identity Anonymous
- radius
Certificate stringProfile - Certificate profile for verifying the RADIUS server
- anonymous_
outer_ boolidentity - Make Outer Identity Anonymous
- radius_
certificate_ strprofile - Certificate profile for verifying the RADIUS server
- anonymous
Outer BooleanIdentity - Make Outer Identity Anonymous
- radius
Certificate StringProfile - Certificate profile for verifying the RADIUS server
RadiusProfileProtocolPeapMschapv2, RadiusProfileProtocolPeapMschapv2Args
- Allow
Password boolChange - Allow users to change passwords after expiry
- Anonymous
Outer boolIdentity - Make Outer Identity Anonymous
- Radius
Certificate stringProfile - Certificate profile for verifying the RADIUS server
- Allow
Password boolChange - Allow users to change passwords after expiry
- Anonymous
Outer boolIdentity - Make Outer Identity Anonymous
- Radius
Certificate stringProfile - Certificate profile for verifying the RADIUS server
- allow
Password BooleanChange - Allow users to change passwords after expiry
- anonymous
Outer BooleanIdentity - Make Outer Identity Anonymous
- radius
Certificate StringProfile - Certificate profile for verifying the RADIUS server
- allow
Password booleanChange - Allow users to change passwords after expiry
- anonymous
Outer booleanIdentity - Make Outer Identity Anonymous
- radius
Certificate stringProfile - Certificate profile for verifying the RADIUS server
- allow_
password_ boolchange - Allow users to change passwords after expiry
- anonymous_
outer_ boolidentity - Make Outer Identity Anonymous
- radius_
certificate_ strprofile - Certificate profile for verifying the RADIUS server
- allow
Password BooleanChange - Allow users to change passwords after expiry
- anonymous
Outer BooleanIdentity - Make Outer Identity Anonymous
- radius
Certificate StringProfile - Certificate profile for verifying the RADIUS server
RadiusProfileProtocolPeapWithGtc, RadiusProfileProtocolPeapWithGtcArgs
- Anonymous
Outer boolIdentity - Make Outer Identity Anonymous
- Radius
Certificate stringProfile - Certificate profile for verifying the RADIUS server
- Anonymous
Outer boolIdentity - Make Outer Identity Anonymous
- Radius
Certificate stringProfile - Certificate profile for verifying the RADIUS server
- anonymous
Outer BooleanIdentity - Make Outer Identity Anonymous
- radius
Certificate StringProfile - Certificate profile for verifying the RADIUS server
- anonymous
Outer booleanIdentity - Make Outer Identity Anonymous
- radius
Certificate stringProfile - Certificate profile for verifying the RADIUS server
- anonymous_
outer_ boolidentity - Make Outer Identity Anonymous
- radius_
certificate_ strprofile - Certificate profile for verifying the RADIUS server
- anonymous
Outer BooleanIdentity - Make Outer Identity Anonymous
- radius
Certificate StringProfile - Certificate profile for verifying the RADIUS server
RadiusProfileServer, RadiusProfileServerArgs
- name str
- ip_
address str - RADIUS server IP or host name
- port float
- RADIUS server port
- secret str
- Shared secret for RADIUS communication
Import
A RADIUS profile can be imported by providing the following base64 encoded object as the ID
{
location = {
template = {
name = "example-template"
panorama_device = "localhost.localdomain"
}
}
name = “radius-basic”
}
$ pulumi import panos:index/radiusProfile:RadiusProfile example $(echo '{"location":{"template":{"name":"example-template","panorama_device":"localhost.localdomain"}},"name":"radius-basic"}' | 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
