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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as panos from "@pulumi/panos";
    
    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 RadiusProfileLocation
    The location of this object.
    Name string
    Protocol RadiusProfileProtocol
    Retries double
    number of attempts before giving up authentication
    Servers List<RadiusProfileServer>
    Timeout double
    number of seconds to wait for when performing authentication
    Location RadiusProfileLocationArgs
    The location of this object.
    Name string
    Protocol RadiusProfileProtocolArgs
    Retries float64
    number of attempts before giving up authentication
    Servers []RadiusProfileServerArgs
    Timeout float64
    number of seconds to wait for when performing authentication
    location RadiusProfileLocation
    The location of this object.
    name String
    protocol RadiusProfileProtocol
    retries Double
    number of attempts before giving up authentication
    servers List<RadiusProfileServer>
    timeout Double
    number of seconds to wait for when performing authentication
    location RadiusProfileLocation
    The location of this object.
    name string
    protocol RadiusProfileProtocol
    retries number
    number of attempts before giving up authentication
    servers RadiusProfileServer[]
    timeout number
    number of seconds to wait for when performing authentication
    location RadiusProfileLocationArgs
    The location of this object.
    name str
    protocol RadiusProfileProtocolArgs
    retries float
    number of attempts before giving up authentication
    servers Sequence[RadiusProfileServerArgs]
    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) -> RadiusProfile
    func 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.
    The following state arguments are supported:
    Location RadiusProfileLocation
    The location of this object.
    Name string
    Protocol RadiusProfileProtocol
    Retries double
    number of attempts before giving up authentication
    Servers List<RadiusProfileServer>
    Timeout double
    number of seconds to wait for when performing authentication
    Location RadiusProfileLocationArgs
    The location of this object.
    Name string
    Protocol RadiusProfileProtocolArgs
    Retries float64
    number of attempts before giving up authentication
    Servers []RadiusProfileServerArgs
    Timeout float64
    number of seconds to wait for when performing authentication
    location RadiusProfileLocation
    The location of this object.
    name String
    protocol RadiusProfileProtocol
    retries Double
    number of attempts before giving up authentication
    servers List<RadiusProfileServer>
    timeout Double
    number of seconds to wait for when performing authentication
    location RadiusProfileLocation
    The location of this object.
    name string
    protocol RadiusProfileProtocol
    retries number
    number of attempts before giving up authentication
    servers RadiusProfileServer[]
    timeout number
    number of seconds to wait for when performing authentication
    location RadiusProfileLocationArgs
    The location of this object.
    name str
    protocol RadiusProfileProtocolArgs
    retries float
    number of attempts before giving up authentication
    servers Sequence[RadiusProfileServerArgs]
    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 RadiusProfileLocationPanorama
    Located in a panorama.
    Shared RadiusProfileLocationShared
    Panorama shared object
    Template RadiusProfileLocationTemplate
    A shared resource located within a specific template
    TemplateStack RadiusProfileLocationTemplateStack
    Located in a specific template
    TemplateStackVsys RadiusProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    TemplateVsys RadiusProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    Vsys RadiusProfileLocationVsys
    Located in a specific Virtual System
    Panorama RadiusProfileLocationPanorama
    Located in a panorama.
    Shared RadiusProfileLocationShared
    Panorama shared object
    Template RadiusProfileLocationTemplate
    A shared resource located within a specific template
    TemplateStack RadiusProfileLocationTemplateStack
    Located in a specific template
    TemplateStackVsys RadiusProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    TemplateVsys RadiusProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    Vsys RadiusProfileLocationVsys
    Located in a specific Virtual System
    panorama RadiusProfileLocationPanorama
    Located in a panorama.
    shared RadiusProfileLocationShared
    Panorama shared object
    template RadiusProfileLocationTemplate
    A shared resource located within a specific template
    templateStack RadiusProfileLocationTemplateStack
    Located in a specific template
    templateStackVsys RadiusProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    templateVsys RadiusProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    vsys RadiusProfileLocationVsys
    Located in a specific Virtual System
    panorama RadiusProfileLocationPanorama
    Located in a panorama.
    shared RadiusProfileLocationShared
    Panorama shared object
    template RadiusProfileLocationTemplate
    A shared resource located within a specific template
    templateStack RadiusProfileLocationTemplateStack
    Located in a specific template
    templateStackVsys RadiusProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    templateVsys RadiusProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    vsys RadiusProfileLocationVsys
    Located in a specific Virtual System
    panorama RadiusProfileLocationPanorama
    Located in a panorama.
    shared RadiusProfileLocationShared
    Panorama shared object
    template RadiusProfileLocationTemplate
    A shared resource located within a specific template
    template_stack RadiusProfileLocationTemplateStack
    Located in a specific template
    template_stack_vsys RadiusProfileLocationTemplateStackVsys
    Located in a specific template, device and vsys.
    template_vsys RadiusProfileLocationTemplateVsys
    Located in a specific template, device and vsys.
    vsys RadiusProfileLocationVsys
    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

    RadiusProfileLocationTemplate, RadiusProfileLocationTemplateArgs

    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

    RadiusProfileLocationTemplateStack, RadiusProfileLocationTemplateStackArgs

    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

    RadiusProfileLocationTemplateStackVsys, RadiusProfileLocationTemplateStackVsysArgs

    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.

    RadiusProfileLocationTemplateVsys, RadiusProfileLocationTemplateVsysArgs

    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.

    RadiusProfileLocationVsys, RadiusProfileLocationVsysArgs

    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

    RadiusProfileProtocol, RadiusProfileProtocolArgs

    RadiusProfileProtocolEapTtlsWithPap, RadiusProfileProtocolEapTtlsWithPapArgs

    AnonymousOuterIdentity bool
    Make Outer Identity Anonymous
    RadiusCertificateProfile string
    Certificate profile for verifying the RADIUS server
    AnonymousOuterIdentity bool
    Make Outer Identity Anonymous
    RadiusCertificateProfile string
    Certificate profile for verifying the RADIUS server
    anonymousOuterIdentity Boolean
    Make Outer Identity Anonymous
    radiusCertificateProfile String
    Certificate profile for verifying the RADIUS server
    anonymousOuterIdentity boolean
    Make Outer Identity Anonymous
    radiusCertificateProfile string
    Certificate profile for verifying the RADIUS server
    anonymous_outer_identity bool
    Make Outer Identity Anonymous
    radius_certificate_profile str
    Certificate profile for verifying the RADIUS server
    anonymousOuterIdentity Boolean
    Make Outer Identity Anonymous
    radiusCertificateProfile String
    Certificate profile for verifying the RADIUS server

    RadiusProfileProtocolPeapMschapv2, RadiusProfileProtocolPeapMschapv2Args

    AllowPasswordChange bool
    Allow users to change passwords after expiry
    AnonymousOuterIdentity bool
    Make Outer Identity Anonymous
    RadiusCertificateProfile string
    Certificate profile for verifying the RADIUS server
    AllowPasswordChange bool
    Allow users to change passwords after expiry
    AnonymousOuterIdentity bool
    Make Outer Identity Anonymous
    RadiusCertificateProfile string
    Certificate profile for verifying the RADIUS server
    allowPasswordChange Boolean
    Allow users to change passwords after expiry
    anonymousOuterIdentity Boolean
    Make Outer Identity Anonymous
    radiusCertificateProfile String
    Certificate profile for verifying the RADIUS server
    allowPasswordChange boolean
    Allow users to change passwords after expiry
    anonymousOuterIdentity boolean
    Make Outer Identity Anonymous
    radiusCertificateProfile string
    Certificate profile for verifying the RADIUS server
    allow_password_change bool
    Allow users to change passwords after expiry
    anonymous_outer_identity bool
    Make Outer Identity Anonymous
    radius_certificate_profile str
    Certificate profile for verifying the RADIUS server
    allowPasswordChange Boolean
    Allow users to change passwords after expiry
    anonymousOuterIdentity Boolean
    Make Outer Identity Anonymous
    radiusCertificateProfile String
    Certificate profile for verifying the RADIUS server

    RadiusProfileProtocolPeapWithGtc, RadiusProfileProtocolPeapWithGtcArgs

    AnonymousOuterIdentity bool
    Make Outer Identity Anonymous
    RadiusCertificateProfile string
    Certificate profile for verifying the RADIUS server
    AnonymousOuterIdentity bool
    Make Outer Identity Anonymous
    RadiusCertificateProfile string
    Certificate profile for verifying the RADIUS server
    anonymousOuterIdentity Boolean
    Make Outer Identity Anonymous
    radiusCertificateProfile String
    Certificate profile for verifying the RADIUS server
    anonymousOuterIdentity boolean
    Make Outer Identity Anonymous
    radiusCertificateProfile string
    Certificate profile for verifying the RADIUS server
    anonymous_outer_identity bool
    Make Outer Identity Anonymous
    radius_certificate_profile str
    Certificate profile for verifying the RADIUS server
    anonymousOuterIdentity Boolean
    Make Outer Identity Anonymous
    radiusCertificateProfile String
    Certificate profile for verifying the RADIUS server

    RadiusProfileServer, RadiusProfileServerArgs

    Name string
    IpAddress string
    RADIUS server IP or host name
    Port double
    RADIUS server port
    Secret string
    Shared secret for RADIUS communication
    Name string
    IpAddress string
    RADIUS server IP or host name
    Port float64
    RADIUS server port
    Secret string
    Shared secret for RADIUS communication
    name String
    ipAddress String
    RADIUS server IP or host name
    port Double
    RADIUS server port
    secret String
    Shared secret for RADIUS communication
    name string
    ipAddress string
    RADIUS server IP or host name
    port number
    RADIUS server port
    secret string
    Shared secret for RADIUS communication
    name str
    ip_address str
    RADIUS server IP or host name
    port float
    RADIUS server port
    secret str
    Shared secret for RADIUS communication
    name String
    ipAddress String
    RADIUS server IP or host name
    port Number
    RADIUS server port
    secret String
    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 panos Terraform Provider.
    Viewing docs for panos 2.0.11
    published on Tuesday, Apr 28, 2026 by paloaltonetworks
      Try Pulumi Cloud free. Your team will thank you.